

:root{
    --primary-color         : #FFFFFF;
    --secondary-color       : #1B1B1B;
    --text-color            : #F5F5F4;
    --accent-color          : #8c601b;
    --dark-color            : #000000;
    --divider-color         : #FFFFFF1A;
    --dark-divider-color    : #F7FBFA1A;
    --error-color           : rgb(230, 87, 87);
    --default-font          : "Fustat", sans-serif;
}

/************************************/
/***       02. General css        ***/
/************************************/

body{
    position: relative;
    font-family: var(--default-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6em;
    color: var(--text-color);
    background: url('../images/section-bg-shape.png') var(--dark-color);
    background-repeat: repeat-y;
    background-position: top 900px center;
    background-size: 100% auto;
}

p{
    line-height: 1.7em;
    margin-bottom: 1.6em;
}

h1,
h2,
h3,
h4,
h5,
h6{
    margin :0;
    font-weight: 700;
    line-height: 1.2em;
    color: var(--primary-color);
}

figure{
    margin: 0;
}

img{
    max-width: 100%;
}

a{
    text-decoration: none;
}

a:hover{
    text-decoration: none;
    outline: 0;
}

a:focus{
    text-decoration: none;
    outline: 0;
}

html,
body{
    width: 100%;
    overflow-x: clip;
}

.container{
    max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl{
    padding-right: 15px;
    padding-left: 15px;
}

.image-anime{
    position: relative;
    overflow: hidden;
}

.image-anime:after{
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal{
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.row{
    margin-right: -15px;
    margin-left: -15px;
}

.row > *{
    padding-right: 15px;
    padding-left: 15px;
}

.row.no-gutters{
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters > *{
    padding-right: 0px;
    padding-left: 0px;
}

.btn-default{
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4em;
    text-transform: capitalize;
    background: transparent;
    color: var(--primary-color);
    border-radius: 100px;
    padding: 14px 25px;
    margin-right: 50px;
    border: none;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.5s ease-in-out;
    position: relative;
    z-index: 1;
}

.btn-default::after{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    border-radius: 100px;
    opacity: 20%;
    width: 100%;
    height: 100%;
}

.btn-default::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--accent-color);
    background-image: url('../images/arrow-dark.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 24px auto;
    transform: translate(50px, 0px);
    transition: all 0.4s ease-in-out;
}

.btn-default:hover::before{
    background-color: var(--primary-color);
    transform: translate(50px, 0px) rotate(45deg);
}

.btn-highlighted {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 34px;
    border-radius: 14px;
    color: #111;
    font-weight: 800;
    text-decoration: none;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(135deg, #5b3505, #b77716, #ffd76a, #fff2a8, #c4871d, #6a4007);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .65), inset 0 -2px 6px rgba(80, 45, 0, .55), 0 0 20px rgba(255, 196, 58, .45);
    text-transform: capitalize;
}

.btn-highlighted::before{
  content:"";
  position:absolute;
  width:220%;
  height:220%;
  background:conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 70deg,
    #fff7b8 95deg,
    #baff2f 120deg,
    #ffd24a 150deg,
    transparent 190deg,
    transparent 360deg
  );
  animation:borderRun 2.5s linear infinite;
  z-index:-2;
}

.btn-highlighted::after{
  content:"";
  position:absolute;
  inset:3px;
  border-radius:11px;
  background:linear-gradient(135deg,#6a4007,#d89b24,#fff0a1,#c78316,#5b3505);
  z-index:-1;
}

.btn-highlighted:hover{
  transform:translateY(-3px);
  color:#000;
  box-shadow:
    0 0 12px rgba(255,220,90,.95),
    0 0 28px rgba(255,190,40,.75),
    0 0 45px rgba(186,255,47,.45);
}

@keyframes borderRun{
  0%{transform:rotate(0deg);}
  100%{transform:rotate(360deg);}
}

.preloader{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background-color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-container,
.loading{
    height: 100px;
    position: relative;
    width: 100px;
    border-radius: 100%;
}

.loading-container{
    margin: 40px auto;
}

.loading{
    border: 1px solid transparent;
    border-color: transparent var(--accent-color) transparent var(--accent-color);
    animation: rotate-loading 1.5s linear 0s infinite normal;
    transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading{
    transition: all 0.5s ease-in-out;
}
#loading-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 100%;
    transform: translate(-50%, -50%);
}

@keyframes rotate-loading{
    0%{
        transform: rotate(0deg);
    }

    100%{
        transform: rotate(360deg);
    }
}
.section-row .section-title{
    width: 100%;
    max-width: 605px;
    margin-bottom: 0;
}

.section-title{
    margin-bottom: 40px;
}

.section-title h3{
    display: inline-block;
    position: relative;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary-color);
    padding-left: 24px;
    margin-bottom: 20px;
}

.section-title h3::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: url(../images/icon-sub-accent-heading.svg) no-repeat;
    background-position: left center;
    background-size: cover;
    width: 16px;
    height: 16px;
}

.section-title h1 {
    font-size: 73px;
    font-weight: 300;
    line-height: 1.2em;
    color: var(--primary-color);
    margin-bottom: 0;
    cursor: none;
}
.section-title h1 span{
    font-weight: 800;
    color: var(--accent-color);
}

.section-title h2{
    font-size: 50px;
    font-weight: 300;
    line-height: 1.2em;
    color: var(--primary-color);
    margin-bottom: 0;
    cursor: none;
}

.section-title h2 span{
    font-weight: 700;
    color: var(--accent-color);
}

.section-title p{
    margin-top: 20px;
    margin-bottom: 0;
}

.section-content-btn .section-title-content{
    margin-bottom: 30px;
}

.section-title-content p{
    margin: 0;
}

.help-block.with-errors ul{
    margin: 0;
    text-align: left;
}

.help-block.with-errors ul li{
    color: var(--error-color);
    font-weight: 500;
    font-size: 14px;
}

/************************************/
/****      03. Header css        ****/
/************************************/

header.main-header{
    position: absolute;
    top: 0;
    width: 100%;
    border-bottom: 1px solid var(--divider-color);
    z-index: 100;
}

header.main-header .header-sticky{
    position: relative;
    top: 0;
    z-index: 100;
}

header.main-header .header-sticky.hide{
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    border-radius: 0;
}

header.main-header .header-sticky.active{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    transform: translateY(0);
    background: var(--dark-color);
    border-bottom: 1px solid var(--divider-color);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
}

.navbar{
    padding: 25px 0;
    align-items: center;
}

.navbar-brand{
    padding: 0;
    margin: 0;
}
.main-menu .nav-menu-wrapper > ul{
    align-items: center;
    display: inline-flex;
}

.main-menu ul li{
    margin: 0;
    position: relative;
}

.main-menu ul li.nav-item a{
    font-size: 16px;
    font-weight: 600;
    padding: 15px !important;
    color: var(--primary-color);
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu > a:after{
    content: '\f107';
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 14px;
    margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus{
    color: var(--accent-color);
}

.main-menu ul ul{
    visibility: hidden;
    opacity: 0;
    transform: scaleY(0.8);
    transform-origin: top;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 230px;
    border-radius: 20px;
    position: absolute;
    left: 0;
    top: 100%;
    background: linear-gradient(135deg,#5b3505,#b77716,#ffd76a,#fff2a8,#c4871d,#6a4007);
    text-align: left;

    transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu:first-child ul{
    width: 230px;
}

.main-menu ul ul ul{
    left: 100%;
    top: 0;
    text-align: left;
}
.main-menu ul li:hover > ul{
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu > a:after{
    content: '\f105';
    float: right;
}

.main-menu ul ul li{
    margin: 0;
    padding: 0;
}

.main-menu ul ul li.nav-item a{
    color: var(--dark-color);
    padding: 6px 20px !important;
    transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover > ul{
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus{
    color: var(--primary-color);
    background-color: transparent;
    padding: 6px 20px 6px 23px !important;
}

.header-social-box{
    align-items: center;
}

.header-social-links{
    margin-right: 20px;
}

.header-social-links ul{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
}

.header-social-links ul li{
    line-height: normal;
    margin-right: 15px;
    padding: 0;
}

.header-social-links ul li a{
    color: inherit;
}

.header-social-links ul li:last-child{
    margin: 0;
}

.header-social-links ul li i{
    font-size: 20px;
    color: var(--accent-color);
    transition: all 0.4s ease-in-out;
}

.header-social-links ul li:hover i{
    color: var(--primary-color);
}

.header-btn .btn-popup{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    z-index: 100;
}

.header-btn .offcanvas-backdrop{
    z-index: 100;
}

.header-btn .btn-popup{
    background: var(--divider-color);
    border-radius: 50%;
    border: none;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-btn .btn-popup img{
    max-width: 14px;
}

body:has(:not(.offcanvas)){
    padding-right: initial !important;
}

body:has(.offcanvas){
    padding-right: 0 !important;
}

.header-btn .offcanvas{
    position: fixed;
    top: 0;
    bottom: 0;
    left: auto;
    right: -15px;
    background: var(--secondary-color) !important;
    border-radius: 0;
    opacity: 100%;
    width: 100% !important;
    height: 100% !important;
    max-width: 375px;
    border: none;
    padding: 150px 37px 150px 30px;
    transform: translateX(100%) !important;
    z-index: 101;
    transition: all 0.3s ease-in-out !important;
} 

.offcanvas.show:not(.hiding),
.offcanvas.showing{
    transform: translateX(0) !important;
}

.navbar-expand-lg .offcanvas .offcanvas-body{
    display: block;
}

.header-btn .offcanvas .btn-close{
    position: absolute;
    top: 30px;
    right: 37px;
    background-color: transparent;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: brightness(0) invert(1);
    opacity: 100%;
    box-shadow: none;
    padding: 0;
}

.header-contact-box{
    text-align: center;
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.header-contact-box .icon-box{
    margin-bottom: 20px;
}

.header-contact-box .icon-box img{
    max-width: 40px;
}

.header-contact-box-content h3{
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.header-contact-box-content p{
    color: var(--text-color);
    margin: 0;
}

.header-social-links.sidebar-social-links{
    text-align: center;
    margin-right: 0;
}

.header-social-links.sidebar-social-links h3{
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.header-social-links.sidebar-social-links ul{
    justify-content: center;
}

.header-social-links.sidebar-social-links ul li a{
    background-color: transparent;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.header-social-links.sidebar-social-links ul li a:hover{
    border-color: var(--primary-color);
}

.responsive-menu,
.navbar-toggle{
    display: none;
}

.responsive-menu{
    top: 0;
    position: relative;
}
.slicknav_btn {
    background: linear-gradient(135deg, #5b3505, #b77716, #ffd76a, #fff2a8, #c4871d, #6a4007);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin: 0;
    border-radius: 8px;
}
.slicknav_icon .slicknav_icon-bar{
    display: block;
    width: 100%;
    height: 3px;
    width: 22px;
    background-color: var(--dark-color);
    border-radius: 6px;
    margin: 4px auto !important;
    transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child{
    margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child{
    margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1){
    transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2){
    opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3){
    transform: rotate(45deg) translate(-5px, -5px);
}
.slicknav_menu {
    position: absolute;
    width: 100%;
  position: relative;
    font-family: var(--default-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6em;
    color: var(--text-color);
    background: url(../images/section-bg-shape.png) var(--dark-color);
    background-repeat: repeat-y;
    background-position: top 900px center;
    background-size: 100% auto;
}
.slicknav_menu ul{
    margin: 5px 0;
}

.slicknav_menu ul ul{
    margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a{
    position: relative;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    padding: 8px 20px;
    color: white;
    line-height: normal;
    margin: 0;
    border-radius: 0 !important;
    transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover{
    background-color: transparent;
    color: var(--primary-color);
}

.slicknav_menu ul ul li a{
    padding: 8px 20px 8px 30px;
}

.slicknav_arrow{
    font-size: 0 !important;
}

.slicknav_arrow:after{
    content: '\f107';
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 12px;
    margin-left: 8px;
    color: white;
    position: absolute;
    right: 15px;
    top: 15px;
    transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after{
    transform: rotate(-180deg);
    color: var(--primary-color);
}

/************************************/
/***        04. Hero css          ***/
/************************************/

.hero{
    position: relative;
    padding: 215px 0 120px;
    min-height: 100vh;
}

.hero .hero-bg-video{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.hero .hero-bg-video video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero.bg-image{
    position: relative;
    background: url('../images/hero-bg.jpg') no-repeat;
    background-position: center center;
    background-size: cover;
}

.hero.bg-image::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0) -73.04%, rgba(22, 22, 22, 0.3) 1.71%, var(--secondary-color) 100%);
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero.hero-slider-layout{
    background: none;
    padding: 0;
}

.hero.hero-slider-layout .hero-slide{
    position: relative;
    background: url('../images/hero-bg.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 215px 0 120px;
    min-height: 100vh;
}

.hero.hero-slider-layout .hero-slide.slide-2{
    background: url('../images/hero-bg-2.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.hero.hero-slider-layout .hero-slide::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0) -73.04%, rgba(22, 22, 22, 0.3) 1.71%, var(--secondary-color) 100%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero.hero-slider-layout .hero-pagination{
    position: absolute;
    bottom: 30px;
    text-align: center;
    z-index: 2;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    margin: 0 5px;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active{
    background-color: var(--accent-color);
}

.hero-content{
    position: relative;
    z-index: 1;
}
.hero-content .section-title {
    width: 100%;
    margin: 0px !important;
}
.typing-title{
    display: none;
}

.section-title h1 span div{
    color: transparent;
}
/*.hero-content-video{*/
/*  width: 35%;*/
/*  display: flex;*/
/*  align-items: center;*/
/*}*/

.hero-content-video .video-play-button a{
    background: linear-gradient(135deg, #5b3505, #b77716, #ffd76a, #fff2a8, #c4871d, #6a4007);
    border-radius: 50%;
    height: 100px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    transition: all 0.3s ease-in-out;
}

.hero-content-video .video-play-button:hover a{
    background-position: right center;
}

.hero-content-video .video-play-button a i{
    font-size: 35px;
    color: var(--dark-color);
}

.learn-more-circle{
    margin-left: -20px;
}

.learn-more-circle img{
    max-width: 100px;
    animation: infiniterotate 30s infinite linear;
}

@keyframes infiniterotate{
    from{
        transform: rotate(0deg);
      }
    to{
        transform: rotate(360deg);
    }
}

.hero-video-content{
    width: 65%;
}

.hero-video-content p{
    margin: 0;
}

.hero-btn{
    text-align: center;
    margin-top: 60px;
}

/************************************/
/***   05. Scrolling Ticker css   ***/
/************************************/
.our-scrolling-ticker{
  position:relative;
  overflow:hidden;
  background:linear-gradient(90deg,#8a570d,#e6ad3d,#fff0a0,#bd7c14,#8a570d);
  padding:18px 0;
}

.our-scrolling-ticker::before,
.our-scrolling-ticker::after{
  content:"";
  position:absolute;
  left:0;
  width:100%;
  height:3px;
  background:linear-gradient(90deg,transparent,#fff4aa,#ffd24a,#baff2f,#ffd24a,transparent);
  background-size:250% 100%;
  z-index:5;
}

.our-scrolling-ticker::before{
  top:0;
  animation:tickerTopBorder 3s linear infinite;
}

.our-scrolling-ticker::after{
  bottom:0;
  animation:tickerBottomBorder 3s linear infinite reverse;
}

@keyframes tickerTopBorder{
  0%{background-position:250% 0;}
  100%{background-position:-250% 0;}
}

@keyframes tickerBottomBorder{
  0%{background-position:250% 0;}
  100%{background-position:-250% 0;}
}
.scrolling-ticker-box{
    --gap: 40px;
    position: relative;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);
    align-items: center;
}

.scrolling-content{
    flex-shrink: 0;
    display: flex;
    gap: var(--gap);
    min-width: 100%;
    animation: scroll 40s linear infinite;
}

.scrolling-content span {
    display: inline-block;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.2em;
    color: var(--dark-color);
    vertical-align: middle;
}

.scrolling-content span img{
    width: 100%;
    max-width: 24px;
    margin-right: 40px;
}

@keyframes scroll{
    from{
        transform: translateX(0);
    }

    to{
        transform: translateX(calc(-100% - var(--gap)));
    }
}

/************************************/
/***     06. About Agency css     ***/
/************************************/
.about-agency {
    position: relative;
    padding: 80px 0 80px;
}
.about-agency::before{
    content: '';
    display: block;
    position: absolute;
    left: -120px;
    top: 50%;
    background: url('../images/graphics/dollar.png') no-repeat;
    background-position: left center;
    background-size: contain;
    opacity: 50%;
    width: 386px;
    height: 400px;
    animation: circlerotate 20s infinite linear;
    z-index: -1;
}

@keyframes circlerotate{
    from{
        transform: rotate(0deg);
      }
    to{
        transform: rotate(360deg);
    }
}

.about-agency-content{
    position: sticky;
    top: 100px;
    padding-right: 35px;
}

.about-agency-list{
    border-left: 1px solid var(--divider-color);
    display: flex;
    flex-wrap: wrap;
    gap: 50px 30px;
    padding-left: 50px;
}

.about-agency-item{
    width: 100%;
}

.about-agency-item .icon-box{
    margin-bottom: 20px;
}

.about-agency-item .icon-box img {
    max-width: 40px;
    filter: brightness(12.5);
}

.agency-item-content h3{
    position: relative;
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.agency-item-content h3:after {
    content: '';
    position: absolute;
    top: 0;
    left: -60px;
    background: url(../images/dot-green-icon.svg) no-repeat;
    background-position: left center;
    background-size: cover;
    width: 20px;
    height: 20px;
    filter: brightness(6.5);
}
.agency-item-content p:last-child{
    margin: 0;
}

/************************************/
/***     07. Our Services css     ***/
/************************************/

.our-services{
    padding: 80px 0;
}

.service-item {
    position: relative;
    background: url(../images/service-bg.svg) no-repeat;
    background-position: top left;
    background-size: auto;
    border: 1px solid var(--divider-color);
    border-radius: 30px;
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    /* height: calc(100% - 30px); */
    margin-bottom: 30px;
    padding: 12px;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
}
.service-item-header img {
    border-radius: 20px;
}

.service-item:hover{
    transform: translateY(-5px);
}

.service-item::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    opacity: 40%;
}
.service-item-header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.service-arrow a img{
    max-width: 34px;
    transition: all 0.3s ease-in-out;
}

.service-item:hover .service-arrow a img{
    filter: brightness(0) invert(1);
    transform: rotate(45deg);
}

.service-item-body{
    position: relative;
}

.service-item-body h3 {
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 0;
}

.service-item-body p{
    margin-bottom: 0;
}

.service-footer{
    margin-top: 20px;
}

.service-footer p{
    text-align: center;
    margin-bottom: 0;
}

.service-footer p a{
    font-weight: 700;
    text-transform: capitalize;
    text-decoration: underline;
    color: var(--accent-color);
    transition: all 0.3s ease-in-out;
}

.service-footer p a:hover{
    color: var(--primary-color);
}

/************************************/
/***    09. Digital Success css   ***/
/************************************/
.digital-success-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 80px;
    padding: 80px;
    position: relative;
    border-radius: 30px;
    background: linear-gradient(180deg, #a77317 0%, rgba(0, 0, 0, 0) 90.04%);
}
.digital-success-box::before{
    content: "";
    position: absolute;
    left: 20px;
    top: 20px;
    border-radius: 16px;
    background: linear-gradient(180deg, #000000 75%, rgba(0, 0, 0, 0) 99.04%);
    width: calc(100% - 40px);
    height: calc(100% - 20px);
}

.digital-success-list,
.digital-success-content{
    position: relative;
    width: calc(50% - 40px);
    z-index: 1;
}

.digital-success-content::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: -40px;
    border: 1px dashed var(--dark-divider-color);
    height: 100%;
    transition: all 0.4s ease-in-out;
}

.digital-success-content .section-title{
    margin-bottom: 80px;
}

.success-counter-box{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.success-counter-item{
    width: calc(50% - 15px);
}

.success-counter-item h2{
    font-size: 50px;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.success-counter-item p{
    margin: 0;
}

.success-list-item {
    background: url(../images/icon-sub-accent-heading.svg) no-repeat;
    background-position: left top 2px;
    background-size: 20px auto;
    padding-left: 30px;
    margin-bottom: 80px;
    filter: brightness(4.5);
}

.success-list-item:last-child{
    margin-bottom: 0;
}

.success-list-item p{
    margin: 0;
}

.success-list-item p span{
    font-size: 22px;
    font-weight: 700;
    text-transform: capitalize;
}

/************************************/
/***     10. Why Choose Us css    ***/
/************************************/

.why-choose-us::before{
    content: '';
    display: block;
    position: absolute;
    right: -90px;
    top: 50%;
    background: url(../images/why-choose-bg-shape.png) no-repeat;
    background-position: left center;
    background-size: contain;
    opacity: 50%;
    width: 310px;
    height: 325px;
    animation: circlezoomrotate 10s infinite linear;
    animation-direction: alternate;
    z-index: -1;
}

@keyframes circlezoomrotate{
    from{
        transform: rotate(0deg) scale(0.5);
      }
    to{
        transform: rotate(360deg) scale(1);
    }
}

.why-choose-content{
    margin-right: 30px;
}

.why-choose-item{
    position: relative;
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    padding: 25px 30px;
}

.why-choose-item:last-child{
    margin-bottom: 0;
}

.why-choose-item::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 50%, rgba(0, 0, 0, 0) 100%);
    width: 0;
    height: 100%;
    transition: all 0.4s ease-in-out;
}

.why-choose-item.active:before,
.why-choose-item:hover:before{
    width: 100%;
}

.why-choose-item h3{
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.why-choose-item p{
    margin: 0;
}

.why-choose-image figure{
    display: block;
    border-radius: 30px;
    overflow: hidden;
}

.why-choose-image img{
    width: 100%;
    aspect-ratio: 1 / 0.93;
    object-fit: cover;
    border-radius: 30px;
}

/************************************/
/***      10. Join Agency css     ***/
/************************************/

.join-agency{
    padding: 80px 0 50px;
}

.agency-social-item{
    position: relative;
    border: 1px solid var(--divider-color);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 30px 0 30px 30px;
    padding: 30px 40px 30px 70px;
    transition: all 0.3s ease-in-out;
}

.agency-social-item .icon-box{
    position: absolute;
    top: -30px;
    left: -30px;
}

.agency-social-item .icon-box a{
    position: relative;
    display: block;
    background: linear-gradient(135deg,#5b3505,#b77716,#ffd76a,#fff2a8,#c4871d,#6a4007);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

.agency-social-item:hover .icon-box a{
    background-color: transparent;
}

.agency-social-item .icon-box a::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--secondary-color);
    border-radius: 50%;
    transform: translate(100%, 100%);
    transition: all 0.4s ease-in-out;
}

.agency-social-item:hover .icon-box a::before{
    transform: translate(0);
}

.agency-social-item .icon-box i{
    position: relative;
    font-size: 40px;
    color: var(--dark-color);
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.agency-social-item:hover .icon-box a i{
    color: var(--primary-color);
}

.agency-social-content h3{
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.agency-social-content p{
    margin: 0;
}

.agency-social-btn{
    margin-left: 10px;
}

.readmore-btn{
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.readmore-btn:hover{
    border-color: var(--accent-color);
}

.readmore-btn img{
    max-width: 24px;
    transition: all 0.3s ease-in-out;
}

.agency-social-item:hover .readmore-btn img{
    transform: rotate(45deg);
}

/************************************/
/***     11. How It Work css      ***/
/************************************/

.how-it-work{
    position: relative;
    padding: 80px 0 50px;
}

.how-it-work::before{
    content: '';
    display: block;
    position: absolute;
    left: -90px;
    top: 40%;
    background: url(../images/how-work-bg-shape.png) no-repeat;
    background-position: left center;
    background-size: contain;
    opacity: 50%;
    width: 297px;
    height: 340px;
    animation: roundrotate 8s infinite linear;
    animation-direction: alternate;
    z-index: -1;
}

@keyframes roundrotate{
    from{
        transform: translateY(0) rotate(0);
      }
    to{
        transform: translateY(100px) rotate(360deg);
    }
}

.work-process-item{
    position: relative;
    background: url(../images/service-bg.svg) no-repeat;
    background-position: top left;
    background-size: auto;
    border: 1px solid var(--divider-color);
    border-radius: 30px;
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 40px;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
}

.work-process-item:hover{
    transform: translateY(-5px);
}

.work-process-item::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    opacity: 40%;
    z-index: -1;
}

.work-process-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.work-process-title h3{
    font-size: 22px;
    text-transform: capitalize;
}

.work-process-btn{
    margin-left: 10px;
}

.work-process-item:hover .work-process-btn .readmore-btn img{
    transform: rotate(45deg);
}

.work-process-content{
    margin-bottom: 80px;
}

.work-process-content p{
    margin: 0;
}

.work-process-body{
    display: flex;
    align-items: center;
    padding-top: 20px;
}

.work-process-no{
    width: 50%;
    padding-right: 10px;
}

.work-process-no h3{
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.work-process-no h2{
    font-size: 40px;
    color: var(--accent-color);
}

.work-process-icon-box{
    width: 50%;
    position: absolute;
    display: block;
    bottom: 0;
    right: 0;
    text-align: center;
    background-color: var(--accent-color);
    border-radius: 30px 0 30px 0;
    padding: 40px;
    overflow: hidden;
}

.work-process-icon-box::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    border-radius: 30px 0 30px 0;
    transform: translate(100%, 100%);
    transition: all 0.4s ease-in-out;
}

.work-process-item:hover .work-process-icon-box::before{
    transform: translate(0);
}

.work-process-icon-box img{
    position: relative;
    max-width: 60px;
}

/************************************/
/***     12. Our Features css     ***/
/************************************/

.our-features{
    position: relative;
    padding: 80px 0;
}

.our-features::before{
    content: '';
    display: block;
    position: absolute;
    right: -90px;
    top: 50%;
    background: url(../images/features-bg-shape.png) no-repeat;
    background-position: left center;
    background-size: contain;
    opacity: 50%;
    width: 300px;
    height: 285px;
    animation: squrerotate 5s infinite linear;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    z-index: -1;
}

@keyframes squrerotate{
    from{
        transform: translate(0, 0) rotate(0deg);
      }
    to{
        transform: translate(-150px, 200px) rotate(180deg);
    }
}

.digital-features-box{
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.digital-features-item.features-item-1{
    width: calc(60% - 30px);
}

.digital-features-item.features-item-2{
    width: calc(40% - 30px);
}

.digital-features-item{
    position: relative;
    padding: 60px;
    border: 1px solid var(--divider-color);
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    border-radius: 30px;
    overflow: hidden;
}

.digital-features-item::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--secondary-color);
    opacity: 40%;
    z-index: 0;
}

.digital-features-image{
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 40px;
    z-index: 1;
}

.digital-features-image img{
    width: 100%;
    object-fit: cover;
    border-radius: 30px;
    transition: all 0.4s ease-in-out;
}

.digital-features-item.features-item-1 .digital-features-image img{
    aspect-ratio: 1 / 0.46;
}

.digital-features-item.features-item-2 .digital-features-image img{
    aspect-ratio: 1 / 0.72;
}

.digital-features-item:hover .digital-features-image img{
    transform: scale(1.1);
}

.digital-features-content{
    position: relative;
    z-index: 1;
}

.digital-features-content h3{
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.digital-features-content p{
    margin: 0;
}

.digital-features-item.agency-supports{
    padding: 60px 0;
}

.agency-supports-header{
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    padding: 0 60px;
    z-index: 1;
}

.agency-supports-content{
    width: 50%;
}

.agency-supports-content h3{
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.agency-supports-content p{
    margin: 0;
}

.agency-free-consultation{
    width: 50%;
    text-align: right;
}

.agency-free-consultation img{
    max-width: 100px;
    animation: infiniterotate 30s infinite linear;
}

.agency-supports-slider{
    position: relative;
}

.agency-supports-slider::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(280deg, #030709 0%, rgba(3, 7, 9, 0) 60.97%);
    width: 215px;
    height: 100%;
    z-index: 2;
}

.agency-supports-slider::after{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, #030709 0%, rgba(3, 7, 9, 0) 60.97%);
    width: 215px;
    height: 100%;
    z-index: 2;
}

.agency-supports-logo{
    background-color: var(--secondary-color);
    border-radius: 10px;
    text-align: center;
    padding: 25px 30px;
}

.agency-supports-logo img{
    max-height: 30px;
}

/************************************/
/***    13. Our Portfolio css     ***/
/************************************/

.our-portfolio{
    padding: 80px 0 40px;
}

.our-Project-nav{
    text-align: center;
    margin-bottom: 80px;
}

.our-Project-nav ul{
    list-style: none;
    text-align: center;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 20px;
    padding: 0;margin: 0;
}

.our-Project-nav ul li a{
    position: relative;
    display: inline-block;
    background-color: transparent;
    border: 1px solid var(--divider-color);
    border-radius: 10px;
    color: var(--text-color);
    font-weight: 400;
    line-height: 1.2em;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
    padding: 10px 20px;
    overflow: hidden;
}

.our-Project-nav ul li a.active-btn,
.our-Project-nav ul li a:hover{
    background-color: var(--accent-color);
    color: var(--dark-color);
}

.project-item{
    height: calc(100% - 40px);
    margin-bottom: 40px;
    text-align: center;
    overflow: hidden;
}

.project-image{
    position: relative;
    margin-bottom: 20px;
}

.project-image figure{
    display: block;
    border-radius: 30px;
    overflow: hidden;
}

.project-image img{
    width: 100%;
    aspect-ratio: 1 / 0.8;
    object-fit: cover;
    border-radius: 30px;
    transition: all 0.4s ease-in-out;
}

.project-item:hover .project-image figure img{
    transform: scale(1.1);
}

.project-tag{
    position: absolute;
    top: 25px;
    right: 25px;
    z-index: 1;
}

.project-tag a{
    display: block;
    background-color: var(--divider-color);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--text-color);
    border-radius: 6px;
    font-size: 14px;
    text-transform: capitalize;
    padding: 6px 15px;
}

.project-btn{
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -30%);
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.project-item:hover .project-btn{
    transform: translate(-50%, -50%);
    opacity: 1;
    visibility: visible;
} 

.project-btn a{
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.project-btn a:hover{
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.project-btn a img{
    max-width: 42px;
    transition: all 0.3s ease-in-out;
}

.project-btn a:hover img{
    filter: brightness(1) invert(1);
    transform: rotate(45deg);
}

.project-content h3{
    font-size: 22px;
    text-transform: capitalize;
}

/************************************/
/***    14. Our Testimonial Css   ***/
/************************************/

.our-testimonial{
    position: relative;
    padding: 80px 0;
}

.our-testimonial::before{
    content: '';
    display: block;
    position: absolute;
    left: -70px;
    top: 50%;
    background: url(../images/testimonial-bg-shape.png) no-repeat;
    background-position: left center;
    background-size: contain;
    opacity: 70%;
    width: 306px;
    height: 304px;
    animation: circlerotate 20s infinite linear;
    z-index: -1;
}

.our-testimonial .section-row .section-title{
    max-width: 100%;
}

.testimonial-review-box{
    position: relative;
    width: 100%;
    border: 1px solid var(--divider-color);
    border-radius: 30px;
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    text-align: center;
    overflow: hidden;
    padding: 50px;
}

.testimonial-review-box::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--secondary-color);
    opacity: 40%;
    z-index: -1;
}

.testimonial-review-header{
    margin-bottom: 30px;
}

.testimonial-review-header h2{
    font-size: 80px;
    font-weight: 600;
}

.testimonial-review-header .testimonial-rating{
    margin-bottom: 10px;
}

.testimonial-review-header p{
    margin: 0;
}

.testimonial-review-content{
    margin-bottom: 30px;
}

.testimonial-review-content h3{
    font-size: 22px;
}

.company-client-images{
    margin-bottom: 10px;
}

.satisfy-client-image{
    display: inline-block;
    margin-left: -14px;
    border: 1px solid var(--dark-color);
    border-radius: 50%;
    overflow: hidden;
}

.satisfy-client-image:first-child{
    margin: 0;
}

.satisfy-client-image figure{
    display: block;
}

.satisfy-client-image img{
    max-width: 40px;
}

.testimonial-slider{
    margin-left: 30px;
}

.testimonial-slider .swiper-wrapper{
    cursor: none;
}

.testimonial-company-logo{
    margin-bottom: 30px;
}

.testimonial-company-logo img{
    max-width: 120px;
    max-height: 30px;
}

.testimonial-rating{
    margin-bottom: 20px;
}

.testimonial-rating i{
    font-size: 16px;
    color: var(--accent-color);
    margin-right: 2px;
}

.testimonial-rating i:last-child{
    margin-right: 0;
}

.testimonial-content{
    margin-bottom: 40px;
}

.testimonial-content p{
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0;
}

.testimonial-body{
    display: flex;
    align-items: center;
}

.author-image{
    margin-right: 15px;
}

.author-image figure{
    display: block;
    border-radius: 50%;
    overflow: hidden;
}

.author-image img{
    max-width: 60px;
    border-radius: 50%;
}

.author-content{
    width: calc(100% - 75px);
}

.author-content h3{
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.author-content p{
    text-transform: capitalize;
    margin: 0;
}

.testimonial-btn{
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: right;
    margin-top: 30px;
    z-index: 2;
}

.testimonial-slider .testimonial-button-next,
.testimonial-slider .testimonial-button-prev{
    position: relative;
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 14px;
    transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-button-next{
    margin-left: 30px;
}


.testimonial-slider .testimonial-button-next:hover,
.testimonial-slider .testimonial-button-prev:hover{
    background: var(--accent-color);
}

.testimonial-slider .testimonial-button-next::before,
.testimonial-slider .testimonial-button-prev::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: url("../images/arrow-white.svg") no-repeat center center;
    background-size: 30px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(45deg);
    transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-button-prev::before{
    transform: rotate(225deg);
}

.testimonial-slider .testimonial-button-next:hover:before,
.testimonial-slider .testimonial-button-prev:hover:before{
    filter: brightness(1) invert(1);
}

.testimonial-benefits-box{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 150px;
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    border: 1px solid var(--divider-color);
    border-radius: 30px;
    overflow: hidden;
    margin-top: 100px;
    padding: 60px;
}

.testimonial-benefits-box::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    opacity: 40%;
    z-index: -1;
}

.testimonial-benefits-item{
    position: relative;
    width: calc(25% - 112.5px);
}

.testimonial-benefits-item::before{
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: -75px;
    transform: translateY(-50%);
    border-right: 1px solid var(--divider-color);
    height: 80%;
    z-index: 1;
}

.testimonial-benefits-item:last-child:before{
    display: none;
}

.testimonial-benefits-item .icon-box{
    margin-bottom: 30px;
}

.testimonial-benefits-item .icon-box img{
    max-width: 40px;
}

.testimonial-benefits-content h3{
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.testimonial-benefits-content ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.testimonial-benefits-content ul li{
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
}

.testimonial-benefits-content ul li::before{
    content: "\2a";
    font-family: "FontAwesome";
    position: absolute;
    top: 0;
    left: 0;
    font-size: 16px;
    color: var(--primary-color);
}

.testimonial-benefits-content ul li:last-child{
    margin-bottom: 0
}

/************************************/
/***    15. Agency Benefits Css   ***/
/************************************/

.agency-benefits{
    position: relative;
    padding: 80px 0 50px;
}

.agency-benefits::before{
    content: '';
    display: block;
    position: absolute;
    right: -90px;
    top: 10%;
    background: url(../images/agency-benefits-bg-shape.png) no-repeat;
    background-position: left center;
    background-size: contain;
    opacity: 50%;
    width: 279px;
    height: 287px;
    animation: circlerotate 12s infinite linear;
    z-index: 0;
}

.benefits-steps-item{
    position: relative;
    width: 100%;
    border: 1px solid var(--divider-color);
    border-radius: 30px;
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    overflow: hidden;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 30px 25px;
}

.benefits-steps-item::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--secondary-color);
    opacity: 40%;
    z-index: -1;
}

.benefits-steps-no{
    margin-bottom: 40px;
}

.benefits-steps-no h3{
    font-size: 22px;
}

.benefits-steps-item .icon-box{
    margin-bottom: 40px;
}

.benefits-steps-item .icon-box img{
    max-width: 60px;
}

.benefits-steps-content h3{
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.benefits-steps-content p{
    margin: 0;
}

/************************************/
/***      16. Our Blog Css        ***/
/************************************/

.our-blog{
    padding: 80px 0 40px;
}

.our-blog .section-row .section-title{
    max-width: 100%;
}

.post-item{
    height: calc(100px - 30px);
    margin-bottom: 30px;
}

.post-featured-image{
    margin-bottom: 30px;
}

.post-featured-image figure a{
    cursor: none;
    display: block;
    border-radius: 30px;
    overflow: hidden;
}

.post-featured-image img{
    aspect-ratio: 1 / 0.75;
    object-fit: cover;
    border-radius: 30px;
    transition: all 0.5s ease-in-out;
}

.post-item:hover .post-featured-image img{
    transform: scale(1.1);
}

.post-item-content{
    margin-bottom: 20px;
}

.post-item-content h3{
    font-size: 22px;
}

.post-item-content h3 a{
    color: inherit;
}
.post-item-btn a:hover{
    color: var(--primary-color);
}

.post-item-btn a::before{
    content: '';
    position: absolute;
    top: -2px;
    right: 0;
    background-image: url(../images/arrow-accent.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 24px;
    height: 24px;
    transition: all 0.3s ease-in-out;
}

.post-item-btn a:hover::before{
    filter: brightness(0) invert(1);
    transform: rotate(45deg);
}

/************************************/
/***       17. Footer css         ***/
/************************************/

.footer-work-together {
    position: relative;
    padding: 0px 0px 80px;
}

.footer-work-together::before{
    content: '';
    display: block;
    position: absolute;
    left: -120px;
    top: 20%;
    background: url(../images/work-together-bg-shape.png) no-repeat;
    background-position: left center;
    background-size: contain;
    opacity: 40%;
    width: 305px;
    height: 315px;
    animation: circlmoveerotate 12s infinite linear;
    animation-direction: alternate;
    z-index: -1;
}

@keyframes circlmoveerotate{
    from{
        transform: translateY(0) rotate(0deg);
      }
    to{
        transform: translateY(160px) rotate(360deg);
    }
}

.work-together-box{
    position: relative;
}

.work-together-content{
    position: relative;
    background: url('../images/work-together-bg.png') no-repeat;
    background-position: center center;
    background-size: auto;
    text-align: center;
}

.work-together-content::before{
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: url(../images/work-together-bg-gradient.png) no-repeat;
    background-position: center center;
    background-size: contain;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.footer-work-together{
    margin-bottom: 0;
}

.footer-work-together h3{
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-work-together h2{
    font-size: 180px;
    font-weight: 800;
    text-transform: uppercase;
}

.work-together-btn{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.footer-work-together .work-together-btn a {
    background: linear-gradient(135deg, #5b3505, #b77716, #ffd76a, #fff2a8, #c4871d, #6a4007);
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    align-content: center;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.footer-work-together .work-together-btn a:hover{
    background-color: var(--secondary-color);
}

.footer-work-together .work-together-btn a img{
    width: 100%;
    max-width: 24px;
    height: 24px;
    color: var(--secondary-color);
    transition: all 0.3s ease-in-out;
}

.footer-work-together .work-together-btn a:hover img{
    filter: brightness(0) invert(1);
    transform: rotate(45deg);
}

.footer-work-together .work-together-btn a span{
    width: 100%;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--dark-color);
    transition: all 0.3s ease-in-out;
}

.footer-work-together .work-together-btn a:hover span{
    color: var(--primary-color);
}

.footer-main {
    border-top: 1px solid var(--divider-color);
    padding: 50px 0;
    content: "";
    /* position: absolute; */
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 80px 80px;
}
.footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 13px;
}
.footer-contact-item:last-child{
    margin-bottom: 0;
}

.footer-contact-item .icon-box{
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease-in-out;
}

.footer-contact-item:hover .icon-box{
    border-color: var(--primary-color);
}

.footer-contact-item .icon-box img {
    max-width: 18px;
    filter: brightness(8.5);
    transition: all 0.3s ease-in-out;
}

.footer-contact-item:hover .icon-box img{
    filter: brightness(0) invert(1)
}

.footer-contact-content{
    width: calc(100% - 60px);
}

.footer-contact-content p{
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}
.footer-links h3 {
    font-size: 22px;
    text-transform: capitalize;
    color: var(--primary-color);
    margin-bottom: 20px;
}
.footer-links ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links ul li{
    text-transform: capitalize;
    margin-bottom: 15px;
}

.footer-links ul li:last-child{
    margin-bottom: 0;
}

.footer-links ul li a{
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.footer-links ul li:hover a{
    color: var(--accent-color);
}

.footer-newsletter-form .form-group{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-newsletter-form h3{
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 40px;
}

.footer-newsletter-form .form-group .form-control{
    width: 64%;
    padding: 12px 20px;
    border: 1px solid var(--divider-color);
    background: transparent;
    color: var(--text-color);
    border-radius: 10px;
    box-shadow: none;
}

.footer-newsletter-form .form-group .form-control::placeholder{
    color: var(--text-color);
}

.footer-newsletter-form .btn-highlighted{
    margin-left: 10px;
}

.footer-social-links{
    margin-top: 40px;
}

.footer-social-links ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-social-links ul li{
    display: inline-block;
    border-radius: 50%;
    margin-right: 15px;
}

.footer-social-links ul li:last-child{
    margin-right: 0;
}

.footer-social-links ul li a{
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a{
    border-color: var(--primary-color);
}

.footer-social-links ul li a i{
    color: var(--accent-color);
    font-size: 18px;
    transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a i{
    color: var(--primary-color);
}
.footer-copyright {
    border-top: 1px solid;
    padding: 10px 0;
    margin-top: 15px;
}

.footer-copyright-text{
    text-align: center;
}
.footer-copyright-text p {
    margin: 0;
    text-transform: capitalize;
}
/************************************/
/***     18. About Us Page css    ***/
/************************************/
.page-header {
    position: relative;
 background-size: cover;
    padding: 165px 0 50px;
}
.page-header-box{
    text-align: center;
}
.page-header-box h1 {
    /* display: inline-block; */
    font-size: 50px;
    font-weight: 300;
    line-height: 1.1em;
    color: var(--primary-color);
    margin-bottom: 10px;
    cursor: none;
    text-transform: capitalize;
}
.page-header-box h1 span{
    color: var(--accent-color);
    font-weight: 800;
}

.page-header-box ol{
    margin: 0;
    padding: 0;
    justify-content: center;
}

.page-header-box ol li.breadcrumb-item{
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--primary-color);
}

.page-header-box ol li.breadcrumb-item a{
    color: inherit;
}

.page-header-box ol li.breadcrumb-item.active{
    color: var(--accent-color);
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
    content: "\2a";
    font-family: "FontAwesome";
    font-size: 10px;
    color: var(--primary-color);
}

.our-scrolling-ticker.subpages-scrolling-ticker{
    padding: 15px 0;
}

.our-scrolling-ticker.subpages-scrolling-ticker .scrolling-ticker-box{
    --gap: 20px;
}

.our-scrolling-ticker.subpages-scrolling-ticker .scrolling-content span{
    font-size: 22px;
}

.our-scrolling-ticker.subpages-scrolling-ticker .scrolling-content span img{
    max-width: 18px;
    margin-right: 20px;
}

.our-approach {
    padding: 30px 0 30px;
}
.mission-vision-item {
    position: relative;
    border: 1px solid var(--divider-color);
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    border-radius: 30px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 10px;
    overflow: hidden;
}

.mission-vision-item::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--secondary-color);
    opacity: 40%;
    z-index: -1;
}

.mission-vision-image{
    position: relative;
    border-radius: 20px;
    margin-bottom: 30px;
    overflow: hidden;
}
 
.mission-vision-img img {
    /* aspect-ratio: 1 / 0.78; */
    /* object-fit: cover; */
    /* border-radius: 20px; */
    /* filter: brightness(80%); */
    transition: all 0.4s ease-in-out;
    width: 100%;
}

.mission-vision-item:hover .mission-vision-img img{
    transform: scale(1.1);
}

.mission-vision-image .icon-box{
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.mission-vision-image .icon-box img{
    max-width: 40px;
}

.mission-vision-content h3 {
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.mission-vision-content p{
    margin: 0;
}

.who-we-are {
    position: relative;
    padding: 30px 0;
}
.who-we-are::before{
    content: '';
    display: block;
    position: absolute;
    right: -90px;
    top: -25%;
    background: url(../images/agency-benefits-bg-shape.png) no-repeat;
    background-position: left center;
    background-size: contain;
    opacity: 50%;
    width: 279px;
    height: 287px;
    animation: circlerotate 8s infinite linear;
    z-index: -1;
}

.who-we-are .who-we-are-content{
    padding-right: 90px;
}

.experts-rating-video{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.experts-rating-video-image{
    width: 50%;
    position: relative;
    border-radius: 20px;
    cursor: none;
    overflow: hidden;
    z-index: 1;
}

.experts-rating-video-image .video-image img{
    width: 100%;
    filter: brightness(80%);
    aspect-ratio: 1 / 0.71;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.5s ease-in-out;
}

.experts-rating-video-image:hover .video-image img{
    transform: scale(1.1);
}

.experts-rating-video-image .video-image a{
    cursor: none;
    position: relative;
    z-index: 1;
}

.experts-rating-video-image .video-play-button{
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
}

.experts-rating-video-image .video-play-button a{
    position: relative;
    background-color: var(--accent-color);
    border-radius: 100%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
}

.experts-rating-video-image .video-play-button a:before{
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 160%;
    height: 160%;
    border: 50px solid var(--primary-color);
    opacity: 30%;
    border-radius: 50%;
    transform: scale(0.6);
    z-index: -1;
    animation: border-zooming 1.2s infinite linear;
}

.experts-rating-video-image .video-play-button a:after{
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 160%;
    height: 160%;
    border: 50px solid var(--primary-color);
    opacity: 30%;
    border-radius: 50%;
    transform: scale(0.6);
    z-index: -1;
    animation: border-zooming 1.2s infinite linear;
    animation-delay: .3s;
}

@keyframes border-zooming{
    100%{
        transform: scale(1);
        opacity: 0;
    }
}

.experts-rating-video-image .video-play-button a i{
    font-size: 16px;
    color: var(--dark-color);
}

.who-we-are-client{
    width: 50%;
    padding-left: 50px;
}

.comapny-client-rating{
    margin-bottom: 20px;
}

.comapny-client-rating ul{
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 5px;
}

.comapny-client-rating ul li i{
    font-size: 14px;
    color: var(--accent-color);
    margin-right: 2px;
}

.comapny-client-rating p{
    margin: 0;
}

.company-client-images{
    margin-bottom: 20px;
}

.company-client-images .client-image{
    display: inline-block;
    margin-left: -18px;
    border: 1px solid var(--secondary-color);
    border-radius: 50%;
    overflow: hidden;
}

.company-client-images .client-image:first-child{
    margin: 0;
}

.company-client-images .client-image figure{
    display: block;
}

.company-client-images .client-image img{
    max-width: 40px;
}

.contact-now-btn a{
    position: relative;
    color: var(--accent-color);
    font-size: 16px;
    font-weight: 700;
    padding-right: 30px;
    text-transform: capitalize;
}

.contact-now-btn a:hover{
    color: var(--primary-color);
}

.contact-now-btn a:after{
    content: '';
    position: absolute;
    top: -2px;
    right: 0;
    background-image: url(../images/arrow-accent.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 24px;
    height: 24px;
    transition: all 0.3s ease-in-out;
}

.contact-now-btn a:hover:after{
    filter: brightness(0) invert(1);
    transform: rotate(45deg);
}
.experts-counters-list {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    gap: 43px;
}
.experts-counter-box {
    width: calc(50% - 40px);
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.experts-counter-box:nth-child(even){
    margin-top: 60px;
}

.experts-counter-item{
    position: relative;
    border: 1px solid var(--divider-color);
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    border-radius: 30px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 40px;
    overflow: hidden;
}

.experts-counter-item:before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--secondary-color);
    opacity: 40%;
    z-index: -1;
}

.experts-counter-box.expert-box-1 .experts-counter-item:nth-child(even){
    background: transparent;
}

.experts-counter-box.expert-box-2 .experts-counter-item:nth-child(odd){
    background: transparent;
}

.experts-counter-item .icon-box{
    text-align: right;
    margin-bottom: 20px;
}
.experts-counter-item .icon-box img {
    max-width: 30px;
    transition: all 0.3s ease-in-out;
    filter: brightness(7.5);
}

.experts-counter-item:hover .icon-box img{
    filter: brightness(0) invert(1);
}

.experts-counter-content h2{
    font-size: 50px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.experts-counter-content p{
    margin: 0;
}

.executive-partners{
    padding: 80px 0;
}

.executive-partners-box{
    position: relative;
    border: 1px solid var(--divider-color);
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    border-radius: 30px;
    padding: 70px;
    overflow: hidden;
}

.executive-partners-box::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--secondary-color);
    opacity: 40%;
    z-index: -1;
}

.executive-partners-box .section-title{
    margin-bottom: 0;
}

.our-partners-list{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.our-partners-list .company-logo{
    width: calc(33.33% - 20px);
    background: var(--dark-color);
    border-radius: 10px;
    text-align: center;
    padding: 25px 35px;
}

.our-partners-list .company-logo img{
    width: 100%;
    height: 30px;
}
.our-team {
    position: relative;
    padding: 30px 0 30px;
}

.our-team::before{
    content: '';
    display: block;
    position: absolute;
    left: -90px;
    top: -25%;
    background: url(../images/why-choose-bg-shape.png) no-repeat;
    background-position: left center;
    background-size: contain;
    opacity: 50%;
    width: 310px;
    height: 325px;
    animation: circlezoomrotate 10s infinite linear;
    animation-direction: alternate;
    z-index: -1;
}

.team-item{
    position: relative;
    border-radius: 30px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
}

.team-image a{
    position: relative;
    display: block;
}

.team-image a::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(181.78deg, rgba(0, 0, 0, 0) 47.87%, rgba(0, 0, 0, 0.8) 81.02%);
    z-index: 1;
}

.team-image figure, 
.team-image img{
    width: 100%;
    aspect-ratio: 1 / 1.38;
    object-fit: cover;
    display: block;
    transition: all 0.4s ease-in-out; 
}

.team-item:hover .team-image img{
    transform: scale(1.1);
}

.team-body {
    position: absolute;
    bottom: 50px;
    left: 30px;
    right: 30px;
    transform: translateY(40px);
    text-align: center;
    transition: all 0.4s ease-in-out;
    z-index: 2;
}
.team-item:hover .team-body{
    transform: translateY(0);
}

.team-content h3{
    font-size: 22px;
    margin-bottom: 5px;
    text-transform: capitalize;
}

.team-content h3 a{
    color: inherit;
}

.team-content p{
    text-transform: capitalize;
    margin-bottom: 0;
}

.team-social-list{
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.team-item:hover .team-social-list{
    margin-top: 15px;
    opacity: 1;
    visibility: visible;
}

.team-social-list ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.team-social-list ul li{
    display: inline-block;
    margin-right: 10px;
}

.team-social-list ul li:last-child{
    margin: 0;
}

.team-social-list ul li a{
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.team-social-list ul li:hover a{
    background-color: var(--accent-color);
}

.team-social-list ul li a i{
    color: var(--accent-color);
    font-size: 18px;
    transition: all 0.3s ease-in-out;
}

.team-social-list ul li:hover a i{
    color: var(--dark-color);
}

.our-faqs{
    padding: 80px 0;
}

.faq-images{
    position: relative;
    margin-right: 30px;
    padding: 140px 80px 0 0;
}

.faq-img-1{
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}

.faq-img-1 figure{
    display: block;
    border-radius: 30px;
}

.faq-img-1 img{
    width: 100%;
    aspect-ratio: 1 / 1.02;
    object-fit: cover;
    border-radius: 30px;
}

.faq-img-2 figure{
    display: block;
    border-radius: 30px;
}

.faq-img-2 img{
    width: 100%;
    aspect-ratio: 1 / 1.06;
    object-fit: cover;
    border-radius: 30px;
}

.faq-cta-box{
    position: absolute;
    bottom: 0;
    right: 10%;
    transform: translate(0, -100%);
    animation: FaqCtaBoxMove 4s infinite linear;
}

@keyframes FaqCtaBoxMove{
    50%{
        right: 0;
    }
}

.faq-cta-box a{
    position: relative;
    display: block;
    color: var(--text-color);
    font-weight: 700;
    padding: 10px 18px;
    border: 1px solid var(--divider-color);
    border-radius: 10px;
    backdrop-filter: blur(60px);
    -webkit-backdrop-filter: blur(60px);
    overflow: hidden;
}

.faq-cta-box a::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    opacity: 16%;
    z-index: -1;
}

.faq-cta-box img{
    max-width: 30px;
    margin-right: 10px;
}

.our-faq-section .accordion-item{
    border: 1px solid var(--divider-color);
    border-radius: 10px;
    margin-bottom: 30px;
    padding: 0;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.our-faq-section .accordion-item:last-child{
    margin-bottom: 0;
}

.our-faq-section .accordion-header .accordion-button{
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2em;
    background: transparent;
    color: var(--primary-color);
    padding: 17px 55px 17px 20px;
    transition: all 0.3s ease-in-out;
}

.our-faq-section .accordion-button:not(.collapsed){
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 50%, rgba(0, 0, 0, 0) 100%);
}

.our-faq-section .accordion-header .accordion-button.collapsed{
    color: var(--primary-color);
}

.our-faq-section .accordion-item .accordion-button::after,
.our-faq-section .accordion-item .accordion-button.collapsed::after{
    content: '\f068';
    font-family: "FontAwesome";
    position: absolute;
    right: 20px;
    top: 50%;
    bottom: auto;
    transform: translate(0px, -12px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    width: 24px;
    height: 24px;
    color: var(--dark-color);
    background-color: var(--primary-color);
    border-radius: 50%;
}

.our-faq-section .accordion-item .accordion-button.collapsed::after{
    content: '\2b';
    background-color: var(--accent-color);
}

.our-faq-section .accordion-item .accordion-body{
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 50%, rgba(0, 0, 0, 0) 100%);
    padding: 0 55px 18px 20px;
}

.our-faq-section .accordion-item .accordion-body p{
    color: var(--primary-color);
    margin: 0;
}

/************************************/
/***     19. Services Page css    ***/
/************************************/

.page-services{
    padding: 160px 0 50px;
}

.who-we-are.service-we-are::before{
    display: none;
}

/************************************/
/***    20. Services Single css   ***/
/************************************/

.page-service-single{
    position: relative;
    padding: 160px 0 80px;
}

.page-service-single::before{
    content: '';
    display: block;
    position: absolute;
    right: -120px;
    top: 15%;
    background: url(../images/about-agency-bg.png) no-repeat;
    background-position: right center;
    background-size: contain;
    opacity: 40%;
    width: 386px;
    height: 400px;
    animation: circlerotate 20s infinite linear;
    z-index: -1;
}

.page-service-single::after{
    content: '';
    display: block;
    position: absolute;
    left: -90px;
    top: 50%;
    background: url(../images/why-choose-bg-shape.png) no-repeat;
    background-position: left center;
    background-size: contain;
    opacity: 50%;
    width: 310px;
    height: 325px;
    animation: circlezoomrotate 10s infinite linear;
    animation-direction: alternate;
    z-index: -1;
}

.service-single-content{
    margin-right: 30px;
}

.service-feature-image{
    margin-bottom: 40px;
}

.service-feature-image figure{
    display: block;
    border-radius: 30px;
}

.service-feature-image img{
    width: 100%;
    aspect-ratio: 1 / 0.67;
    object-fit: cover;
    border-radius: 30px;
}

.service-entry{
    margin-bottom: 40px;
}

.service-entry p{
    margin-bottom: 20px;
}

.service-entry p:last-child{
    margin-bottom: 0;
}

.service-entry h2{
    font-size: 50px;
    font-weight: 300;
    margin-bottom: 20px;
}

.service-entry h2 span{
    color: var(--accent-color);
    font-weight: 700;
}

.service-entry-list-image{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.service-entry-list{
    width: calc(55% - 20px);
}

.service-entry-list ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-entry-list ul li{
    position: relative;
    text-transform: capitalize;
    padding-left: 30px;
    margin-bottom: 24px;
}

.service-entry-list ul li:last-child{
    margin-bottom: 0;
}

.service-entry-list ul li::before{
    content: "\f192";
    font-family: "FontAwesome";
    position: absolute;
    top: 0;
    left: 0;
    font-size: 18px;
    color: var(--accent-color);
}

.service-entry-image{
    width: calc(45% - 20px);
}

.service-entry-image figure{
    display: block;
    border-radius: 30px;
    overflow: hidden;
}

.service-entry-image img{
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 0.89;
    border-radius: 30px;
}

.service-process-steps{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 30px 0 40px;
}

.process-step-item{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.process-step-item:nth-of-type(even){
    flex-direction: row-reverse;
}

.process-step-content{
    position: relative;
    background: url(../images/service-bg.svg) no-repeat;
    background-size: auto;
    background-position: top left;
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    width: calc(50% - 15px);
    padding: 40px;
    border: 1px solid var(--divider-color);
    border-radius: 30px;
}

.process-step-content::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    opacity: 40%;
    border-radius: 30px;
}

.process-step-header{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 70px;
}

.process-step-header .icon-box img{
    max-width: 60px;
}

.process-step-no h3{
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.process-step-no h3 span{
    color: var(--accent-color);
    display: block;
}

.process-step-body{
    position: relative;
}

.process-step-body h3{
    font-size: 22px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.process-step-body p{
    margin-bottom: 0;
}

.process-step-image{
    width: calc(50% - 15px);
}

.process-step-image figure{
    display: block;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
}

.process-step-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 0.9;
    border-radius: 30px;
}

.service-sidebar{
    position: sticky;
    top: 20px;
}

.service-catagery-list{
    position: relative;
    border-radius: 30px;
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    margin-bottom: 60px;
    overflow: hidden;
}

.service-catagery-list::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    opacity: 40%;
    z-index: -1;
}

.service-catagery-list h3{
    font-size: 22px;
    text-transform: capitalize;
    padding: 40px 40px 30px;
    border-bottom: 1px solid var(--divider-color);
}

.service-catagery-list ul{
    list-style: none;
    margin: 0;
    padding: 30px 40px 40px;
}

.service-catagery-list ul li{
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:last-child{
    margin: 0;
    padding: 0;
    border-bottom: none;
}

.service-catagery-list ul li a{
    position: relative;
    display: block;
    text-transform: capitalize;
    color: var(--text-color);
    transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a{
    color: var(--accent-color);
}

.service-catagery-list ul li a::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    background: url(../images/arrow-accent.svg) no-repeat;
    background-position: right center;
    background-size: cover;
    width: 26px;
    height: 26px;
    transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a::before{
    transform: rotate(45deg);
}

.sidebar-cta-box{
    position: relative;
    background: url(../images/sidebar-cta-bg.svg) no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 50px;
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    border: 1px solid var(--divider-color);
    border-radius: 30px;
    text-align: center;
    overflow: hidden;
}

.sidebar-cta-box::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    opacity: 40%;
    z-index: -1;
}

.sidebar-cta-box .icon-box{
    position: relative;
    margin-bottom: 40px;
}

.sidebar-cta-box .icon-box img{
    max-width: 60px;
}

.cta-contact-content{
    position: relative;
    margin-bottom: 20px;
}

.cta-contact-content h3{
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.cta-contact-content p{
    margin-bottom: 0;
}

.cta-contact-btn{
    position: relative;
}

.cta-contact-btn a{
    display: inline-block;
    font-weight: 700;
    color: var(--dark-color);
    backdrop-filter: blur(60px);
    -webkit-backdrop-filter: blur(60px);
    background-color: var(--accent-color);
    border-radius: 10px;
    padding: 12px 35px;
    transition: all 0.4S ease-in-out;
}

.cta-contact-btn a:hover{
    background-color: var(--dark-divider-color);
    color: var(--primary-color);
}

.cta-contact-btn a img{
    margin-right: 12px;
    max-width: 30px;
    transition: all 0.4S ease-in-out;
}

.cta-contact-btn a:hover img{
    filter: brightness(1) invert(1);
}

/************************************/
/***     21. Blog Archive Css     ***/
/************************************/

.page-blog{
    position: relative;
    padding: 160px 0 80px;
}

.page-blog::before{
    content: '';
    display: block;
    position: absolute;
    right: -120px;
    top: 40%;
    background: url(../images/about-agency-bg.png) no-repeat;
    background-position: right center;
    background-size: contain;
    opacity: 40%;
    width: 386px;
    height: 400px;
    animation: circlerotate 20s infinite linear;
    z-index: -1;
}

.post-item{
    height: calc(100% - 40px);
    margin-bottom: 40px;
}

.page-pagination{
    margin-top: 20px;
    text-align: center;
}

.page-pagination ul{
    justify-content: center;
    padding: 0;
    margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span{
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 10px;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 700;
    line-height: 1em;
    transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a, 
.page-pagination ul li a:hover{
    background: var(--accent-color);
    color: var(--dark-color);
}

/************************************/
/***      22. Blog Single css     ***/
/************************************/

.page-single-post {
    padding: 50px 0 50px;
}
.post-image{
    position: relative;
    margin-bottom: 30px;
}

.post-image figure{
    display: block;
}

.post-image figure,
.post-image img{
    aspect-ratio: 1 / 0.50;
    object-fit: cover;
    border-radius: 30px;
}

.post-content{
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.post-entry{
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.post-entry:after{
    content: '';
    display: block;
    clear: both;
}

.post-entry a{
    color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6{
    font-weight: 300;
    line-height: 1.2em;
    margin: 0 0 0.6em;
}

.post-entry h1 span,
.post-entry h2 span{
    font-weight: 800;
}

.post-entry h1{
    font-size: 80px;
}

.post-entry h2{
    font-size: 50px;
}

.post-entry h3{
    font-size: 40px;
}

.post-entry h4{
    font-size: 30px;
}

.post-entry h5{
    font-size: 24px;
}

.post-entry h6{
    font-size: 18px;
}

.post-entry p{
    margin-bottom: 20px;
}

.post-entry p:last-child{
    margin-bottom: 0;
}

.post-entry p strong{
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
}

.post-entry ol{
    margin: 0 0 30px;
}

.post-entry ol li{
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
}

.post-entry ul{
    padding: 0;
    margin: 20px 0 20px;
    padding-left: 20px;
}

.post-entry ul li{
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-color);
    position: relative;
    margin-bottom: 15px;
}

.post-entry ul li:last-child{
    margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul{
    margin-top: 20px;
    margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child{
    margin-bottom: 0;
}

.post-entry blockquote{
    position: relative;
    background: url(../images/icon-blockquote.svg) no-repeat;
    border: 1px solid var(--divider-color);
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    background-position: 35px 30px;
    background-size: 58px;
    border-radius: 20px;
    padding: 30px 30px 30px 100px;
    margin-bottom: 30px;
    overflow: hidden;
}

.post-entry blockquote::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    opacity: 40%;
    z-index: -1;
}

.post-entry blockquote p{
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4em;
    color: var(--primary-color);
}

.post-entry blockquote p:last-child{
    margin-bottom: 0;
}

.tag-links{
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.post-tags .tag-links a{
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    background: var(--accent-color);
    background-size: 200% auto;
    color: var(--dark-color);
    border-radius: 100px;
    padding: 8px 20px;
    transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover{
    background: var(--primary-color);
}

.post-social-sharing{
    text-align: right;
}

.post-social-sharing ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-social-sharing ul li{
    display: inline-block;
    margin-right: 10px;
}

.post-social-sharing ul li:last-child{
    margin-right: 0;
}

.post-social-sharing ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--accent-color);
    background-size: 200% auto;
    color: var(--dark-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a{
    background: var(--primary-color);
}

.post-social-sharing ul li a i{
    font-size: 18px;
    color: inherit;
}

/************************************/
/***      23. Project Page css    ***/
/************************************/

.page-project{
    position: relative;
    padding: 160px 0 40px;
}

.page-project::before{
    content: '';
    display: block;
    position: absolute;
    right: -120px;
    top: 40%;
    background: url(../images/about-agency-bg.png) no-repeat;
    background-position: right center;
    background-size: contain;
    opacity: 40%;
    width: 386px;
    height: 400px;
    animation: circlerotate 20s infinite linear;
    z-index: -1;
}

/************************************/
/***     24. Project Single css   ***/
/************************************/

.page-project-single{
    position: relative;
    padding: 160px 0 80px;
}

.page-project-single::before{
    content: '';
    display: block;
    position: absolute;
    left: -90px;
    top: 10%;
    background: url(../images/agency-benefits-bg-shape.png) no-repeat;
    background-position: left center;
    background-size: contain;
    opacity: 50%;
    width: 279px;
    height: 287px;
    animation: circlerotate 8s infinite linear;
    z-index: -1;
}

.page-project-single::after{
    content: '';
    display: block;
    position: absolute;
    right: -90px;
    top: 60%;
    background: url(../images/why-choose-bg-shape.png) no-repeat;
    background-position: left center;
    background-size: contain;
    opacity: 50%;
    width: 310px;
    height: 325px;
    animation: circlezoomrotate 10s infinite linear;
    animation-direction: alternate;
    z-index: -1;
}

.project-single-content{
    margin-right: 30px;
}

.project-single-image{
    margin-bottom: 40px;
}

.project-single-image figure{
    display: block;
    border-radius: 30px;
}

.project-single-image img{
    width: 100%;
    aspect-ratio: 1 / 0.67;
    object-fit: cover;
    border-radius: 30px;
}

.project-challenges,
.project-info,
.project-entry{
    margin-bottom: 60px;
}

.project-entry p{
    margin-bottom: 20px;
}

.project-entry p:last-child{
    margin-bottom: 0;
}

.project-entry h2{
    font-size: 50px;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.project-entry h2 span{
    color: var(--accent-color);
    font-weight: 700;
}

.project-entry ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

.project-entry ul li{
    position: relative;
    text-transform: capitalize;
    padding-left: 30px;
    margin-bottom: 24px;
}

.project-entry ul li:last-child{
    margin-bottom: 0;
}

.project-entry ul li::before{
    content: "\f192";
    font-family: "FontAwesome";
    position: absolute;
    top: 0;
    left: 0;
    font-size: 18px;
    color: var(--accent-color);
}

.project-solution-rating{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
    margin-top: 30px;
}

.project-rating-content{
    width: calc(70% - 30px);
}

.project-rating-counter{
    width: calc(30% - 30px);
    display: flex;
    align-items: center;
}

.project-rating-counter .icon-box{
    margin-right: 20px;
}

.project-rating-counter .icon-box i{
    font-size: 48px;
    color: var(--accent-color);
}

.project-counter-content{
    width: calc(100% - 68px);
}

.project-counter-content h3{
    font-size: 40px;
}

.project-sidebar{
    position: sticky;
    top: 20px;
}

.project-catagery-list{
    position: relative;
    border: 1px solid var(--divider-color);
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    border-radius: 30px;
    margin-bottom: 60px;
    overflow: hidden;
}

.project-catagery-list::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    opacity: 40%;
    z-index: -1;
}

.category-item-list{
    padding: 40px 40px 30px;
}

.category-list-item{
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.category-list-item:last-child{
    margin: 0;
    padding: 0;
    border-bottom: none;
}

.category-list-item h3{
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.category-list-item p{
    text-transform: capitalize;
    margin-bottom: 0;
}

.category-social-link{
    border-top: 1px solid var(--divider-color);
    display: flex;
    align-items: center;
    padding: 30px 40px 40px;
}

.category-social-link span{
    font-size: 22px;
    font-weight: 700;
    margin-right: 15px;
}

.category-social-link ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-social-link ul li{
    display: inline-block;
    margin-right: 5px;
}

.category-social-link ul li:last-child{
    margin-right: 0;
}

.category-social-link ul li a{
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.category-social-link ul li a:hover{
    border-color: var(--primary-color);
}

.category-social-link ul li a i{
    color: var(--accent-color);
    font-size: 18px;
    transition: all 0.3s ease-in-out;
}

.category-social-link ul li a:hover i{
    color: var(--primary-color);
}

/************************************/
/***      25. Team Page css       ***/
/************************************/

.page-team{
    position: relative;
    padding: 160px 0 50px;
}

.page-team::before{
    content: '';
    display: block;
    position: absolute;
    right: -120px;
    top: 50%;
    background: url(../images/work-together-bg-shape.png) no-repeat;
    background-position: right center;
    background-size: contain;
    opacity: 40%;
    width: 305px;
    height: 315px;
    animation: circlmoveerotate 10s infinite linear;
    animation-direction: alternate;
    z-index: -1;
}

/************************************/
/***      26. Team Single css     ***/
/************************************/

.page-team-single{
    position: relative;
    padding: 160px 0 80px;
}

.page-team-single::before{
    content: '';
    display: block;
    position: absolute;
    right: -90px;
    top: 60%;
    background: url(../images/why-choose-bg-shape.png) no-repeat;
    background-position: left center;
    background-size: contain;
    opacity: 50%;
    width: 310px;
    height: 325px;
    animation: circlezoomrotate 10s infinite linear;
    animation-direction: alternate;
    z-index: -1;
}

.team-single-content{
    margin-right: 30px;
}

.team-single-content h2{
    font-size: 50px;
    font-weight: 300;
    margin-bottom: 20px;
}

.team-single-content h2 span{
    color: var(--accent-color);
    font-weight: 700;
}

.team-single-content p{
    margin-bottom: 20px;
}

.team-single-content p:last-child{
    margin-bottom: 0;
}

.team-info-box{
    margin-bottom: 60px;
}

.team-info-header{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 40px;
}

.team-info-title{
    width: calc(75% - 15px);
}

.team-info-title p{
    color: var(--accent-color);
    text-transform: capitalize;
    margin-bottom: 5px;
}

.team-info-title h2{
    font-weight: 700;
    text-transform: capitalize;
    margin: 0;
}

.team-info-social-list{
    width: calc(25% - 15px);
}

.team-info-social-list ul{
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: end;
}

.team-info-social-list ul li{
    display: inline-block;
    margin-right: 10px;
}

.team-info-social-list ul li:last-child{
    margin: 0;
}

.team-info-social-list ul li a{
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.team-info-social-list ul li:hover a{
    background-color: var(--accent-color);
}

.team-info-social-list ul li a i{
    font-size: 18px;
    color: var(--accent-color);
    transition: all 0.3s ease-in-out;
}

.team-info-social-list ul li:hover a i{
    color: var(--dark-color);
}

.team-contact-box{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.team-contact-box:last-child{
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.team-contact-box .icon-box{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    margin-right: 30px;
    border: 1px solid var(--dark-divider-color);
    border-radius: 50%;
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    overflow: hidden;
}

.team-contact-box .icon-box::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    opacity: 30%;
    z-index: -1;
}

.team-contact-box .icon-box img{
    max-width: 36px;
}

.team-contact-content{
    width: calc(100% - 110px);
}

.team-contact-content h3{
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.team-contact-content p{
    margin: 0;
}

.team-personal-info{
    margin-bottom: 60px;
}

.team-career-list ul{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.team-career-list ul li{
    position: relative;
    width: calc(50% - 15px);
    text-transform: capitalize;
    padding-left: 30px;
}

.team-career-list ul li::before{
    content: "\f192";
    font-family: "FontAwesome";
    position: absolute;
    top: 0;
    left: 0;
    font-size: 18px;
    color: var(--accent-color);
}

.team-single-sidebar{
    position: sticky;
    top: 30px;
}

.team-single-image{
    margin-bottom: 60px;
}

.team-single-image figure{
    display: block;
    border-radius: 30px;
    overflow: hidden;
    visibility: visible;
}

.team-single-image img{
    width: 100%;
    aspect-ratio: 1 / 1.22;
    object-fit: cover;
    border-radius: 30px
}

.team-single-contact-form{
    position: relative;
    border-radius: 30px;
    border: 1px solid var(--divider-color);
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    overflow: hidden;
}

.team-single-contact-form::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    opacity: 40%;
    z-index: -1;
}

.team-single-contact-form h3{
    position: relative;
    font-size: 34px;
    font-weight: 300;
    padding: 40px 40px 30px;
    border-bottom: 1px solid var(--divider-color);
}

.team-single-contact-form h3 span{
    font-weight: 700;
    color: var(--accent-color);
}

.team-single-contact-form form{
    position: relative;
    padding: 40px;
}

.team-single-contact-form form .form-control{
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
    padding: 16px 20px;
    background-color: transparent;
    border: 1px solid var(--divider-color);
    border-radius: 10px;
    outline: none;
    box-shadow: none;
}

.team-single-contact-form form .form-control::placeholder{
    color: var(--text-color);
}

.contact-form-btn .btn-highlighted{
    width: 100%;
    text-align: center;
}

/************************************/
/***      27. Pricing Page css    ***/
/************************************/

.page-pricing{
    padding: 160px 0 80px;
}

.pricing-box-list{
    display: flex;
    flex-wrap: wrap;
    gap: 40px 60px;
}

.pricing-box{
    position: relative;
    background: url(../images/service-bg.svg) no-repeat;
    background-position: top left;
    background-size: auto;
    width: calc(50% - 30px);
    border: 1px solid var(--divider-color);
    border-radius: 30px;
    padding: 50px;
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    overflow: hidden;
}

.pricing-box::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    opacity: 40%;
    z-index: -1;
}

.pricing-box-content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 40px;
    padding-bottom: 40px;
}

.pricing-title{
    width: calc(60% - 15px);
}

.pricing-title h3{
    font-size: 30px;
    text-transform: capitalize;
    margin-bottom: 10px; 
}

.pricing-title p{
    margin-bottom: 0;
}

.pricing-price{
    width: calc(40% - 15px);
    text-align: end;
}

.pricing-price h2{
    font-size: 50px;
    color: var(--accent-color);
}

.pricing-price h2 sup{
    font-size: 22px;
    color: var(--primary-color);
}

.pricing-price h2 sub{
    bottom: 0;
    font-size: 16px;
    font-weight: 400;
    color: var(--primary-color);
}

.pricing-list{
    margin-bottom: 40px;
}

.pricing-list ul{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pricing-list ul li{
    position: relative;
    width: calc(50% - 15px);
    text-transform: capitalize;
    padding-left: 30px;
}

.pricing-list ul li::before{
    content: "\f192";
    font-family: "FontAwesome";
    position: absolute;
    top: 0;
    left: 0;
    font-size: 18px;
    color: var(--accent-color);
}

.pricing-btn .btn-highlighted{
    width: 100%;
    text-align: center;
}

/************************************/
/***    28. Testimonial Page css  ***/
/************************************/

.page-testimonial{
    padding: 160px 0 80px;
}

.testimonial-box-list{
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.testimonial-box-item{
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
    width: 100%;
    border: 1px solid var(--divider-color);
    border-radius: 30px;
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    padding: 80px;
    overflow: hidden;
}

.testimonial-box-item::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    opacity: 40%;
    z-index: -1;
}

.client-author-image{
    width: calc(27% - 25px);
}

.client-author-image figure{
    display: block;
    border-radius: 50%;
    overflow: hidden;
}

.client-author-image img{
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
}

.client-testimonial-content{
    width: calc(73% - 25px);
}

.client-testimonial-rating{
    margin-bottom: 20px;
}

.client-testimonial-rating ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

.client-testimonial-rating ul li{
    display: inline-block;
}

.client-testimonial-rating ul li i{
    font-size: 12px;
    color: var(--accent-color);
    margin-right: 2px;
}

.client-testimonial-rating ul li:last-child i{
    margin: 0;
}

.client-testimonial-info{
    margin-bottom: 20px;
}

.client-testimonial-info p{
    font-size: 20px;
}

.client-testimonial-info p:last-child{
    margin: 0;
}

.client-author-content{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.client-author-title{
    width: calc(65% - 15px);
}

.client-author-title h3{
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.client-author-title p{
    text-transform: capitalize;
    margin-bottom: 0;
}

.client-author-logo{
    width: calc(35% - 15px);
    text-align: end;
}

.client-author-logo img{
    max-width: 125px;
    max-height: 30px;
}

/************************************/
/***     27. Image Gallery css    ***/
/************************************/

.page-gallery{
    padding: 160px 0 50px;
}

.page-gallery-box .photo-gallery{
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a{
    cursor: none;
}

.page-gallery-box .photo-gallery figure{
    border-radius: 20px;
}

.page-gallery-box .photo-gallery img{
    aspect-ratio: 1 / 0.8;
    object-fit: cover;
    border-radius: 20px;
}

/************************************/
/***     30. Video Gallery css    ***/
/************************************/

.page-video-gallery{
    padding: 160px 0 50px;
}

.video-gallery-image{
    border-radius: 20px;
    overflow: hidden;
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.video-gallery-image a{
    position: relative;
    display: block;
    cursor: none;
}

.video-gallery-image a::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--secondary-color);
    border-radius: 20px;
    opacity: 0%;
    visibility: hidden;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before{
    opacity: 50%;
    visibility: visible;
    transform: scale(1);
}

.video-gallery-image a::after{
    content: '\f04b';
    font-family: 'FontAwesome';
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    transform: translate(-50%, -50%);
    font-size: 20px;
    background: var(--accent-color);
    color: var(--dark-color);
    border-radius: 50%;
    height: 60px;
    width: 60px;
    cursor: none;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.video-gallery-image:hover a::after{
    opacity: 1;
    visibility: visible;
}

.video-gallery-image img{
    aspect-ratio: 1 / 0.8;
    object-fit: cover;
    border-radius: 20px;
}

/************************************/
/***       31. FAQs Page css      ***/
/************************************/

.page-faqs{
    padding: 160px 0 80px;
}

.page-faqs-catagery{
    margin-right: 30px;
}

.page-faq-accordion{
    margin-bottom: 80px;
}

.page-faq-accordion:last-child{
    margin-bottom: 0;
}

.faq-sidebar{
    position: sticky;
    top: 20px;
}

.faq-catagery-list{
    position: relative;
    border-radius: 30px;
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    margin-bottom: 60px;
    overflow: hidden;
}

.faq-catagery-list::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    opacity: 40%;
    z-index: -1;
}

.faq-catagery-list ul{
    list-style: none;
    margin: 0;
    padding: 40px;
}

.faq-catagery-list ul li{
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:last-child{
    margin: 0;
    padding: 0;
    border-bottom: none;
}

.faq-catagery-list ul li a{
    position: relative;
    display: block;
    text-transform: capitalize;
    color: var(--text-color);
    transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover a{
    color: var(--accent-color);
}

.faq-catagery-list ul li a::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    background: url(../images/arrow-accent.svg) no-repeat;
    background-position: right center;
    background-size: cover;
    width: 26px;
    height: 26px;
    transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover a::before{
    transform: rotate(45deg);
}

/************************************/
/***    32. Contact Us Page css   ***/
/************************************/

.page-contact-us {
    padding: 30px 0 80px;
}
.contact-info-box{
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info-box .info-box-1{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-info-box .info-box-1,
.contact-info-box .info-box-2{
    position: relative;
    width: 100%;
    border: 1px solid var(--divider-color);
    border-radius: 30px;
    padding: 30px 40px;
    overflow: hidden;
}

.contact-info-box .info-box-1::before,
.contact-info-box .info-box-2::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    opacity: 30%;
    z-index: -1;
}

.contact-info-item{
    text-align: center;
    width: 100%;
}

.contact-info-box .info-box-1 .contact-info-item{
    position: relative;
    width: calc(50% - 15px);
}

.contact-info-box .info-box-1 .contact-info-item::before{
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(15px, -50%);
    height: 80%;
    width: 1px;
    background-color: var(--divider-color);
}

.contact-info-box .info-box-1 .contact-info-item:nth-child(2n + 2):before{
    display: none;
}

.contact-info-box .info-box-2 .contact-info-item{
    display: flex;
    text-align: left;
}

.contact-info-item .icon-box{
    margin-bottom: 30px;
}

.contact-info-box .info-box-2 .icon-box{
    margin: 0 30px 0 0;
}
.contact-info-item .icon-box img {
    max-width: 50px;
    filter: brightness(4.5);
}

.contact-info-box .info-box-2 .contact-item-content{
    width: calc(100% - 80px);
}

.contact-item-content h3{
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.contact-item-content p{
    margin: 0;
}

.contact-us-form{
    position: relative;
    padding: 50px;
    border: 1px solid var(--divider-color);
    border-radius: 30px;
    margin-left: 30px;
}

.contact-us-form::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    opacity: 40%;
    border-radius: 30px;
    z-index: -1;
}

.contact-us-form form .form-control{
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
    padding: 16px 20px;
    background-color: transparent;
    border: 1px solid var(--divider-color);
    border-radius: 10px;
    outline: none;
    box-shadow: none;
}

.contact-us-form form .form-control::placeholder{
    color: var(--text-color);
}

.google-map{
    padding: 80px 0;
}

.google-map-iframe,
.google-map-iframe iframe{
    width: 100%;
    height: 600px;
    border-radius: 30px;
}

.google-map-iframe iframe{
    filter: grayscale(1);
    transition: all 0.4s ease-in-out;
}

.google-map-iframe iframe:hover{
    filter: grayscale(0);
}

/************************************/
/***       33. 404 Page css       ***/
/************************************/

.error-page{
    padding: 160px 0 80px;
}

.error-page-image{
    text-align: center;
    margin-bottom: 30px;
}

.error-page-image img{
    width: 100%;
    max-width: 50%;
}

.error-page .error-page-content{
    text-align: center;
}

.error-page-content-heading{
    margin-bottom: 30px;
}

.error-page-content-body p{
    margin-bottom: 30px;
}

/************************************/
/***      34. Responsive css      ***/
/************************************/

@media only screen and (max-width: 991px){

    .navbar{
        padding: 20px 0;
    }

    .slicknav_nav li,
    .slicknav_nav ul{
        display: block;
    }

    .responsive-menu,
    .navbar-toggle{
        display: block;
    }

    .header-social-links{
        display: none;
    }

    .section-row{
        margin-bottom: 40px;
    }

    .section-row .section-title{
        max-width: 100%;
    }

    .section-title{
        margin-bottom: 30px;
    }

    .section-title h3{
        margin-bottom: 15px;
    }

    .section-title h3::before{
        width: 14px;
        height: 14px;
    }

    .section-title h1{
        font-size: 70px;
    }

    .section-title h2{
        font-size: 40px;
    }

    .section-title p{
        margin-top: 15px;
    }

    .section-content-btn .section-title-content{
        margin-bottom: 20px;
    }

    .section-title-content{
        margin-top: 15px;
    }

    .hero{
        padding: 180px 0 90px;
        min-height: auto;
    }

    .hero.hero-slider-layout .hero-slide{
        padding: 180px 0 90px;
        min-height: auto;
    }

    .hero-content .section-title{
        margin-bottom: 40px;
    }

    .hero-content-body{
        margin-left: 0px;
    }

    .hero-content-video{
        width: 37%;
    }

    .hero-video-content{
        width: 63%;
    }

    .hero-btn{
        margin-top: 30px;
    }

    .our-scrolling-ticker {
        padding: 13px 0;
    }

    .scrolling-content span{
        font-size: 34px;
    }

    .about-agency {
        padding: 30px 0 30px;
    }
    .about-agency::before{
        width: 300px;
        height: 330px;
    }

    .about-agency-content{
        position: initial;
        padding-right: 0px;
        margin-bottom: 30px;
    }

    .about-agency-list{
        gap: 30px;
        padding-left: 30px;
        margin-left: 10px;
    }

    .agency-item-content h3:after{
        left: -40px;
    }

    .agency-item-content h3{
        font-size: 20px;
    }

    .our-services{
        padding: 40px 0;
    }

    .service-item-body h3{
        font-size: 20px;
        margin-bottom: 15px;
    }

    .service-footer{
        margin-top: 10px;
    }
    .digital-success-box{
        gap: 40px;
        padding: 50px;
    }

    .digital-success-list,
    .digital-success-content{
        width: 100%;
    }

    .digital-success-content::before{
        display: none;
    }

    .digital-success-content .section-title{
        margin-bottom: 40px;
    }

    .success-counter-item h2{
        font-size: 40px;
    }

    .success-list-item{
        margin-bottom: 40px;
    }

    .success-list-item p span{
        font-size: 20px;
    }

    .why-choose-us{
        padding: 40px 0;
    }

    .why-choose-us::before{
        top: 20%;
        width: 250px;
        height: 280px;
    }

    .why-choose-content{
        margin-right: 0;
        margin-bottom: 30px;
    }

    .why-choose-item{
        padding: 15px 20px;
    }

    .why-choose-item h3{
        font-size: 20px;
    }

    .why-choose-image img{
        aspect-ratio: 1 / 0.73;
    }

    .join-agency{
        padding: 40px 0 10px;
    }

    .agency-social-item{
        padding: 20px 30px 20px 50px;
        margin: 20px 0 30px 20px;
    }

    .agency-social-item .icon-box{
        top: -20px;
        left: -20px;
    }

    .agency-social-item .icon-box a{
        width: 60px;
        height: 60px;
    }

    .agency-social-item .icon-box i{
        font-size: 30px;
    }

    .agency-social-content h3{
        font-size: 20px;
    }

    .how-it-work{
        padding: 40px 0 10px;
    }

    .how-it-work::before{
        top: 0;
        width: 240px;
        height: 280px;
    }

    .work-process-item{
        padding: 30px;
    }

    .work-process-header{
        margin-bottom: 30px;
    }

    .work-process-title h3{
        font-size: 20px;
    }

    .work-process-content{
        margin-bottom: 40px;
    }

    .work-process-body{
        padding-top: 10px;
    }

    .work-process-no h3{
        font-size: 20px;
    }

    .work-process-no h2{
        font-size: 34px;
    }

    .work-process-icon-box{
        padding: 30px;
    }

    .work-process-icon-box img{
        max-width: 50px;
    }

    .our-features{
        padding: 40px 0;
    }

    .our-features::before{
        top: 15%;
        width: 250px;
        height: 225px;
    }

    .digital-features-box{
        gap: 30px;
    }

    .digital-features-item.features-item-1{
        width: calc(55% - 15px);
    }

    .digital-features-item.features-item-2{
        width: calc(45% - 15px);
    }

    .digital-features-item{
        padding: 30px;
    }

    .digital-features-content h3{
        font-size: 20px;
    }

    .digital-features-image{
        margin-bottom: 30px;
    }

    .digital-features-item.features-item-1 .digital-features-image img{
        aspect-ratio: 1 / 0.62;
    }

    .digital-features-item.agency-supports{
        padding: 30px 0;
    }

    .agency-supports-header{
        margin-bottom: 30px;
        padding: 0 30px;
    }

    .agency-supports-content{
        width: 70%;
    }

    .agency-supports-content h3{
        font-size: 20px;
    }

    .agency-free-consultation{
        width: 30%;
    }

    .agency-free-consultation img{
        max-width: 80px;
    }

    .agency-supports-logo{
        padding: 20px 25px;
    }

    .agency-supports-logo img{
        max-height: 25px;
    }

    .our-portfolio{
        padding: 40px 0 10px;
    }

    .our-Project-nav{
        margin-bottom: 40px;
    }

    .our-Project-nav ul{
        gap: 10px 20px;
    }

    .our-Project-nav ul li a{
        font-size: 14px;
        padding: 10px 15px;
    }

    .project-item{
        height: calc(100% - 30px);
        margin-bottom: 30px;
    }

    .project-btn a{
        width: 80px;
        height: 80px;
    }

    .project-btn a img{
        max-width: 34px;
    }

    .project-content h3{
        font-size: 20px;
    }

    .our-testimonial{
        padding: 40px 0;
    }

    .our-testimonial::before{
        width: 250px;
        height: 245px;
    }

    .testimonial-review-box{
        padding: 30px;
        margin-bottom: 30px;
    }

    .testimonial-review-content,
    .testimonial-review-header{
        margin-bottom: 20px;
    }

    .testimonial-review-header h2{
        font-size: 60px;
    }

    .testimonial-review-content h3{
        font-size: 20px;
    }

    .testimonial-slider{
        margin-left: 0px;
    }

    .testimonial-company-logo{
        margin-bottom: 20px;
    }

    .testimonial-content{
        margin-bottom: 30px;
    }

    .testimonial-content p{
        font-size: 20px;
    }

    .author-content h3{
        font-size: 20px;
    }

    .testimonial-slider .testimonial-button-next,
    .testimonial-slider .testimonial-button-prev{
        width: 50px;
        height: 50px;
    }

    .testimonial-slider .testimonial-button-next::before,
    .testimonial-slider .testimonial-button-prev::before{
        background-size: 24px auto;
    }

    .testimonial-benefits-box{
        gap: 20px;
        margin-top: 50px;
        padding: 30px 15px;
    }

    .testimonial-benefits-item{
        width: calc(25% - 15px);
    }

    .testimonial-benefits-item::before{
        right: -10px;
    }

    .testimonial-benefits-item .icon-box{
        margin-bottom: 20px;
    }

    .testimonial-benefits-content h3{
        font-size: 20px;
        margin-bottom: 15px;
    }

    .testimonial-benefits-content ul li{
        font-size: 14px;
        padding-left: 18px;
        margin-bottom: 10px;
    }

    .testimonial-benefits-content ul li::before{
        font-size: 14px;
    }

    .agency-benefits{
        padding: 40px 0 10px;
    }

    .agency-benefits::before{
        width: 210px;
        height: 220px;
    }
    
    .benefits-steps-item{
        padding: 20px;
    }

    .benefits-steps-item .icon-box,
    .benefits-steps-no{
        margin-bottom: 30px;
    }

    .benefits-steps-item .icon-box img{
        max-width: 50px;
    }

    .benefits-steps-content h3{
        font-size: 20px;
    }

    .our-blog{
        padding: 40px 0 10px;
    }

    .post-featured-image{
        margin-bottom: 20px;
    }

    .post-item-content{
        margin-bottom: 15px;
    }

    .post-item-content h3{
        font-size: 20px;
    }

    .footer-work-together{
        padding: 40px 0;
    }

    .footer-work-together::before{
        top: 0;
        width: 245px;
        height: 355px;
    }

    @keyframes circlmoveerotate{
        from{
            transform: translateY(0) rotate(0deg);
          }
        to{
            transform: translateY(100px) rotate(360deg);
        }
    }

    .work-together-content{
        background-size: cover;
    }

    .footer-work-together h3{
        font-size: 20px;
        margin-bottom: 10px;
    }

    .footer-work-together h2{
        font-size: 120px;
    }

    .footer-work-together .work-together-btn a{
        width: 120px;
        height: 120px;
    }

    .footer-main{
        padding: 40px 0 0;
    }

    .footer-logo{
        margin-bottom: 40px;
    }

    .footer-contact-item{
        margin-bottom: 20px;
    }

    .footer-contact-content p{
        font-size: 20px;
    }

    .footer-newsletter-form h3,
    .footer-links h3{
        font-size: 20px;
        margin-bottom: 20px;
    }

    .footer-links ul li{
        margin-bottom: 10px;
    }

    .footer-newsletter-form{
        margin-top: 30px;
    }

    .footer-newsletter-form .form-group .form-control{
        width: 80%;
    }

    .footer-social-links{
        margin-top: 30px;
    }

    .footer-copyright{
        padding: 30px 0;
        margin-top: 40px;
    }

    .page-header{
        padding: 182px 0 80px;
    }

    .page-header-box h1{
        font-size: 70px;
    }

    .page-header-box ol li.breadcrumb-item{
        font-size: 16px;
    }

    .our-scrolling-ticker.subpages-scrolling-ticker .scrolling-content span{
        font-size: 20px;
    }

    .our-approach{
        padding: 40px 0 10px;
    }

    .mission-vision-item{
        padding: 30px;
    }

    .mission-vision-image{
        margin-bottom: 15px;
    }

    .mission-vision-item .mission-vision-content h3{
        font-size: 20px;
        margin-bottom: 15px;
    }

    .who-we-are{
        padding: 40px 0;
    }

    .who-we-are::before{
        top: -13%;
        width: 210px;
        height: 220px;
    }

    .who-we-are .who-we-are-content{
        padding-right: 0px;
        margin-bottom: 30px;
    }
    .experts-counters-list {
        gap: 0;
        margin-top: 20px;
    }
    .experts-counter-box{
        width: calc(50% - 20px);
        gap: 40px;
    }

    .experts-counter-box:nth-child(even){
        margin-top: 40px;
    }

    .experts-counter-content h2{
        font-size: 40px;
    }

    .executive-partners{
        padding: 40px 0;
    }

    .executive-partners-box{
        padding: 50px;
    }

    .executive-partners-box .section-title{
        margin-bottom: 30px;
    }

    .our-team{
        padding: 40px 0 10px;
    }

    .our-team::before{
        top: -5%;
        width: 250px;
        height: 280px;
    }

    .team-image figure, .team-image img{
        aspect-ratio: 1 / 1.3;
    }
    .team-content h3 {
        font-size: 16px;
    }

    .our-faqs{
        padding: 40px 0;
    }

    .faq-images{
        max-width: 80%;
        margin: 0 auto 30px;
        padding: 100px 80px 0 0;
    }

    .faq-img-1 img{
        max-width: 285px;
    }

    .faq-img-2 img{
        aspect-ratio: 1 / 0.9;
    }

    .our-faq-section .accordion-header .accordion-button{
        font-size: 20px;
    }

    .page-services{
        padding: 80px 0 10px;
    }

    .page-service-single{
        padding: 80px 0 40px;
    }

    .page-service-single::before{
        width: 300px;
        height: 330px;
    }

    .page-service-single::after{
        width: 250px;
        height: 280px;
    }

    .service-single-content{
        margin: 0 0 40px 0;
    }

    .service-feature-image{
        margin-bottom: 30px;
    }

    .service-feature-image img{
        aspect-ratio: 1 / 0.59;
    }

    .service-entry{
        margin-bottom: 30px;
    }

    .service-entry h2{
        font-size: 40px;
    }

    .service-entry-list-image{
        margin: 30px 0;
        gap: 20px;
    }

    .service-entry-list{
        width: calc(55% - 10px);
    }

    .service-entry-list ul li{
        margin-bottom: 15px;
        padding-left: 25px;
    }

    .service-entry-list ul li::before{
        font-size: 16px;
    }

    .service-entry-image{
        width: calc(45% - 10px);
    }

    .process-step-content{
        padding: 30px;
    }

    .process-step-header{
        margin-bottom: 50px;
    }

    .process-step-header .icon-box img{
        max-width: 48px;
    }

    .process-step-no h3{
        font-size: 20px;
    }

    .process-step-body h3{
        font-size: 20px;
    }

    .process-step-image img{
        aspect-ratio: 1 / 0.8;
    }

    .service-sidebar{
        position: initial;
    }

    .service-catagery-list{
        margin-bottom: 40px;
    }

    .service-catagery-list h3{
        font-size: 20px;
        padding: 30px 30px 20px;
    }

    .service-catagery-list ul{
        padding: 20px 30px 30px;
    }

    .service-catagery-list ul li{
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .sidebar-cta-box{
        padding: 30px;
    }

    .sidebar-cta-box .icon-box{
        margin-bottom: 30px;
    }

    .sidebar-cta-box .icon-box img{
        max-width: 50px;
    }

    .cta-contact-content h3{
        font-size: 20px;
        margin-bottom: 10px;
    }

    .page-blog{
        padding: 80px 0 40px;
    }
    
    .page-blog::before{
        width: 300px;
        height: 330px;
    }
    
    .post-item{
        height: calc(100% - 30px);
        margin-bottom: 30px;
    }

    .page-pagination{
        margin-top: 10px;
    }

    .page-single-post{
        padding: 80px 0 40px;
    }

    .post-image{
        margin-bottom: 20px;
    }

    .post-entry blockquote{
        background-position: 25px 25px;
        background-size: 50px;
        padding: 25px 25px 25px 90px;
        margin-bottom: 20px;
    }

    .post-entry blockquote p{
        font-size: 18px;
    }

    .post-entry h2{
        font-size: 40px;
    }

    .post-entry ul li{
        font-size: 16px;
    }

    .post-tags{
        margin-bottom: 20px;
    }

    .post-social-sharing ul{
        text-align: left;
    }

    .tag-links{
        font-size: 22px;
    }

    .post-tags .tag-links a{
        font-size: 16px;
        padding: 6px 15px;
    }

    .page-project{
        padding: 80px 0 10px;
    }

    .page-project::before{
        width: 300px;
        height: 330px;
    }

    .page-project-single{
        padding: 80px 0 40px;
    }

    .page-project-single::before{
        top: 20%;
        width: 210px;
        height: 220px;
    }

    .page-project-single::after{
        width: 250px;
        height: 280px;
    }

    .project-single-content{
        margin-right: 0;
        margin-bottom: 30px;
    }

    .project-single-image{
        margin-bottom: 30px;
    }

    .project-single-content img{
        aspect-ratio: 1 / 0.57;
    }

    .project-challenges,
    .project-info,
    .project-entry{
        margin-bottom: 30px;
    }

    .project-entry p{
        margin-bottom: 20px;
    }

    .project-entry h2{
        font-size: 40px;
        margin-bottom: 20px;
    }

    .project-entry ul li{
        margin-bottom: 15px;
        padding-left: 25px;
    }

    .project-entry ul li::before{
        font-size: 16px;
    }

    .project-solution-rating{
        margin-top: 0;
    }

    .project-counter-content h3{
        font-size: 34px;
    }

    .project-sidebar{
        position: initial;
    }

    .project-catagery-list{
        margin-bottom: 40px;
    }

    .category-item-list{
        padding: 30px 30px 20px;
    }

    .category-list-item h3{
        font-size: 20px;
        margin-bottom: 5px;
    }

    .category-social-link{
        padding: 30px;
    }

    .category-social-link .social-links{
        font-size: 20px;
    }

    .page-team{
        padding: 80px 0 10px;
    }

    .page-team::before{
        width: 245px;
        height: 355px;
    }

    .page-team-single{
        padding: 80px 0 40px;
    }

    .page-team-single::before{
        top: 40%;
        width: 250px;
        height: 280px;
    }

    .team-single-content{
        margin-right: 0;
    }

    .team-info-box{
        margin-bottom: 40px;
    }

    .team-info-header{
        align-items: center;
        margin-bottom: 30px;
    }

    .team-single-content h2{
        font-size: 40px;
    }

    .team-contact-box{
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .team-contact-box .icon-box{
        width: 65px;
        height: 65px;
    }

    .team-contact-box .icon-box img{
        max-width: 30px;
    }

    .team-contact-content{
        width: calc(100% - 95px);
    }

    .team-contact-content h3{
        font-size: 20px;
        margin-bottom: 5px;
    }

    .team-personal-info{
        margin-bottom: 40px;
    }

    .team-career-list{
        margin-top: 20px;
    }

    .team-career-list ul{
        row-gap: 15px;
    }

    .team-single-sidebar{
        position: initial;
        margin-bottom: 30px;
    }

    .team-single-image{
        margin-bottom: 40px;
    }

    .team-single-image img{
        aspect-ratio: 1 / 0.8;
        object-position: top center;
    }

    .team-single-contact-form h3{
        font-size: 28px;
        padding: 30px;
    }

    .team-single-contact-form form{
        padding: 30px;
    }

    .page-pricing{
        padding: 80px 0 40px;
    }

    .pricing-box-list{
        gap: 30px;
    }

    .pricing-box{
        width: calc(50% - 15px);
        padding: 30px;
    }

    .pricing-box-content{
        gap: 15px;
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .pricing-title{
        width: calc(52% - 7.5px);
    }

    .pricing-title h3{
        font-size: 26px;
        margin-bottom: 5px;
    }

    .pricing-price{
        width: calc(48% - 7.5px);
    }
    
    .pricing-price h2{
        font-size: 40px;
    }

    .pricing-price h2 sup{
        font-size: 20px;
    }

    .pricing-price h2 sub{
        font-size: 14px;
    }

    .pricing-list ul{
        gap: 15px;
    }

    .pricing-list ul li{
        width: 100%;
    }

    .pricing-list{
        margin-bottom: 30px;
    }

    .page-testimonial{
        padding: 80px 0 40px;
    }

    .testimonial-box-list{
        gap: 40px;
    }

    .testimonial-box-item{
        padding: 40px 30px;
        gap: 30px;
    }

    .client-author-image{
        width: calc(32% - 15px);
    }

    .client-testimonial-content{
        width: calc(68% - 15px);
    }

    .client-testimonial-rating{
        margin-bottom: 10px;
    }

    .client-testimonial-info p{
        font-size: 18px;
    }

    .client-author-title h3{
        font-size: 20px;
    }

    .page-gallery{
        padding: 80px 0 10px;
    }

    .page-video-gallery{
        padding: 80px 0 10px;
    }

    .page-faqs{
        padding: 80px 0 40px;
    }

    .page-faqs-catagery{
        margin-right: 0px;
    }

    .page-faq-accordion{
        margin-bottom: 40px;
    }

    .faq-sidebar{
        position: initial;
        margin-bottom: 30px;
    }

    .faq-catagery-list{
        margin-bottom: 40px;
    }

    .faq-catagery-list ul{
        padding: 30px;
    }

    .faq-catagery-list ul li{
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .page-contact-us{
        padding: 80px 0 40px;
    }

    .contact-information{
        margin-bottom: 30px;
    }

    .contact-info-box{
        gap: 20px;
    }

    .contact-info-box .info-box-1, 
    .contact-info-box .info-box-2{
        padding: 20px 30px;
    }

    .contact-info-item .icon-box{
        margin-bottom: 20px;
    }

    .contact-info-item .icon-box img{
        max-width: 40px;
    }

    .contact-info-box .info-box-2 .contact-item-content{
        width: calc(100% - 70px);
    }

    .contact-item-content h3{
        font-size: 20px;
    }

    .contact-us-form{
        margin: 0;
        padding: 30px;
    }

    .google-map{
        padding: 40px 0;
    }

    .google-map-iframe,
    .google-map-iframe iframe{
        height: 450px;
    }

    .error-page{
        padding: 80px 0 40px;
    }
    
    .error-page-image{
        margin-bottom: 20px;
    }

    .error-page-image img{
        max-width: 80%;
    }

    .error-page-content-heading{
        margin-bottom: 15px;
    }

    .error-page-content-body p{
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 767px){

    body{
        background-size: 200% auto;
    }

    .section-title h1{
        font-size: 34px;
    }

    .section-title h2{
        font-size: 30px;
    }

    .hero-content{
        text-align: center;
    }

    .hero-content .section-title{
        margin-bottom: 30px;
    }

    .hero-content-body{
        display: block;
    }

    .hero-content-video{
        width: 100%;
        justify-content: center;
    }

    .hero-content-video .video-play-button a {
        height: 60px;
        width: 60px;
    }

    .hero-content-video .video-play-button a i{
        font-size: 25px;
    }

    .learn-more-circle img{
        max-width: 80px;
    }

    .hero-video-content{
        width: 100%;
    }

    .scrolling-ticker-box{
        --gap: 20px;
    }

    .scrolling-content span {
        font-size: 20px;
    }
    .scrolling-content span img{
        max-width: 20px;
        margin-right: 20px;
    }

    .about-agency::before{
        width: 250px;
        height: 280px;
    }

    .about-agency-list{
        padding-left: 20px;
    }

    .agency-item-content h3:after{
        left: -30px;
    }

    .agency-item-content h3{
        font-size: 18px;
    }

        .service-item {
        padding: 10px;
    }
    .service-item-body h3{
        font-size: 18px;
    }

    .service-footer p{
        font-size: 12px;
    }

    .digital-success-box{
        gap: 30px;
        padding: 40px 30px;
    }

    .digital-success-box::before{
        left: 10px;
        top: 10px;
        border-radius: 20px;
        width: calc(100% - 20px);
        height: calc(100% - 10px);
    }

    .success-counter-box{
        gap: 20px;
    }

    .success-counter-item{
        width: 100%;
    }

    .success-counter-item h2{
        font-size: 30px;
    }

    .success-list-item{
        background-size: 18px auto;
        margin-bottom: 30px;
    }

    .success-list-item p span{
        font-size: 18px;
    }

    .why-choose-us::before{
        top: 30%;
        width: 200px;
        height: 230px;
    }

    .why-choose-item h3{
        font-size: 18px;
    }

    .agency-social-item{
        margin: 15px 0 30px 15px;
    }

    .agency-social-item .icon-box{
        top: -15px;
        left: -15px;
    }

    .agency-social-item .icon-box a{
        width: 50px;
        height: 50px;
    }

    .agency-social-item .icon-box i{
        font-size: 20px;
    }

    .agency-social-content h3{
        font-size: 18px;
    }

    .how-it-work::before{
        width: 180px;
        height: 220px;
    }

    .work-process-header{
        margin-bottom: 20px;
    }

    .work-process-title h3{
        font-size: 18px;
    }

    .work-process-content{
        margin-bottom: 30px;
    }

    .work-process-body{
        padding-top: 20px;
    }

    .work-process-no h3{
        font-size: 18px;
    }

    .work-process-no h2{
        font-size: 28px;
    }

    .our-features::before{
        right: -70px;
        top: 13%;
        width: 150px;
        height: 135px;
    }

    .digital-features-item.features-item-2,
    .digital-features-item.features-item-1{
        width: 100%;
    }

    .digital-features-item.features-item-1 .digital-features-image img{
        aspect-ratio: 1 / 0.72;
    }

    .digital-features-item{
        padding: 20px;
    }

    .digital-features-image{
        margin-bottom: 20px;
    }

    .digital-features-content h3{
        font-size: 18px;
    }

    .agency-supports-header{
        display: block;
    }

    .agency-supports-content,
    .agency-free-consultation{
        width: 100%;
    }

    .agency-supports-content h3{
        font-size: 18px;
    }

    .agency-free-consultation{
        text-align: left;
        margin-top: 20px;
    }

    .agency-supports-slider::before{
        background: linear-gradient(280deg, #030709 0%, rgba(3, 7, 9, 0) 60.97%);
        width: 150px;
    }

    .agency-supports-slider::after{
        background: linear-gradient(90deg, #030709 0%, rgba(3, 7, 9, 0) 60.97%);
        width: 150px;
    }

    .project-btn a{
        width: 60px;
        height: 60px;
    }

    .project-btn a img{
        max-width: 26px;
    }

    .project-content h3{
        font-size: 18px;
    }

    .testimonial-review-box{
        padding: 20px;
    }

    .testimonial-review-header h2{
        font-size: 40px;
    }

    .testimonial-review-content h3{
        font-size: 18px;
    }

    .testimonial-company-logo,
    .testimonial-rating{
        margin-bottom: 15px;
    }

    .testimonial-content p{
        font-size: 18px;
    }

    .author-content h3{
        font-size: 18px;
    }

    .testimonial-btn{
        position: relative;
        justify-content: center;
        margin-top: 30px;
    }

    .testimonial-slider .testimonial-button-next,
    .testimonial-slider .testimonial-button-prev{
        width: 45px;
        height: 45px;
    }

    .testimonial-benefits-box{
        gap: 30px;
        padding: 30px 20px;
    }

    .testimonial-benefits-item{
        width: 100%;
    }

    .testimonial-benefits-item::before{
        top: auto;
        bottom: -15px;
        right: 0;
        border-right: none;
        border-bottom: 1px solid var(--divider-color);
        width: 100%;
        height: 1px;
        z-index: 1;
    }

    .testimonial-benefits-item:last-child:before{
        display: none;
    }

    .testimonial-benefits-content h3{
        font-size: 18px;
        margin-bottom: 10px;
    }

    .benefits-steps-item .icon-box,
    .benefits-steps-no{
        margin-bottom: 20px;
    }

    .benefits-steps-no h3{
        font-size: 18px;
    }

    .benefits-steps-content h3{
        font-size: 18px;
    }

    .post-item-content h3{
        font-size: 18px;
    }

    .footer-work-together::before{
        left: -90px;
        width: 180px;
        height: 190px;
    }

    .footer-work-together h3{
        font-size: 18px;
    }

    .footer-work-together h2{
        font-size: 55px;
    }

    .work-together-btn{
        top: 56%;
    }

    .footer-work-together .work-together-btn a{
        width: 85px;
        height: 85px;
    }

    .footer-work-together .work-together-btn a span{
        font-size: 12px;
    }

    .about-footer{
        margin-bottom: 30px;
    }

    .footer-contact-content p{
        font-size: 18px;
    }

    .footer-logo{
        margin-bottom: 30px;
    }

    .footer-newsletter-form h3,
    .footer-links h3{
        font-size: 18px;
        margin-bottom: 15px;
    }

    .footer-newsletter-form .form-group .form-control{
        width: 57%;
    }

    .footer-copyright{
        padding: 20px 0;
        margin-top: 30px;
    }

    .page-header-box h1{
        font-size: 34px;
    }

    .our-scrolling-ticker.subpages-scrolling-ticker .scrolling-content span{
        font-size: 18px;
    }

    .our-scrolling-ticker.subpages-scrolling-ticker .scrolling-content span img{
        max-width: 16px;
    }

    .mission-vision-item{
        padding: 20px;
    }

    .mission-vision-item .mission-vision-content h3{
        font-size: 18px;
    }

    .experts-rating-video-image{
        width: 100%;
        margin-bottom: 20px;
    }

    .who-we-are-client{
        width: 100%;
        padding-left: 0px;
    }

    .experts-counter-box{
        width: 100%;
        gap: 0px;
    }

    .experts-counter-box:nth-child(even){
        margin-top: 0px;
    }

    .experts-counter-item {
        padding: 20px;
        margin-bottom: 10px;
    }
    .experts-counter-box.expert-box-2 .experts-counter-item:nth-child(odd){
        background: url(../images/who-we-are-counter-bg.png);
    }

    .experts-counter-box.expert-box-2 .experts-counter-item:nth-child(even){
        background: transparent;
    }

    .experts-counter-content h2{
        font-size: 30px;
    }

    .executive-partners-box{
        padding: 30px;
    }

    .our-partners-list{
        gap: 20px;
    }

    .our-partners-list .company-logo{
        width: calc(50% - 10px);
        padding: 15px;
    }

    .faq-images{
        max-width: 100%;
        padding: 80px 50px 0 0;
    }

    .faq-img-1 img{
        max-width: 185px;
    }

    .faq-cta-box a{
        font-size: 14px;
        padding: 8px 15px;
    }

    .our-faq-section .accordion-item{
        margin-bottom: 20px;
    }

    .our-faq-section .accordion-header .accordion-button{
        font-size: 18px;
        padding: 12px 40px 12px 12px;
    }

    .our-faq-section .accordion-item .accordion-button::after,
    .our-faq-section .accordion-item .accordion-button.collapsed::after{
        right: 12px;
        font-size: 12px;
        width: 20px;
        height: 20px;
    }

    .our-faq-section .accordion-item .accordion-body{
        padding: 0 12px 12px 12px;
    }

    .page-service-single::before{
        width: 250px;
        height: 280px;
    }

    .page-service-single::after{
        width: 250px;
        height: 280px;
    }

    .service-feature-image img{
        aspect-ratio: 1 / 0.78;
    }

    .service-entry h2{
        font-size: 30px;
    }

    .service-entry-list-image{
        gap: 30px;
    }

    .service-entry-list,
    .service-entry-image{
        width: 100%;
    }

    .service-entry-list ul li{
        font-size: 14px;
        padding-left: 20px;
    }

    .service-entry-list ul li::before{
        font-size: 14px;
    }

    .service-entry-image img{
        aspect-ratio: 1 / 0.68;
        object-position: top center;
    }

    .service-process-steps{
        gap: 20px;
        margin: 0;
    }

    .process-step-item{
        gap: 20px;
    }

    .process-step-content,
    .process-step-image{
        width: 100%;
    }

    .process-step-content{
        padding: 20px;
    }

    .process-step-header{
        margin-bottom: 50px;
    }

    .process-step-header .icon-box img{
        max-width: 36px;
    }

    .process-step-no h3{
        font-size: 18px;
    }

    .process-step-body h3{
        font-size: 18px;
        margin-bottom: 15px;
    }

    .process-step-image img{
        aspect-ratio: 1 / 0.72;
    }

    .service-catagery-list{
        margin-bottom: 30px;
    }

    .service-catagery-list h3{
        font-size: 18px;
        padding: 20px;
    }

    .service-catagery-list ul{
        padding: 20px;
    }

    .service-catagery-list ul li{
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .service-catagery-list ul li a::before{
        width: 22px;
        height: 22px;
    }
    
    .sidebar-cta-box{
        padding: 20px;
    }

    .sidebar-cta-box .icon-box{
        margin-bottom: 25px;
    }

    .sidebar-cta-box .icon-box img{
        max-width: 40px;
    }

    .cta-contact-content h3{
        font-size: 18px;
    }

    .cta-contact-btn a{
        padding: 10px 25px;
    }

    .cta-contact-btn a img{
        max-width: 22px;
        margin-right: 10px;
    }

    .page-blog::before{
        width: 250px;
        height: 280px;
    }

    .post-image figure,
    .post-image img{
        aspect-ratio: 1 / 0.70;
    }

    .post-entry blockquote{
        background-position: 20px 20px;
        padding: 70px 20px 20px 20px;
    }
    
    .post-entry h2{
        font-size: 28px;
    }

    .tag-links{
        font-size: 20px;
    }

    .page-project::before{
        width: 250px;
        height: 280px;
    }

    .page-project-single::before{
        width: 210px;
        height: 220px;
    }

    .page-project-single::after{
        top: 53%;
        width: 200px;
        height: 230px;
    }

    .project-single-content{
        margin-bottom: 20px;
    }

    .project-single-content img{
        aspect-ratio: 1 / 0.67;
    }

    .project-entry h2{
        font-size: 30px;
    }

    .project-entry ul li{
        font-size: 14px;
        margin-bottom: 10px;
    }

    .project-solution-rating{
        gap: 15px;
    }

    .project-rating-counter .icon-box i{
        font-size: 36px;
    }

    .project-counter-content{
        width: calc(100% - 56px);
    }

    .project-counter-content h3{
        font-size: 28px;
    }

    .project-rating-content,
    .project-rating-counter{
        width: 100%;
    }

    .category-item-list{
        padding: 20px;
    }

    .category-list-item{
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .category-list-item h3{
        font-size: 18px;
    }

    .category-social-link{
        padding: 20px;
    }

    .category-social-link span{
        font-size: 20px;
    }

    .page-team::before{
        width: 180px;
        height: 190px;
    }

    .page-team-single::before{
        width: 200px;
        height: 230px;
    }

    .team-info-box{
        margin-bottom: 30px;
    }

    .team-info-header{
        margin-bottom: 30px;
        gap: 10px;
    }

    .team-info-title,
    .team-info-social-list{
        width: 100%;
    }

    .team-info-social-list ul{
        text-align: left;
    }

    .team-single-content p{
        margin-bottom: 15px;
    }

    .team-single-content h2{
        font-size: 30px;
    }

    .team-contact-box{
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .team-contact-box .icon-box{
        margin-right: 20px;
    }

    .team-contact-content{
        width: calc(100% - 85px);
    }

    .team-contact-content h3{
        font-size: 18px;
    }

    .team-personal-info{
        margin-bottom: 30px;
    }

    .team-career-list ul{
        gap: 10px;
    }

    .team-career-list ul li{
        width: 100%;
        padding-left: 25px;
    }

    .team-career-list ul li::before{
        font-size: 16px;
    }

    .team-single-image{
        margin-bottom: 25px;
    }

    .team-single-image img{
        aspect-ratio: 1 / 1.08;
    }

    .team-single-contact-form h3{
        font-size: 30px;
        padding: 20px;
    }

    .team-single-contact-form form{
        padding: 20px;
    }

    .pricing-box{
        width: 100%;
        padding: 20px;
    }

    .pricing-box-content{
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .pricing-title h3{
        font-size: 22px;
    }

    .pricing-price h2{
        font-size: 30px;
    }

    .pricing-price h2 sup{
        font-size: 16px;
    }

    .pricing-list ul li{
        padding-left: 25px;
    }

    .pricing-list ul li::before{
        font-size: 16px;
    }

    .testimonial-box-item{
        padding: 20px 15px;
        gap: 20px;
        text-align: center;
    }

    .client-author-image{
        width: 100%;
        max-width: 120px;
        margin: 0 auto;
    }

    .client-testimonial-content{
        width: 100%;
    }

    .client-testimonial-info p{
        font-size: 16px;
    }

    .client-author-content{
        gap: 15px;
    }

    .client-author-title,
    .client-author-logo{
        width: 100%;
        text-align: center;
    }

    .client-author-title h3{
        font-size: 18px;
    }

    .page-faq-accordion{
        margin-bottom: 30px;
    }

    .faq-catagery-list{
        margin-bottom: 30px;
    }

    .faq-catagery-list ul{
        padding: 20px;
    }

    .contact-info-box .info-box-1,
    .contact-info-box .info-box-2{
        padding: 20px;
        gap: 40px;
    }

    .contact-info-box .info-box-1 .contact-info-item::before{
        top: auto;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 20px);
        height: 1px;
        width: 100%;
    }

    .contact-info-box .info-box-1 .contact-info-item:nth-child(2n + 2):before{
        display: block;
    }

    .contact-info-box .info-box-1 .contact-info-item:last-child:before{
        display: none;
    }

    .contact-info-box .info-box-1 .contact-info-item{
        display: flex;
        width: 100%;
    }

    .contact-info-item .icon-box img{
        max-width: 32px;
    }

    .contact-info-box .info-box-1 .icon-box,
    .contact-info-box .info-box-2 .icon-box{
        margin: 0 25px 0 0;
    }

    .contact-info-box .info-box-1 .contact-item-content,
    .contact-info-box .info-box-2 .contact-item-content{
        width: calc(100% - 57px);
        text-align: left;
    }

    .contact-item-content h3{
        font-size: 18px;
    }

    .contact-us-form{
        padding: 20px;
    }

    .google-map-iframe,
    .google-map-iframe iframe{
        height: 350px;
    }
}
a.navbar-brand {
    width: 25%;
}
    .navbar-expand-lg .navbar-collapse {
        justify-content: right !important;
    }



.kwi-premium-hero {
    /* min-height: 100vh; */
    padding: 150px 0 50px;
   
    position: relative;
    overflow: hidden;
}

.kwi-premium-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.04) 1px, transparent 1px);
  background-size:80px 80px;
}

.kwi-content{
  position:relative;
  z-index:2;
}

.kwi-tag{
  display:inline-block;
  padding:10px 18px;
  border-radius:50px;
  background:rgba(255,189,64,.12);
  border:1px solid rgba(255,204,90,.45);
  color:#ffd36b;
  font-weight:700;
  margin-bottom:24px;
}
.kwi-content h1 {
    font-size: 43px;
    line-height: 1.08;
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
}

.kwi-content h1 span{
  display:inline-block;
  background:linear-gradient(90deg,#ffd36b,#fff1b0,#c9902d);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.kwi-content p{
  color:#dce4ea;
  font-size:18px;
  line-height:1.7;
  margin-bottom:36px;
}

.kwi-visual-box{
  position:relative;
  min-height:560px;
  z-index:2;
}
.kwi-shape {
    position: absolute;
    width: 470px;
    height: 470px;
    right: 40px;
    top: 55px;
    border-radius: 38px;
    background: linear-gradient(135deg, #5b3505, #b77716, #ffd76a, #fff2a8, #c4871d, #6a4007);
    box-shadow: 0 35px 90px rgba(0, 0, 0, .35);
}

.kwi-hero-img {
    position: absolute;
    right: 60px;
    bottom: 0;
    /* max-height: 560px; */
    z-index: 3;
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, .45));
    border-radius: 50px;
}
.kwi-floating-card{
  position:absolute;
  z-index:4;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(12px);
  border-radius:18px;
  padding:18px 24px;
  color:#fff;
  box-shadow:0 20px 50px rgba(0,0,0,.25);
  animation:float 3s ease-in-out infinite;
}

.kwi-floating-card h3{
  color:#ffd36b;
  font-size:34px;
  margin:0;
}

.kwi-floating-card p{
  margin:0;
  font-weight:700;
}

.card-one{
  left:40px;
  top:120px;
}

.card-two{
  right:0;
  bottom:120px;
}

@keyframes float{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-14px);}
}

@media(max-width:991px){
     .kwi-content h1 {
        font-size: 24px;
    }

      .kwi-visual-box {
        min-height: 480px;
        margin-top: 0;
    }

     .kwi-shape {
        width: 330px;
        height: 380px;
        right: 0;
    }

    .kwi-hero-img {
        max-height: 450px;
        right: 0;
        top: 86px;
    }
}


.footer-logo img {
    width: 50%;
    padding-bottom: 18px;
}
.footer-main{
  position:relative;
  overflow:hidden;
  z-index:1;
}

.footer-main::before{
  content:"₹ ₹ ₹ ₹ ₹ ₹ ₹ ₹ ₹ ₹";
  position:absolute;
  top:-80px;
  left:-120px;
  width:130%;
  height:130%;
  color:rgba(255,211,107,.08);
  font-size:72px;
  font-weight:900;
  letter-spacing:75px;
  line-height:150px;
  transform:rotate(-18deg);
  animation:footerRupeeMove 18s linear infinite;
  pointer-events:none;
  z-index:-1;
}

.footer-main::after{
  content:"₹ ₹ ₹ ₹ ₹ ₹ ₹ ₹";
  position:absolute;
  top:20px;
  left:-80px;
  width:130%;
  height:130%;
  color:rgba(255,255,255,.035);
  font-size:46px;
  font-weight:800;
  letter-spacing:115px;
  line-height:130px;
  transform:rotate(12deg);
  animation:footerRupeeMoveReverse 22s linear infinite;
  pointer-events:none;
  z-index:-1;
}

.footer-main .container{
  position:relative;
  z-index:2;
}

@keyframes footerRupeeMove{
  0%{
    transform:translateX(-8%) translateY(0) rotate(-18deg);
  }
  100%{
    transform:translateX(8%) translateY(-35px) rotate(-18deg);
  }
}

@keyframes footerRupeeMoveReverse{
  0%{
    transform:translateX(8%) translateY(0) rotate(12deg);
  }
  100%{
    transform:translateX(-8%) translateY(-45px) rotate(12deg);
  }
}

.kwi-cta-footer .work-together-box {
    padding: 50px;
    /* background: radial-gradient(circle at 15% 20%, rgba(255, 211, 107, .35), transparent 28%), linear-gradient(135deg, #08042b, #16064a, #050326); */
    box-shadow: 19px 11px 70px rgb(236 198 99 / 26%);
    border-radius: 50px;
}
.kwi-cta-footer .work-together-box::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.06) 1px, transparent 1px);
  background-size:55px 55px;
  opacity:.6;
}
.kwi-cta-footer .work-together-content span{
  display:inline-block;
  color:#ffd36b;
  font-weight:800;
  margin-bottom:12px;
}
.kwi-cta-footer .work-together-content h2 {
    color: #fff;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 900;
    margin-bottom: 12px;
}
.kwi-cta-footer .work-together-content p{
  color:#d7d7ef;
  font-size:17px;
}
.kwi-cta-footer .work-together-btn{
  position:relative;
  z-index:2;
}

.kwi-cta-footer .work-together-btn a{
  display:inline-flex;
  align-items:center;
  gap:12px;
  padding:17px 30px;
  border-radius:50px;
  color:#111;
  font-weight:900;
  text-decoration:none;
  background:linear-gradient(135deg,#8a570d,#e6ad3d,#fff0a0,#bd7c14);
  box-shadow:0 0 25px rgba(255,211,107,.45);
}

.kwi-cta-footer .work-together-btn a:hover{
  transform:translateY(-3px);
  box-shadow:0 0 35px rgba(255,211,107,.75);
}

@media(max-width:991px){
  .kwi-cta-footer .work-together-box{
    flex-direction:column;
    align-items:flex-start;
    padding:40px 25px;
  }

  .kwi-cta-footer .work-together-content h2{
    font-size:20px;
  }
}
.service-item-body a {
    /*margin-top: 15px;*/
}

.gold-course-title{
  text-align:center;
  margin-bottom:70px;
}

.gold-course-title h2{
  font-size:46px;
  line-height:1.25;
  color:#09082a;
  font-weight:500;
}

.gold-course-title h2 span{
  display:block;
  font-weight:900;
  background:linear-gradient(90deg,#b57b18,#ffd36b,#fff1b0,#c9902d);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}
.gold-course-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 104px 33px;
    margin-top: 100px;
}
.gold-course-card {
    position: relative;
    min-height: 500px;
    padding: 190px 26px 28px;
    border-radius: 18px;
    background: #000000;
    color: #fff;
    overflow: visible;
    box-shadow: -9px 11px 70px rgb(236 198 99 / 14%);
}
.gold-course-card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:18px;
  padding:2px;
  background:linear-gradient(135deg,#8a570d,#ffd36b,#fff1b0,#b57b18);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor;
          mask-composite:exclude;
  opacity:.8;
}
.course-box-img {
    position: absolute;
    left: 61%;
    top: -65px;
    transform: translateX(-50%);
    width: 230px;
    z-index: 2;
    filter: drop-shadow(0 25px 25px rgba(0, 0, 0, .35));
}
.course-box-img img {
    width: 70%;
}

.gold-course-card h3 {
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 5px;
    display: inline-block;
    background: linear-gradient(90deg, #ffd36b, #fff1b0, #c9902d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.gold-course-card p{
  font-size:15px;
  line-height:1.45;
  color:#f1f1f1;
  margin-bottom:26px;
}

.gold-course-card h4{
  font-size:48px;
  font-weight:900;
  margin-bottom:26px;
  color:#fff;
}
.course-arrow{
  position:absolute;
  right:-5px;
  bottom:-5px;
  width:88px;
  height:88px;
  border-radius:28px;
  background:#1e1e2b;
  border:12px solid #fff;
  color:#ffd36b;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
}

@media(max-width:991px){
     .gold-course-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 99px 29px;
    }
}

@media(max-width:575px){
  .gold-course-grid{
    grid-template-columns:1fr;
  }
}


.nav-menu-wrapper {
    padding-right: 25px;
}
.post-item {
    background: #000000;
    padding: 14px;
    position: relative;
}
.post-item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 2px;
    background: linear-gradient(135deg, #8a570d, #ffd36b, #fff1b0, #b57b18);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: .8;
}


.kwi-about-left,
.kwi-about-card-box{
  position:relative;
  z-index:2;
}

.kwi-about-tag{
  display:inline-block;
  padding:10px 20px;
  border-radius:50px;
  color:#ffd36b;
  font-weight:800;
  border:1px solid rgba(255,211,107,.45);
  background:rgba(255,211,107,.08);
  margin-bottom:25px;
}

.kwi-about-left h2{
  color:#fff;
  font-size:52px;
  line-height:1.15;
  font-weight:800;
  margin-bottom:24px;
}

.kwi-about-left h2 span{
  background:linear-gradient(90deg,#ffd36b,#fff1b0,#b57b18);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.kwi-about-left p{
  color:#d8d8e8;
  font-size:17px;
  line-height:1.8;
  max-width:560px;
  margin-bottom:35px;
}

.kwi-about-btn{
  display:inline-flex;
  align-items:center;
  gap:12px;
  padding:16px 30px;
  border-radius:50px;
  color:#111;
  font-weight:900;
  text-decoration:none;
  background:linear-gradient(135deg,#8a570d,#e6ad3d,#fff0a0,#bd7c14);
  box-shadow:0 0 28px rgba(255,211,107,.35);
}

.kwi-about-card-box{
  display:flex;
  flex-direction:column;
  gap:22px;
  padding-left:40px;
  border-left:1px dashed rgba(255,255,255,.22);
}

.kwi-about-card {
    position: relative;
    padding: 28px 28px 28px 70px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 211, 107, .18);
    backdrop-filter: blur(12px);
    transition: .3s ease;
    box-shadow: 5px 2px 15px rgb(236 198 99 / 26%);
}

.kwi-about-card:hover{
  transform:translateX(8px);
  border-color:rgba(255,211,107,.65);
  box-shadow:0 20px 45px rgba(0,0,0,.35);
}

.kwi-card-icon {
    position: absolute;
    left: 25px;
    top: 28px;
    color: #8c601b;
    font-size: 28px;
}

.kwi-about-card h3{
  color:#fff;
  font-size:22px;
  font-weight:900;
  margin-bottom:10px;
}

.kwi-about-card p{
  color:#dcdcec;
  font-size:15px;
  line-height:1.7;
  margin:0;
}

@media(max-width:991px){
       .kwi-about-left h2 {
        font-size: 25px;
        margin: 0;
    }

  .kwi-about-card-box{
    padding-left:0;
    border-left:0;
    margin-top:45px;
  }
}
.kwi-approach-premium .mission-vision-content {
    padding: 10px;
}
.kwi-approach-premium .mission-vision-content h3{
  color:#ffd36b;
}

.page-header {
    position: relative;
    padding: 150px 0 50px;
    background: #0d0d0d;
    overflow: hidden;
}
.page-header::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.05) 1px,transparent 1px);
  background-size:70px 70px;
}

.page-header::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:4px;
  background:linear-gradient(90deg,transparent,#ffd36b,#fff1b0,#c9902d,transparent);
  background-size:250% 100%;
  animation:pageGoldLine 3s linear infinite;
}

.page-header-box{
  position:relative;
  z-index:2;
  text-align:center;
}

.page-header-tag{
  display:inline-block;
  padding:9px 20px;
  border-radius:50px;
  color:#ffd36b;
  background:rgba(255,211,107,.08);
  border:1px solid rgba(255,211,107,.45);
  font-weight:800;
  margin-bottom:20px;
}

.page-header h1{
  color:#fff;
  font-size:64px;
  font-weight:900;
  margin-bottom:24px;
}
.page-header .breadcrumb{
  display:inline-flex;
  align-items:center;
  gap:12px;
  padding:14px 24px;
  border-radius:50px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,211,107,.22);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a{
  color:#fff;
  font-weight:700;
  text-decoration:none;
}

.page-header .breadcrumb-item.active{
  color:#ffd36b;
}

@keyframes pageGoldLine{
  0%{background-position:250% 0;}
  100%{background-position:-250% 0;}
}
.kwi-login-left h1{
  color:#fff;
  font-size:58px;
  line-height:1.15;
  font-weight:900;
  margin-bottom:25px;
}

.kwi-login-left h1 span{
  background:linear-gradient(90deg,#ffd36b,#fff1b0,#c9902d);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.kwi-login-left p{
  max-width:560px;
  color:#d8d8e8;
  font-size:18px;
  line-height:1.8;
}

.kwi-login-form-box{
  padding:42px;
  border-radius:28px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,211,107,.25);
  backdrop-filter:blur(16px);
  box-shadow:0 25px 70px rgba(0,0,0,.35);
}

.kwi-login-form-box h2{
  color:#fff;
  font-size:34px;
  font-weight:900;
  margin-bottom:10px;
}

.kwi-login-form-box p{
  color:#d8d8e8;
  margin-bottom:28px;
}

.kwi-login-form-box .form-group{
  margin-bottom:18px;
}

.kwi-login-form-box input{
  width:100%;
  height:58px;
  padding:0 20px;
  border-radius:14px;
  border:1px solid rgba(255,211,107,.22);
  background:rgba(0,0,0,.35);
  color:#fff;
  outline:none;
}

.kwi-login-form-box input::placeholder{
  color:#aaa;
}

.login-options{
  display:flex;
  justify-content:space-between;
  gap:15px;
  margin-bottom:25px;
  color:#d8d8e8;
  font-size:14px;
}

.login-options a,
.signup-text a{
  color:#ffd36b;
  text-decoration:none;
  font-weight:800;
}

.login-divider{
  position:relative;
  text-align:center;
  margin:25px 0;
  color:#ffd36b;
}

.login-divider::before{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  width:100%;
  height:1px;
  background:rgba(255,211,107,.25);
}

.login-divider span {
    position: relative;
    background: linear-gradient(135deg, #5b3505, #b77716, #ffd76a, #fff2a8, #c4871d, #6a4007);
    padding: 0 14px;
    color: black;
}

.signup-text{
  text-align:center;
  margin-bottom:0 !important;
}

@media(max-width:991px){
  .kwi-login-box{
    grid-template-columns:1fr;
  }

  .kwi-login-left h1{
    font-size:42px;
  }
}
.kwi-login-page {
    padding-top: 150px;
    padding-bottom: 50px;
}
.kwi-policy-section {
    padding-top: 50px;
    padding-bottom: 50px;
}
.innerbread {
    padding-top: 200px;
    padding-bottom: 50px !important;
}


.kwi-package-hero {
    padding: 30px;
    border-radius: 34px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 211, 107, .22);
    box-shadow: 0 25px 80px rgba(0, 0, 0, .35);
    margin-bottom: 70px;
}

.kwi-package-content h1{
  font-size:58px;
  line-height:1.1;
  font-weight:900;
  margin:25px 0;
}

.kwi-package-content h1 span,
.kwi-content-box h2 span{
  background:linear-gradient(90deg,#ffd36b,#fff1b0,#c9902d);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.kwi-package-content p{
  color:#d8d8e8;
  font-size:17px;
  line-height:1.8;
  max-width:650px;
}

.kwi-package-meta{
  display:flex;
  flex-wrap:wrap;
  gap:15px;
  margin:28px 0 35px;
}

.kwi-package-meta div{
  padding:11px 16px;
  border-radius:50px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,211,107,.18);
  color:#fff;
  font-weight:700;
}

.kwi-package-meta i{
  color:#ffd36b;
  margin-right:8px;
}

.kwi-price-card,
.kwi-highlight-box,
.kwi-content-box{
  padding:35px;
  border-radius:26px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,211,107,.25);
  box-shadow:0 20px 55px rgba(0,0,0,.25);
}

.kwi-price-card h4{
  color:#ffd36b;
  font-weight:800;
}

.kwi-price-card h2{
  font-size:54px;
  color:#fff;
  font-weight:900;
}

.old-price{
  color:#aaa;
  text-decoration:line-through;
}

.kwi-price-card ul,
.kwi-highlight-box ul{
  padding:0;
  list-style:none;
  margin:25px 0;
}

.kwi-price-card li,
.kwi-highlight-box li{
  color:#e8e8f4;
  margin-bottom:14px;
  font-weight:600;
}

.kwi-price-card li i{
  color:#ffd36b;
  margin-right:10px;
}

.kwi-package-overview{
  margin-bottom:80px;
}

.kwi-content-box h2{
  color:#fff;
  font-size:38px;
  font-weight:900;
  margin-bottom:20px;
}

.kwi-content-box p{
  color:#d8d8e8;
  line-height:1.8;
}

.kwi-highlight-box h3{
  color:#ffd36b;
  font-size:26px;
  font-weight:900;
}

.kwi-curriculum-section{
  margin-top:80px;
}
.kwi-accordion-item{
  margin-bottom:18px;
  border-radius:18px;
  overflow:hidden;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,211,107,.22);
  box-shadow:0 15px 40px rgba(0,0,0,.25);
}

.kwi-accordion-btn{
  width:100%;
  border:0;
  padding:22px 26px;
  background:rgba(255,255,255,.04);
  color:#fff;
  display:flex;
  align-items:center;
  gap:16px;
  font-size:20px;
  font-weight:900;
  text-align:left;
}

.kwi-accordion-btn span{
  width:44px;
  height:44px;
  border-radius:50%;
  background:linear-gradient(135deg,#8a570d,#ffd36b,#fff1b0,#bd7c14);
  color:#111;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:15px;
  flex-shrink:0;
}

.kwi-accordion-btn i{
  margin-left:auto;
  color:#ffd36b;
  transition:.3s ease;
}

.kwi-accordion-btn:not(.collapsed) i{
  transform:rotate(45deg);
}

.kwi-accordion-body {
    padding: 20px;
}
.kwi-accordion-body ul{
  padding:0;
  margin:0;
  list-style:none;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}

.kwi-accordion-body li{
  padding:14px 16px;
  border-radius:12px;
  background:rgba(255,255,255,.07);
  color:#d8d8e8;
  font-weight:600;
}

.kwi-accordion-body li i{
  width:28px;
  height:28px;
  border-radius:50%;
  background:rgba(255,211,107,.12);
  color:#ffd36b;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:11px;
  margin-right:10px;
}

.kwi-final-cta{
  margin-top:80px;
  text-align:center;
  padding:55px;
  border-radius:28px;
  background:
    radial-gradient(circle at 20% 20%,rgba(255,211,107,.22),transparent 28%),
    rgba(255,255,255,.06);
  border:1px solid rgba(255,211,107,.25);
}

.kwi-final-cta h2{
  font-size:40px;
  color:#fff;
  font-weight:900;
}

.kwi-final-cta p{
  color:#d8d8e8;
  margin-bottom:30px;
}

@media(max-width:991px){
       .kwi-package-hero {
        padding: 22px 12px;
        margin-bottom: 20px;
    }
    .kwi-highlight-box {
    margin-top: 20px;
}
     .kwi-package-content h1 {
        font-size: 30px;
          margin: 0;
    }
    .kwi-price-card, .kwi-highlight-box, .kwi-content-box {
    padding: 23px !important;
}
.kwi-content-box h2 {
    font-size: 25px;
}


  .kwi-price-card{
    margin-top:35px;
  }

    .kwi-accordion-body {
        padding: 20px 18px 24px;
    }
  .kwi-accordion-body ul{
    grid-template-columns:1fr;
  }
}
.kwi-cart-left,
.kwi-cart-summary{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,211,107,.24);
  border-radius:28px;
  padding:30px;
  box-shadow:0 25px 70px rgba(0,0,0,.35);
}
.kwi-cart-item {
    display: grid;
    grid-template-columns: 130px 1fr auto 45px;
    gap: 25px;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    margin-bottom: 20px;
}
.cart-course-content h3{
  color:#fff;
  font-size:26px;
  font-weight:900;
  margin-bottom:10px;
}

.cart-course-content p{
  color:#d8d8e8;
  line-height:1.6;
  margin-bottom:14px;
}

.cart-course-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.cart-course-meta span{
  padding:8px 12px;
  border-radius:50px;
  background:rgba(255,255,255,.08);
  color:#ffd36b;
  font-size:13px;
  font-weight:700;
}

.cart-course-price h4{
  color:#ffd36b;
  font-size:28px;
  font-weight:900;
  margin:0;
}

.cart-course-price p{
  color:#aaa;
  text-decoration:line-through;
  margin:0;
}

.cart-remove-btn{
  width:42px;
  height:42px;
  border-radius:50%;
  border:1px solid rgba(255,211,107,.28);
  background:rgba(255,255,255,.08);
  color:#ffd36b;
  cursor:pointer;
}

.kwi-coupon-box{
  display:flex;
  gap:15px;
  margin-top:30px;
}

.kwi-coupon-box input{
  width:100%;
  height:56px;
  border-radius:14px;
  border:1px solid rgba(255,211,107,.22);
  background:rgba(0,0,0,.35);
  color:#fff;
  padding:0 18px;
  outline:none;
}

.kwi-coupon-box input::placeholder{
  color:#aaa;
}

.kwi-cart-summary h3{
  font-size:28px;
  color:#fff;
  font-weight:900;
  margin-bottom:25px;
}

.summary-row,
.summary-total{
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:16px 0;
  border-bottom:1px solid rgba(255,255,255,.12);
  color:#d8d8e8;
}

.summary-row strong{
  color:#fff;
}

.summary-total{
  border-bottom:0;
  margin-top:10px;
}

.summary-total span,
.summary-total strong{
  color:#ffd36b;
  font-size:22px;
  font-weight:900;
}

.checkout-btn{
  width:100%;
  margin-top:25px;
  text-align:center;
}

.secure-text{
  text-align:center;
  color:#d8d8e8;
  margin-top:18px;
  font-size:14px;
}

.secure-text i{
  color:#ffd36b;
  margin-right:6px;
}

@media(max-width:991px){
  .kwi-cart-wrap{
    grid-template-columns:1fr;
  }

  .kwi-cart-item{
    grid-template-columns:100px 1fr;
  }

  .cart-course-price,
  .cart-remove-btn{
    grid-column:2;
  }
}

@media(max-width:575px){
  .kwi-coupon-box{
    flex-direction:column;
  }

  .kwi-cart-item{
    grid-template-columns:1fr;
  }

  .cart-course-price,
  .cart-remove-btn{
    grid-column:auto;
  }
}


.videoimage img{
border-radius: 34px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 211, 107, .22);
    box-shadow: 0 25px 80px rgba(0, 0, 0, .35);
}
.hero-content-video {
    position: relative;
    padding-top: 20px;
}
.video-play-button {
    position: absolute;
    top: 45%;
    left: 45%;
}

.kwi-live-notification{
    position:fixed;
    bottom:25px;
    right:25px;
    width:340px;
    background:rgba(10,10,20,0.95);
    border:1px solid rgba(255,211,107,.35);
    border-radius:16px;
    padding:15px 18px;
    display:flex;
    align-items:center;
    gap:15px;
    z-index:99999;
    backdrop-filter:blur(12px);
    box-shadow:0 0 30px rgba(255,211,107,.15);
    animation:slideIn 0.5s ease;
}

.notification-dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#baff2f;
    box-shadow:0 0 15px #baff2f;
    flex-shrink:0;
}

.notification-title {
    display: block;
    color: #ffd36b;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.notification-content p {
    color: #fff;
    font-size: 20px;
    margin: 0;
    line-height: 1.4;
}
@keyframes slideIn{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@media(max-width:767px){
    .kwi-live-notification{
        width:calc(100% - 30px);
        left:15px;
        bottom:15px;
    }
}

@media only screen and (max-width: 767px)
{

.navbar-brand {
    width: 65% !important;
}
p
{
    font-size: 15px !important;
}

.kwi-content p {
    margin-bottom: 10px;
}
.kwi-premium-hero {
   padding: 106px 0 50px;
}
.card-one {
    left: 40px;
    top: 40px;
}
.card-two {
    bottom: 0;
}
.our-team.kwi-team-section .col-lg-3 {
    width: 50% !important;
}
.team-body {
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    width: 100%;
}
.footer-links {
    margin-bottom: 20px;
}
.innerbread {
    padding-top: 128px;
}
.kwi-about-left p {
    margin-bottom: 10px;
}
.page-header h1 {
   font-size: 25px;
}
.page-header {
    padding: 95px 0 28px;
}
.experts-counter-box {
   display: block;
}
.kwi-policy-section .hero-content {
    text-align: left;
}
.kwi-curriculum-section {
    margin-top: 0px;
}
.kwi-accordion-btn {
    font-size: 15px;
}
.kwi-accordion-btn {
    width: 100%;
    border: 0;
    padding: 22px 26px;
    background: rgba(255, 255, 255, .04);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 15px;
    font-weight: 900;
    text-align: left;
}
.video-play-button {
    top: 36%;
    left: 40%;
}

.notification-title {
    font-size: 15px;
}


}


a {
    color: #ad7112;
    text-decoration: underline;
}



/*User CSS Start*/
.main-header {
    position: relative !important;
}
/* Fixed Sidebar Wrapper */
.kw-fixed-sidebar {
    position: sticky;
    top: 105px;
}

/* Main Sidebar */
.kw-dashboard-sidebar {
    width: 100%;
    max-width: 335px;
   
    background:
        radial-gradient(circle at top left, rgba(255, 202, 83, 0.16), transparent 34%),
        linear-gradient(180deg, #111009 0%, #050505 100%);
    border: 1px solid rgba(255, 211, 113, 0.22);
    border-radius: 26px;
    padding: 24px 18px 18px;
    box-shadow:
        0 22px 60px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    overflow: hidden;
    position: relative;
}

.kw-dashboard-sidebar::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 38px 38px;
    opacity: 0.35;
    pointer-events: none;
}

.kw-dashboard-sidebar > * {
    position: relative;
    z-index: 2;
}

/* Sidebar Head */
.kw-sidebar-head {
    padding: 0 10px 8px;
}

.kw-sidebar-small {
    display: inline-flex;
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(216, 155, 34, 0.14);
    border: 1px solid rgba(255, 213, 118, 0.28);
    color: var(--kw-gold-light);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
}

.kw-sidebar-head h4 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 900;
    margin: 0;
    letter-spacing: -0.5px;
}

.kw-sidebar-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 209, 110, 0.55), transparent);
    margin: 14px 0 18px;
}

/* Scroll */
.kw-sidebar-scroll {
    height: calc(100% - 150px);
    overflow-y: auto;
    padding-right: 8px;
}

.kw-sidebar-scroll::-webkit-scrollbar {
    width: 5px;
}

.kw-sidebar-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.kw-sidebar-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--kw-gold-light), var(--kw-gold));
    border-radius: 30px;
}

/* Menu */
.kw-sidebar-menu li {
    margin-bottom: 5px;
}

.kw-sidebar-link {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 58px;
    padding: 9px 12px;
    border-radius: 18px;
    color: var(--kw-muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 800;
    transition: all 0.32s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.kw-sidebar-link::after {
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transform: skewX(-22deg);
    transition: 0.55s ease;
}

.kw-sidebar-link:hover::after,
.kw-sidebar-link.active::after {
    left: 130%;
}

.kw-menu-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 215, 128, 0.18);
    color: var(--kw-gold-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: all 0.32s ease;
}

.kw-sidebar-link:hover,
.kw-sidebar-link.active {
    background: linear-gradient(135deg, #f9d36d 0%, #d59620 45%, #9c6109 100%);
    color: #050505;
    transform: translateX(5px);
    box-shadow:
        0 12px 28px rgba(216, 155, 34, 0.28),
        inset 0 1px 0 rgba(255,255,255,0.45);
    border-color: rgba(255, 226, 138, 0.6);
}

.kw-sidebar-link:hover .kw-menu-icon,
.kw-sidebar-link.active .kw-menu-icon {
    background: #050505;
    color: white;
    border-color: rgba(255, 226, 138, 0.45);
}

/* Bottom Logout */
.kw-sidebar-bottom {
    padding-top: 15px;
}

.kw-logout-link {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 56px;
    padding: 9px 12px;
    border-radius: 18px;
    text-decoration: none;
    color: #050505;
    font-size: 15px;
    font-weight: 900;
    background: linear-gradient(135deg, #ffe28a 0%, #d89b22 55%, #a66a10 100%);
    box-shadow:
        0 14px 28px rgba(216, 155, 34, 0.25),
        inset 0 1px 0 rgba(255,255,255,0.55);
    transition: all 0.32s ease;
}

.kw-logout-link .kw-menu-icon {
    background: #050505;
    color: var(--kw-gold-light);
    border-color: rgba(255, 226, 138, 0.45);
}

.kw-logout-link:hover {
    color: #050505;
    transform: translateY(-2px);
    box-shadow:
        0 18px 35px rgba(216, 155, 34, 0.35),
        inset 0 1px 0 rgba(255,255,255,0.65);
}

/* Mobile */
@media (max-width: 991px) {
    .kw-fixed-sidebar {
        position: relative;
        top: auto;
        height: auto;
        margin-bottom: 25px;
    }

    .kw-dashboard-sidebar {
        max-width: 100%;
        height: auto;
    }

    .kw-sidebar-scroll {
        height: auto;
        overflow: visible;
        padding-right: 0;
    }
}
a.btn-highlighted .kw-menu-icon {
    margin-right: 9px;
}
.navbar-brand {
    width: 14% !important;
}
.mainsection {
  padding: 50px;
}

/* Premium Dashboard Extra Sections */
.kw-dashboard-extra-section {
    margin-top: 20px;
}

/* Premium Cards */
.kw-premium-dashboard-card {
    height: 100%;
    padding: 28px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(255, 204, 88, 0.14), transparent 35%),
        linear-gradient(145deg, rgba(17, 16, 11, 0.96), rgba(5, 5, 5, 0.96));
    border: 1px solid rgba(255, 214, 112, 0.22);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
}

.kw-premium-dashboard-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 36px 36px;
    opacity: 0.45;
    pointer-events: none;
}

.kw-premium-dashboard-card > * {
    position: relative;
    z-index: 2;
}

/* Card Heading */
.kw-card-title {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.kw-card-title > span {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 17px;
    background: linear-gradient(135deg, #ffe28a 0%, #d89b22 55%, #9c650f 100%);
    color: #050505;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 14px 30px rgba(216, 155, 34, 0.28);
}

.kw-card-title h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 900;
    margin: 0 0 6px;
}

.kw-card-title p {
    color: #c9c1ae;
    font-size: 14px;
    margin: 0;
}

/* Progress */
.kw-progress-box {
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 226, 138, 0.15);
    margin-bottom: 22px;
}

.kw-progress-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.kw-progress-top h5 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    margin: 0;
}

.kw-progress-top strong {
    color: #ffe28a;
    font-size: 18px;
    font-weight: 900;
}

.kw-progress-line {
    width: 100%;
    height: 11px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.12);
    overflow: hidden;
}

.kw-progress-line span {
    height: 100%;
    display: block;
    border-radius: 50px;
    background: linear-gradient(90deg, #ffe28a, #d89b22);
    box-shadow: 0 0 18px rgba(216, 155, 34, 0.6);
}

/* Learning Stats */
.kw-learning-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.kw-learning-stats div {
    padding: 18px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 226, 138, 0.14);
}

.kw-learning-stats h4 {
    color: #ffe28a;
    font-size: 28px !important;
    font-weight: 900;
    margin: 0 0 4px;
}

.kw-learning-stats p {
    color: #c9c1ae;
    font-size: 13px;
    margin: 0;
}

/* Quick Access */
.kw-quick-access-list {
    display: grid;
    gap: 14px;
}

.kw-profile-user-content {
    width: 100%;
}
.kw-quick-access-list a {
    min-height: 58px;
    padding: 0 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 226, 138, 0.14);
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 800;
    transition: all 0.35s ease;
}

.kw-quick-access-list a i {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 13px;
    background: rgba(216, 155, 34, 0.14);
    color: #ffe28a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
}

.kw-quick-access-list a:hover {
    background: linear-gradient(135deg, #ffe28a 0%, #d89b22 55%, #9c650f 100%);
    color: #050505;
    transform: translateX(6px);
    box-shadow: 0 14px 30px rgba(216, 155, 34, 0.25);
}

.kw-quick-access-list a:hover i {
    background: #050505;
    color: #ffe28a;
}

/* Roadmap */
.kw-roadmap-section {
    margin-top: 20px;
}
.kw-roadmap-heading {
    margin-bottom: 24px;
}

.kw-roadmap-heading span {
    display: inline-flex;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(216, 155, 34, 0.12);
    border: 1px solid rgba(255, 226, 138, 0.35);
    color: #ffe28a;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 12px;
}

.kw-roadmap-card {
    height: 100%;
    padding: 28px;
    border-radius: 26px;
    background:
        radial-gradient(circle at top right, rgba(255, 204, 88, 0.10), transparent 35%),
        rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 226, 138, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
    transition: all 0.35s ease;
}

.kw-roadmap-card:hover,
.kw-roadmap-card.active {
    transform: translateY(-6px);
    border-color: rgba(255, 226, 138, 0.45);
    box-shadow: 0 24px 60px rgba(216, 155, 34, 0.16);
}

.kw-step-number {
    width: 54px;
    height: 54px;
    border-radius: 17px;
    background: linear-gradient(135deg, #ffe28a, #d89b22);
    color: #050505;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 20px;
}

.kw-roadmap-card h4 {
    color: #ffffff;
    font-size: 21px;
    font-weight: 900;
    margin-bottom: 10px;
}

.kw-roadmap-card p {
    color: #c9c1ae;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .kw-dashboard-extra-section {
        margin-top: 28px;
    }

    .kw-premium-dashboard-card {
        padding: 22px;
        border-radius: 22px;
    }

    .kw-learning-stats {
        grid-template-columns: 1fr;
    }

    .kw-roadmap-heading h2 {
        font-size: 27px;
    }

    .kw-roadmap-card {
        padding: 22px;
    }
}
.usercourses .hero-content {
    margin-bottom: 30px;
}
.service-item-body p {
    font-size: 14px;
    line-height: auto;
}
.service-item-body h3 {
    font-size: 19px;
    text-transform: capitalize;
    margin-bottom: 7px;
}
/* Luxury Profile Page */
.kw-lux-profile-page {
    padding: 50px;
}
.kw-lux-profile-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.55;
    pointer-events: none;
}

.kw-lux-profile-page .container-fluid {
    position: relative;
    z-index: 2;
}

/* Hero */
.kw-lux-profile-hero {
    padding: 42px;
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(255, 226, 138, 0.18), transparent 35%),
        linear-gradient(135deg, rgba(18, 16, 10, 0.98), rgba(5, 5, 5, 0.98));
    border: 1px solid rgba(255, 226, 138, 0.24);
    box-shadow:
        0 28px 80px rgba(0, 0, 0, 0.48),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.kw-hero-glow {
    position: absolute;
    width: 260px;
    height: 260px;
    right: -90px;
    top: -90px;
    background: rgba(216, 155, 34, 0.28);
    filter: blur(70px);
    border-radius: 50%;
}

.kw-profile-user-box {
    display: flex;
    align-items: center;
    gap: 24px;
}
.kw-profile-avatar {
  
    width: 160px;
    height: 160px;
    border-radius: 50%;
    padding: 5px;
    position: relative;
    background: #080808;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: kwAvatarPulse 2.4s ease-in-out infinite;
}
.kw-profile-avatar::before {
    /*content: "";
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        #fff0a6,
        #d89b22,
        #ffcf4d,
        #ffffff,
        #d89b22,
        #fff0a6
    );
    animation: kwAvatarRotate 2.8s linear infinite;
    z-index: 0;*/
}

.kw-profile-avatar::after {
    content: "";
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(216,155,34,0.45), transparent 65%);
    filter: blur(10px);
    z-index: -1;
    animation: kwAvatarGlow 2.2s ease-in-out infinite;
}

.kw-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #ebc461;
    position: relative;
    z-index: 2;
}

@keyframes kwAvatarRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes kwAvatarPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.04);
    }
}

@keyframes kwAvatarGlow {
    0%, 100% {
        opacity: 0.55;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.12);
    }
}

.kw-lux-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 17px;
    border-radius: 50px;
    color: #ffe28a;
    background: rgba(216, 155, 34, 0.14);
    border: 1px solid rgba(255, 226, 138, 0.35);
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 12px;
}

.kw-profile-user-content p {
    color: #d4ccba;
    font-size: 15px;
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.kw-user-mini-info {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.kw-user-mini-info span {
    padding: 8px 14px;
    border-radius: 50px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,226,138,0.16);
    color: #cfc6b3;
    font-size: 13px;
    font-weight: 700;
}

.kw-user-mini-info strong {
    color: #ffe28a;
}

.kw-lux-gold-btn,
.kw-lux-outline-btn {
    min-height: 48px;
    padding: 0 22px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    transition: all 0.35s ease;
}

.kw-lux-gold-btn {
    color: #050505;
    background: linear-gradient(135deg, #fff0a6 0%, #d89b22 55%, #9b650f 100%);
    box-shadow: 0 16px 35px rgba(216, 155, 34, 0.35);
}

.kw-lux-gold-btn:hover {
    color: #050505;
    transform: translateY(-3px);
    box-shadow: 0 22px 45px rgba(216, 155, 34, 0.45);
}

.kw-lux-outline-btn {
    color: #ffe28a;
    border: 1px solid rgba(255, 226, 138, 0.42);
    background: rgba(255,255,255,0.04);
}

.kw-lux-outline-btn:hover {
    color: #050505;
    background: linear-gradient(135deg, #fff0a6, #d89b22);
}

/* Stats */
.kw-profile-stats-row {
    margin-bottom: 24px;
}

.kw-profile-stat-card {
    height: 100%;
    padding: 24px;
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(255, 226, 138, 0.12), transparent 35%),
        rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 226, 138, 0.16);
    box-shadow: 0 22px 55px rgba(0,0,0,0.30);
    transition: all 0.35s ease;
}

.kw-profile-stat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 226, 138, 0.45);
}

.kw-profile-stat-card span {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(216, 155, 34, 0.14);
    color: #ffe28a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
}

.kw-profile-stat-card h3 {
    color: #ffffff;
    font-size: 34px;
    font-weight: 900;
    margin: 0 0 4px;
}

.kw-profile-stat-card p {
    color: #c9c1ae;
    font-size: 14px;
    margin: 0;
}

/* Tabs */
.kw-lux-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.kw-tab-btn {
    min-height: 50px;
    padding: 0 24px;
    border-radius: 15px;
    border: 1px solid rgba(255, 226, 138, 0.18);
    background: rgba(255,255,255,0.055);
    color: #d8d0be;
    font-size: 14px;
    font-weight: 900;
    transition: all 0.35s ease;
}

.kw-tab-btn.active,
.kw-tab-btn:hover {
    background: linear-gradient(135deg, #fff0a6 0%, #d89b22 55%, #9b650f 100%);
    color: #050505;
    box-shadow: 0 14px 32px rgba(216, 155, 34, 0.28);
}

/* Tab Content */
.kw-tab-pane {
    display: none;
}

.kw-tab-pane.active {
    display: block;
}

/* Cards */
.kw-lux-card {
    padding: 28px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(255, 226, 138, 0.11), transparent 36%),
        linear-gradient(145deg, rgba(17, 16, 11, 0.98), rgba(5, 5, 5, 0.98));
    border: 1px solid rgba(255, 226, 138, 0.18);
    box-shadow:
        0 24px 65px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
}

.kw-lux-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: 0.45;
    pointer-events: none;
}

.kw-lux-card > * {
    position: relative;
    z-index: 2;
}

.kw-card-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 24px;
}

.kw-card-heading span {
    display: inline-flex;
    color: #ffe28a;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 6px;
}

.kw-card-heading h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 900;
    margin: 0;
}

.kw-card-heading strong {
    color: #ffe28a;
    font-size: 17px;
    font-weight: 900;
}

/* Progress */
.kw-profile-progress {
    height: 12px;
    border-radius: 50px;
    background: rgba(255,255,255,0.12);
    overflow: hidden;
}

.kw-profile-progress div {
    height: 100%;
    border-radius: 50px;
    background: linear-gradient(90deg, #fff0a6, #d89b22);
    box-shadow: 0 0 20px rgba(216,155,34,0.65);
}

/* Info List */
.kw-info-list {
    display: grid;
    gap: 13px;
}

.kw-info-row {
    min-height: 60px;
    padding: 16px 18px;
    border-radius: 17px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,226,138,0.12);
    display: grid;
    grid-template-columns: 220px 1fr;
    align-items: center;
    gap: 18px;
}

.kw-info-row span {
    color: #bfb6a3;
    font-size: 14px;
    font-weight: 800;
}

.kw-info-row strong {
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
}

/* Summary */
.kw-profile-summary {
    text-align: center;
}

.kw-summary-avatar {
    width: 116px;
    height: 116px;
    margin: 0 auto 18px;
    padding: 5px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff0a6, #d89b22);
}

.kw-summary-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #080808;
}

.kw-profile-summary h4 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 6px;
}

.kw-profile-summary p {
    color: #c9c1ae;
    font-size: 14px;
    margin-bottom: 18px;
}

.kw-profile-summary p strong {
    color: #ffe28a;
}

.kw-summary-badge {
    min-height: 46px;
    padding: 0 18px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #ffe28a;
    background: rgba(216, 155, 34, 0.14);
    border: 1px solid rgba(255, 226, 138, 0.28);
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 22px;
}

.kw-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.kw-summary-grid div {
    padding: 18px 10px;
    border-radius: 18px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,226,138,0.12);
}

.kw-summary-grid h5 {
    color: #ffe28a;
    font-size: 28px;
    font-weight: 900;
    margin: 0 0 4px;
}

.kw-summary-grid span {
    color: #c9c1ae;
    font-size: 13px;
}

/* Bank Premium */
.kw-bank-premium-box {
    text-align: center;
    padding: 20px 5px;
}

.kw-bank-premium-box > span {
    width: 76px;
    height: 76px;
    margin: 0 auto 22px;
    border-radius: 24px;
    background: linear-gradient(135deg, #fff0a6, #d89b22);
    color: #050505;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.kw-bank-premium-box h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 12px;
}

.kw-bank-premium-box p {
    color: #c9c1ae;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 22px;
}

/* Package */
.kw-package-card {
    height: 100%;
    padding: 28px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(255, 226, 138, 0.11), transparent 36%),
        linear-gradient(145deg, rgba(17,16,11,0.98), rgba(5,5,5,0.98));
    border: 1px solid rgba(255,226,138,0.18);
    box-shadow: 0 24px 65px rgba(0,0,0,0.38);
    transition: all 0.35s ease;
}

.kw-package-card:hover,
.kw-package-card.active {
    transform: translateY(-6px);
    border-color: rgba(255,226,138,0.45);
}

.kw-package-card span {
    color: #ffe28a;
    font-size: 13px;
    font-weight: 900;
}

.kw-package-card h3 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 900;
    margin: 12px 0 10px;
}

.kw-package-card p {
    color: #c9c1ae;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 22px;
}

/* Responsive */
@media (max-width: 991px) {


    .kw-lux-profile-hero {
        padding: 28px 20px;
    }

    .kw-profile-user-box {
        display: block;
        align-items: flex-start;
        text-align: center;
    }

    .kw-profile-user-content h1 {
        font-size: 32px;
    }

    .kw-lux-card {
        padding: 10px;
    }

    .kw-info-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .kw-tab-btn {
        width: 100%;
    }
}

/* Edit Profile Page */
.kw-edit-profile-page {
    padding: 50px;
    background:
        radial-gradient(circle at 32% 10%, rgba(216, 155, 34, 0.18), transparent 32%),
        radial-gradient(circle at 85% 25%, rgba(255, 226, 138, 0.08), transparent 28%),
        linear-gradient(180deg, #050505 0%, #020202 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.kw-edit-profile-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.55;
    pointer-events: none;
}

.kw-edit-profile-page .container-fluid {
    position: relative;
    z-index: 2;
}

/* Hero */
.kw-edit-hero {
    padding: 38px;
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(255, 226, 138, 0.16), transparent 35%),
        linear-gradient(135deg, rgba(18, 16, 10, 0.98), rgba(5, 5, 5, 0.98));
    border: 1px solid rgba(255, 226, 138, 0.24);
    box-shadow:
        0 28px 80px rgba(0, 0, 0, 0.48),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    margin-bottom: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.kw-edit-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 17px;
    border-radius: 50px;
    color: #ffe28a;
    background: rgba(216, 155, 34, 0.14);
    border: 1px solid rgba(255, 226, 138, 0.35);
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 14px;
}

.kw-edit-hero h1 {
    color: #ffffff;
    font-size: 42px;
    font-weight: 900;
    margin: 0 0 8px;
}

.kw-edit-hero h1 strong {
    color: #ffe28a;
}

.kw-edit-hero p {
    color: #d4ccba;
    font-size: 15px;
    margin: 0;
}

.kw-back-btn {
    min-height: 48px;
    padding: 0 22px;
    border-radius: 15px;
    color: #ffe28a;
    border: 1px solid rgba(255, 226, 138, 0.42);
    background: rgba(255,255,255,0.04);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 900;
    transition: all 0.35s ease;
    white-space: nowrap;
}

.kw-back-btn:hover {
    color: #050505;
    background: linear-gradient(135deg, #fff0a6, #d89b22);
    transform: translateY(-3px);
}

/* Form Card */
.kw-edit-card {
    padding: 34px;
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(255, 226, 138, 0.11), transparent 36%),
        linear-gradient(145deg, rgba(17, 16, 11, 0.98), rgba(5, 5, 5, 0.98));
    border: 1px solid rgba(255, 226, 138, 0.18);
    box-shadow:
        0 26px 70px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
}

.kw-edit-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: 0.45;
    pointer-events: none;
}

.kw-edit-card > * {
    position: relative;
    z-index: 2;
}

.kw-form-heading {
    margin-bottom: 28px;
}

.kw-form-heading span {
    display: inline-flex;
    color: #ffe28a;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 6px;
}

.kw-form-heading h3 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 900;
    margin: 0;
}

/* Profile Upload */
.kw-profile-upload-box {
    padding: 24px;
    border-radius: 24px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,226,138,0.14);
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 8px;
}

.kw-upload-avatar {
    width: 108px;
    height: 108px;
    min-width: 108px;
    padding: 5px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff0a6, #d89b22, #87560d);
    box-shadow: 0 18px 45px rgba(216,155,34,0.28);
}

.kw-upload-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #080808;
}

.kw-profile-upload-box h4 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 900;
    margin: 0 0 6px;
}

.kw-profile-upload-box p {
    color: #c9c1ae;
    font-size: 14px;
    margin: 0 0 14px;
}

.kw-upload-btn {
    min-height: 44px;
    padding: 0 18px;
    border-radius: 14px;
    background: rgba(216,155,34,0.14);
    border: 1px solid rgba(255,226,138,0.28);
    color: #ffe28a;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.35s ease;
}

.kw-upload-btn:hover {
    background: linear-gradient(135deg, #fff0a6, #d89b22);
    color: #050505;
}

/* Form */
.kw-form-group label {
    color: #ffe28a;
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 10px;
}

.kw-input-box {
    min-height: 58px;
    border-radius: 18px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,226,138,0.16);
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 18px;
    transition: all 0.3s ease;
}

.kw-input-box:focus-within {
    border-color: rgba(255,226,138,0.55);
    box-shadow: 0 0 0 4px rgba(216,155,34,0.10);
}

.kw-input-box i {
    color: #ffe28a;
    font-size: 16px;
    min-width: 18px;
}

.kw-input-box input,
.kw-input-box textarea {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
}

.kw-input-box input::placeholder,
.kw-input-box textarea::placeholder {
    color: #8d8678;
}

.kw-input-box.disabled {
    opacity: 0.7;
}

.kw-input-box.disabled input {
    cursor: not-allowed;
}

.textarea-box {
    align-items: flex-start;
    padding-top: 18px;
    min-height: 120px;
}

.textarea-box i {
    margin-top: 3px;
}

.textarea-box textarea {
    resize: none;
    line-height: 1.6;
}

/* Buttons */
.kw-form-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 12px;
}

.kw-save-btn,
.kw-cancel-btn {
    min-height: 50px;
    padding: 0 28px;
    border-radius: 15px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    transition: all 0.35s ease;
}

.kw-save-btn {
    color: #050505;
    background: linear-gradient(135deg, #fff0a6 0%, #d89b22 55%, #9b650f 100%);
    box-shadow: 0 16px 35px rgba(216,155,34,0.35);
}

.kw-save-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 45px rgba(216,155,34,0.45);
}

.kw-cancel-btn {
    color: #ffe28a;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 226, 138, 0.18);
    padding: 7px 34px;
    min-height: auto;
}

.kw-cancel-btn:hover {
    color: #050505;
    background: linear-gradient(135deg, #fff0a6, #d89b22);
}

/* Responsive */
@media (max-width: 991px) {
    .kw-edit-profile-page {
        padding: 22px 14px 50px;
    }

    .kw-edit-hero {
        padding: 28px 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .kw-edit-hero h1 {
        font-size: 32px;
    }

    .kw-edit-card {
        padding: 22px;
    }

    .kw-profile-upload-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .kw-form-actions {
        flex-direction: column;
    }

    .kw-save-btn,
    .kw-cancel-btn {
        width: 100%;
    }
}
/* Certificate Page */
.kw-certificate-page {
  padding: 50px;
    background:
        radial-gradient(circle at 32% 10%, rgba(216, 155, 34, 0.18), transparent 32%),
        radial-gradient(circle at 85% 25%, rgba(255, 226, 138, 0.08), transparent 28%),
        linear-gradient(180deg, #050505 0%, #020202 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.kw-certificate-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.55;
    pointer-events: none;
}

.kw-certificate-page .container-fluid {
    position: relative;
    z-index: 2;
}

/* Hero */
.kw-certificate-hero {
    padding: 42px;
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(255, 226, 138, 0.18), transparent 35%),
        linear-gradient(135deg, rgba(18, 16, 10, 0.98), rgba(5, 5, 5, 0.98));
    border: 1px solid rgba(255, 226, 138, 0.24);
    box-shadow:
        0 28px 80px rgba(0, 0, 0, 0.48),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.kw-certificate-hero::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -100px;
    top: -100px;
    background: rgba(216, 155, 34, 0.28);
    filter: blur(75px);
    border-radius: 50%;
}

.kw-certificate-hero .row {
    position: relative;
    z-index: 2;
}

.kw-cert-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 17px;
    border-radius: 50px;
    color: #ffe28a;
    background: rgba(216, 155, 34, 0.14);
    border: 1px solid rgba(255, 226, 138, 0.35);
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 14px;
}

.kw-certificate-hero h1 strong {
    color: #ffe28a;
}

.kw-certificate-hero p {
    color: #d4ccba;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    max-width: 650px;
}

/* Stats */
.kw-cert-stats-row {
    margin-bottom: 24px;
}

.kw-cert-stat-card {
    height: 100%;
    padding: 24px;
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(255, 226, 138, 0.12), transparent 35%),
        rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 226, 138, 0.16);
    box-shadow: 0 22px 55px rgba(0,0,0,0.30);
    transition: all 0.35s ease;
}

.kw-cert-stat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 226, 138, 0.45);
}

.kw-cert-stat-card span {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(216, 155, 34, 0.14);
    color: #ffe28a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
}

.kw-cert-stat-card h3 {
    color: #ffffff;
    font-size: 34px;
    font-weight: 900;
    margin: 0 0 4px;
}

.kw-cert-stat-card p {
    color: #c9c1ae;
    font-size: 14px;
    margin: 0;
}

/* Progress Card */
.kw-cert-progress-card {
    padding: 28px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(255, 226, 138, 0.11), transparent 36%),
        linear-gradient(145deg, rgba(17, 16, 11, 0.98), rgba(5, 5, 5, 0.98));
    border: 1px solid rgba(255, 226, 138, 0.18);
    box-shadow:
        0 24px 65px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255,255,255,0.06);
    margin-bottom: 34px;
    position: relative;
    overflow: hidden;
}

.kw-cert-progress-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: 0.45;
    pointer-events: none;
}

.kw-cert-progress-card > * {
    position: relative;
    z-index: 2;
}

.kw-cert-card-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 18px;
}

.kw-cert-card-heading span {
    display: inline-flex;
    color: #ffe28a;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 6px;
}

.kw-cert-card-heading h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 900;
    margin: 0;
}

.kw-cert-card-heading strong {
    color: #ffe28a;
    font-size: 18px;
    font-weight: 900;
}

.kw-cert-progress-line {
    width: 100%;
    height: 12px;
    border-radius: 50px;
    background: rgba(255,255,255,0.12);
    overflow: hidden;
    margin-bottom: 14px;
}

.kw-cert-progress-line div {
    height: 100%;
    border-radius: 50px;
    background: linear-gradient(90deg, #fff0a6, #d89b22);
    box-shadow: 0 0 20px rgba(216,155,34,0.65);
}

.kw-cert-progress-card p {
    color: #c9c1ae;
    font-size: 14px;
    margin: 0;
}

/* Heading */
.kw-cert-section-heading {
    margin-bottom: 24px;
}

.kw-cert-section-heading span {
    display: inline-flex;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(216, 155, 34, 0.12);
    border: 1px solid rgba(255, 226, 138, 0.35);
    color: #ffe28a;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 12px;
}


.kw-cert-section-heading h2 strong {
    color: #ffe28a;
}

/* Certificate Card */
.kw-certificate-card {
    height: 100%;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(255, 226, 138, 0.10), transparent 36%),
        linear-gradient(145deg, rgba(17, 16, 11, 0.98), rgba(5, 5, 5, 0.98));
    border: 1px solid rgba(255, 226, 138, 0.18);
    box-shadow: 0 24px 65px rgba(0, 0, 0, 0.38);
    overflow: hidden;
    transition: all 0.35s ease;
}

.kw-certificate-card:hover {
    transform: translateY(-7px);
    border-color: rgba(255, 226, 138, 0.45);
}

.kw-certificate-card.locked {
    opacity: 0.82;
}

.kw-cert-img {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.kw-cert-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.45s ease;
}

.kw-certificate-card:hover .kw-cert-img img {
    transform: scale(1.06);
}

.kw-cert-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.72));
}

.kw-status-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    padding: 7px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 900;
}

.kw-status-badge.available {
    background: linear-gradient(135deg, #fff0a6, #d89b22);
    color: #050505;
}

.kw-status-badge.pending {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,226,138,0.28);
    color: #ffe28a;
}

.kw-cert-body {
    padding: 24px;
}

.kw-cert-body h4 {
    color: #ffffff;
    font-size: 21px;
    font-weight: 900;
    margin-bottom: 10px;
}

.kw-cert-body p {
    color: #c9c1ae;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 18px;
}

.kw-cert-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.kw-cert-meta span {
    padding: 7px 12px;
    border-radius: 50px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,226,138,0.14);
    color: #d8d0be;
    font-size: 12px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.kw-cert-meta i {
    color: #ffe28a;
}

.kw-cert-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}


.kw-view-certificate-btn {
    color: #ffe28a;
    border: 1px solid rgba(255,226,138,0.32);
    background: rgba(255,255,255,0.04);
}

.kw-download-certificate-btn:hover,
.kw-view-certificate-btn:hover {
    color: #050505;
    background: linear-gradient(135deg, #fff0a6, #d89b22);
    transform: translateY(-2px);
}

/* Small Progress */
.kw-cert-small-progress {
    width: 100%;
    height: 9px;
    border-radius: 50px;
    background: rgba(255,255,255,0.12);
    overflow: hidden;
    margin-bottom: 18px;
}

.kw-cert-small-progress div {
    height: 100%;
    border-radius: 50px;
    background: linear-gradient(90deg, #fff0a6, #d89b22);
}

/* Responsive */
@media (max-width: 991px) {
    .kw-certificate-page {
        padding: 0px;
    }

    .kw-certificate-hero {
        padding: 28px 20px;
    }

    .kw-certificate-hero h1 {
        font-size: 32px;
    }

    .kw-cert-progress-card {
        padding: 22px;
    }

    .kw-cert-section-heading h2 {
        font-size: 27px;
    }

    .kw-cert-img {
        height: 200px;
    }

    .kw-cert-actions a {
        width: 100%;
    }
}
/* Premium Header */
.kwi-premium-header {
    width: 100%;
    background:
        radial-gradient(circle at 30% 0%, rgba(216, 155, 34, 0.14), transparent 30%),
        linear-gradient(180deg, #060606 0%, #020202 100%);
    border-bottom: 1px solid rgba(255, 226, 138, 0.12);
    position: sticky;
    top: 0;
    z-index: 999;
}

.kwi-header-wrap {
    position: relative;
    overflow: visible;
}

.kwi-header-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 38px 38px;
    opacity: 0.45;
    pointer-events: none;
}

.kwi-premium-header .navbar {
    min-height: 92px;
    padding: 0 22px;
    position: relative;
    z-index: 2;
}

/* Logo */
.kwi-brand img {
    max-width: 250px;
    height: auto;
    display: block;
}

/* Menu */
.kwi-menu {
    align-items: center;
    gap: 6px;
}

.kwi-menu .nav-link {
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    padding: 12px 15px !important;
    border-radius: 14px;
    position: relative;
    transition: all 0.3s ease;
}

.kwi-menu .nav-link::after {
    border: none;
}

.kwi-menu .nav-link:hover,
.kwi-menu .nav-link.active {
    color: #ffe28a;
    background: rgba(216, 155, 34, 0.10);
}

.kwi-menu .dropdown-toggle::before {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #ffe28a;
}

/* Dropdown */
.kwi-dropdown-menu {
    min-width: 220px;
    padding: 12px;
    border-radius: 20px;
    background:
        radial-gradient(circle at top right, rgba(255, 226, 138, 0.14), transparent 40%),
        linear-gradient(145deg, #12100b, #050505);
    border: 1px solid rgba(255, 226, 138, 0.22);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.45);
}

.kwi-dropdown-menu .dropdown-item {
    color: #d8d0be;
    font-size: 14px;
    font-weight: 800;
    padding: 11px 14px;
    border-radius: 13px;
    transition: all 0.3s ease;
}

.kwi-dropdown-menu .dropdown-item:hover {
    background: linear-gradient(135deg, #fff0a6, #d89b22);
    color: #050505;
}

/* Header Actions */
.kwi-header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.kwi-login-btn {
    min-height: 52px;
    padding: 0 30px;
    border-radius: 16px;
    background: linear-gradient(135deg, #fff0a6 0%, #d89b22 55%, #9b650f 100%);
    color: #050505;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 900;
    box-shadow:
        0 14px 35px rgba(216, 155, 34, 0.38),
        inset 0 1px 0 rgba(255,255,255,0.55);
    transition: all 0.35s ease;
}

.kwi-login-btn:hover {
    color: #050505;
    transform: translateY(-3px);
    box-shadow:
        0 20px 45px rgba(216, 155, 34, 0.5),
        inset 0 1px 0 rgba(255,255,255,0.65);
}

/* Logged In User */
.kwi-user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.kwi-user-text {
    text-align: right;
}

.kwi-user-text strong {
    display: block;
    color: #ffffff;
    font-size: 19px;
    font-weight: 900;
    /* line-height: 1.1; */
}

.kwi-user-text span {
    color: #ffe28a;
    font-size: 12px;
    font-weight: 800;
}

.kwi-user-img {
    width: 74px;
    height: 74px;
    padding: 3px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff0a6, #d89b22);
}

.kwi-user-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #050505;
}

/* Mobile Toggle */
.kwi-navbar-toggler {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 226, 138, 0.32);
    border-radius: 14px;
    background: rgba(216, 155, 34, 0.12);
    color: #ffe28a;
    box-shadow: none !important;
}

/* Responsive */
@media (min-width: 992px) {
    .kwi-menu .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

@media (max-width: 991px) {
    .kwi-premium-header .navbar {
        min-height: 78px;
        padding: 0 12px;
    }

    .kwi-brand img {
        max-width: 190px;
    }

    .kwi-navbar {
        margin-top: 16px;
        padding: 18px;
        border-radius: 22px;
        background:
            radial-gradient(circle at top right, rgba(255, 226, 138, 0.12), transparent 35%),
            linear-gradient(145deg, #12100b, #050505);
        border: 1px solid rgba(255, 226, 138, 0.18);
        box-shadow: 0 20px 50px rgba(0,0,0,0.45);
    }

    .kwi-menu {
        align-items: stretch;
        gap: 8px;
    }

    .kwi-menu .nav-link {
        padding: 13px 15px !important;
        background: rgba(255,255,255,0.04);
        border: 1px solid rgba(255,255,255,0.06);
    }

    .kwi-header-actions {
        margin-top: 14px;
        width: 100%;
    }

    .kwi-login-btn {
        width: 100%;
    }

    .kwi-dropdown-menu {
        margin-top: 8px;
        width: 100%;
    }
}
.usercourses {
    border-radius: 26px;
    background: radial-gradient(circle at top right, rgba(255, 204, 88, 0.10), transparent 35%), rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 226, 138, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
    transition: all 0.35s ease;
    padding: 20px;
}
.btn-highlighted i {
    padding-right: 9px;
}

.kwi-content h1 {
    font-size: 42px !important;
}

.service-item-body h3 {
    font-size: 20px !important;
    margin-bottom: 6px !important;
}


.kw-aside-help-box {
    margin: 89px 4px 22px;
    padding: 28px 20px;
    border-radius: 24px;
    background: radial-gradient(circle at top right, rgba(255, 226, 138, 0.22), transparent 38%), linear-gradient(145deg, #15120a 0%, #050505 100%);
    border: 1px solid rgba(255, 226, 138, 0.25);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    text-align: left;
    position: relative;
    /* overflow: hidden; */
}
.kw-aside-help-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.45;
    pointer-events: none;
}



.kw-aside-help-box h2 {
    color: #ffffff;
    font-size: 22px;
    line-height: 1.15;
    font-weight: 900;
    margin: 0 0 10px;
}

.kw-aside-help-box h2 span {
    color: #ffe28a;
}

.kw-aside-help-box p {
    color: #c9c1ae;
    font-size: 13px;
    line-height: 1.6;
    margin: 0 0 18px;
}


.kw-help-icon {

    margin: -65px auto 15px;
    position: relative;
    z-index: 2;
    animation: robotFloatUp 2.2s ease-in-out infinite;
}

.kw-help-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 18px 18px rgba(0, 0, 0, 0.35));
}

@keyframes robotFloatUp {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-16px);
    }

    100% {
        transform: translateY(0);
    }
}


.kw-wave-hand {
    display: inline-block;
    transform-origin: 70% 70%;
    animation: kwWaveHand 1.8s ease-in-out infinite;
    font-size: 68px;
}
@keyframes kwWaveHand {
    0% {
        transform: rotate(0deg) scale(1);
    }

    10% {
        transform: rotate(16deg) scale(1.08);
    }

    20% {
        transform: rotate(-10deg) scale(1.08);
    }

    30% {
        transform: rotate(16deg) scale(1.08);
    }

    40% {
        transform: rotate(-6deg) scale(1.05);
    }

    50% {
        transform: rotate(10deg) scale(1.06);
    }

    60% {
        transform: rotate(0deg) scale(1);
    }

    100% {
        transform: rotate(0deg) scale(1);
    }
}
.btn-highlighted .kw-menu-icon {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

/* Mobile Header + Sidebar CSS Only */
@media (max-width: 767px) {
    .kw-sidebar-open .kw-mobile-dashboard-header{
        z-index: 2 !important;
    }
}

@media (max-width: 991px) {

    body.kw-sidebar-open {
        overflow: hidden;
    }

    /* Mobile Top Header */
    .kw-mobile-dashboard-header {
        height: 64px;
        width: 100%;
        background: radial-gradient(circle at 30% 0%, rgba(216, 155, 34, 0.14), transparent 30%), linear-gradient(180deg, #060606 0%, #020202 100%);
        padding: 0 14px;
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        position: sticky;
        top: 0;
        z-index: 3;
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
    }


    .kw-mobile-logo img {
        max-width: 155px;
        height: auto;
        display: block;
    }

    .kw-mobile-actions {
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .kw-mobile-profile {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        padding: 2px;
        background: linear-gradient(135deg, #fff0a6, #d89b22);
        display: inline-flex;
    }

    .kw-mobile-profile img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        border: 2px solid #1d1a2d;
        object-fit: cover;
    }

    .kw-mobile-menu-btn {
        width: 42px;
        height: 42px;
        border: none;
        background: transparent;
        color: #ffffff;
        font-size: 24px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

    /* Overlay */
    .kw-sidebar-overlay {
        position: fixed;
        inset: 0; 
        background: rgba(0, 0, 0, 0.62);
        backdrop-filter: blur(3px);
        z-index: 1250;
        display: none;
    }


    /* Mobile Sidebar Drawer */
.kw-dashboard-sidebar {
        width: 300px;
        max-width: 300px;
        height: 100%;
        position: fixed;
        top: 50px;
        right: 0;
        left: auto;
        z-index: 1300;
        border-radius: 28px 0 0 28px;
        padding: 24px 8px 24px 18px;
        transform: translateX(110%);
        transition: all 0.35s ease;
        box-shadow: -25px 0 60px rgba(0, 0, 0, 0.45);
        overflow: hidden;
    }

    body.kw-sidebar-open .kw-dashboard-sidebar {
        transform: translateX(0);
        margin-top: -50px;
    }

    .kw-sidebar-close {
        width: 36px;
        height: 36px;
        border: none;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.08);
        color: #ffffff;
        position: absolute;
        top: 10px;
        right: 14px;
        z-index: 5;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .kw-sidebar-logo {
        text-align: center;
        padding: 8px 42px 20px 16px;
        margin-bottom: 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .kw-sidebar-logo img {
        max-width: 175px;
        height: auto;
    }

    .kw-sidebar-scroll {
        height: 100%;
        overflow-y: auto;
        padding-top: 25px;
        padding-right: 8px;
    }

    .kw-sidebar-scroll::-webkit-scrollbar {
        width: 4px;
    }

    .kw-sidebar-scroll::-webkit-scrollbar-thumb {
        background: #dfff5b;
        border-radius: 20px;
    }

    .kw-sidebar-menu {
        padding-top: 4px;
    }

    .kw-sidebar-menu li {
        margin-bottom: 10px;
    }

    .kw-sidebar-link,
    .kw-sidebar-logout {
        min-height: 50px;
        padding: 10px 14px;
        border-radius: 12px;
        color: rgba(255, 255, 255, 0.55);
        text-decoration: none;
        font-size: 14px;
        font-weight: 800;
        display: flex;
        align-items: center;
        gap: 14px;
        transition: all 0.3s ease;
    }

    .kw-menu-icon {
        width: 30px;
        min-width: 40px;

        font-size: 17px;
        display: inline-flex;
        justify-content: center;
    }


}

@media (max-width: 420px) {
    .kw-dashboard-sidebar {
        width: 285px;
        max-width: 285px;
    }

    .kw-mobile-logo img {
        max-width: 140px;
    }
    .d-mobile
    {
        display: none;
    }
}



@media only screen and (max-width: 767px)
{


    .mainsection {
        padding: 0px !important;
    }
h1, h2, h3, h4, h5, h6 {
    font-size: 20px !important;
}

.usercourses {
    padding: 10px 0px !important;
}

.kwi-content h1 {
    font-size: 30px !important;
}
.service-item-body h3 {
    font-size: 16px !important;

}
    .kw-lux-profile-page {
        padding: 0px 0px 30px;
    }
    .kw-profile-stats-row .col-lg-3 {
        width: 49% !important;
        padding-right: 0px;
        padding-left: 0;
        padding: 5px;
    }
.kw-profile-stat-card {
    padding: 11px;
 }
.kw-profile-stats-row {
    margin-bottom: 24px;
    gap: 11px 6px;
    margin: 0;
    padding-bottom: 20px;
}
.kw-profile-avatar {
    margin: 0 auto;
    margin-bottom: 18px;
}

.kw-profile-user-content p {
    margin: 7px 0 14px;
    display: block;
}

.kw-lux-profile-hero .btn-highlighted {
    margin: 0 auto;
    display: block;
    width: 100%;
    text-align: center;
}
.kw-wave-hand {
    font-size: 50px;
}

}
/* Course Detail Page */
.kw-course-detail-page {
    min-height: 100vh;
    padding: 34px 22px 80px;
    color: #ffffff;
    background:
        radial-gradient(circle at 18% 10%, rgba(216, 155, 34, 0.18), transparent 32%),
        radial-gradient(circle at 85% 15%, rgba(255, 226, 138, 0.08), transparent 30%),
        linear-gradient(180deg, #050505 0%, #020202 100%);
    position: relative;
    overflow: hidden;
}

.kw-course-detail-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.032) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.032) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.5;
    pointer-events: none;
}

.kw-course-detail-page .container-fluid {
    position: relative;
    z-index: 2;
}

/* Hero */
.kw-course-hero,
.kw-video-player-card,
.kw-module-section {
    padding: 30px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(255, 226, 138, 0.13), transparent 36%),
        linear-gradient(145deg, rgba(18,16,10,0.96), rgba(5,5,5,0.96));
    border: 1px solid rgba(255,226,138,0.18);
    box-shadow: 0 24px 65px rgba(0,0,0,0.36);
    position: relative;
    overflow: hidden;
    margin-bottom: 28px;
}

.kw-course-hero::before,
.kw-video-player-card::before,
.kw-module-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: 0.35;
    pointer-events: none;
}

.kw-course-hero > *,
.kw-video-player-card > *,
.kw-module-section > * {
    position: relative;
    z-index: 2;
}

.kw-course-tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 18px;
    border-radius: 50px;
    background: rgba(216, 155, 34, 0.14);
    border: 1px solid rgba(255, 226, 138, 0.35);
    color: #ffe28a;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 16px;
}

.kw-course-hero h1 {
    color: #ffffff;
    font-size: 42px;
    line-height: 1.12;
    font-weight: 900;
    margin-bottom: 12px;
}

.kw-course-hero h1 strong {
    color: #ffe28a;
}

.kw-course-hero p {
    color: #c9c1ae;
    max-width: 760px;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.kw-course-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.kw-course-meta span {
    padding: 9px 15px;
    border-radius: 50px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,226,138,0.14);
    color: #ffe28a;
    font-size: 13px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Progress Card */
.kw-course-progress-card {
    padding: 24px;
    border-radius: 24px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,226,138,0.16);
}

.kw-course-progress-card span {
    color: #ffe28a;
    font-size: 13px;
    font-weight: 900;
}

.kw-course-progress-card h3 {
    color: #ffffff;
    font-size: 44px;
    font-weight: 900;
    margin: 8px 0 12px;
}

.kw-course-progress-card p {
    color: #c9c1ae;
    font-size: 13px;
    margin: 12px 0 0;
}

.kw-progress-line {
    height: 11px;
    border-radius: 50px;
    background: rgba(255,255,255,0.12);
    overflow: hidden;
}

.kw-progress-line span {
    height: 100%;
    display: block;
    border-radius: 50px;
    background: linear-gradient(90deg, #fff0a6, #d89b22);
    box-shadow: 0 0 18px rgba(216,155,34,0.55);
}

/* Video Player */
.kw-video-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.kw-video-title-row span {
    color: #ffe28a;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.kw-video-title-row h3 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 900;
    margin: 6px 0;
}

.kw-video-title-row p {
    color: #c9c1ae;
    font-size: 14px;
    margin: 0;
}

.kw-video-duration {
    min-height: 44px;
    padding: 0 16px;
    border-radius: 14px;
    background: rgba(216,155,34,0.12);
    border: 1px solid rgba(255,226,138,0.22);
    color: #ffe28a;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 900;
    white-space: nowrap;
}

.kw-video-frame {
    border-radius: 26px;
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(255,226,138,0.20);
    box-shadow: 0 20px 55px rgba(0,0,0,0.35);
}

.kw-video-frame video {
    width: 100%;
    height: 620px;
    object-fit: cover;
    display: block;
    background: #000;
}

/* Module Section */
.kw-module-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 26px;
}

.kw-module-heading span {
    color: #ffe28a;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.kw-module-heading h2 {
    color: #ffffff;
    font-size: 30px;
    font-weight: 900;
    margin: 6px 0 0;
}

.kw-gold-btn {
    min-height: 48px;
    padding: 0 22px;
    border-radius: 15px;
    background: linear-gradient(135deg, #fff0a6, #d89b22);
    color: #050505;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 900;
    border: none;
    transition: all 0.35s ease;
}

.kw-gold-btn:hover {
    color: #050505;
    transform: translateY(-3px);
}

/* Module Card */
.kw-video-module-card {
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,226,138,0.14);
    cursor: pointer;
    transition: all 0.35s ease;
}

.kw-video-module-card:hover,
.kw-video-module-card.active {
    transform: translateY(-6px);
    border-color: rgba(255,226,138,0.45);
    box-shadow: 0 20px 55px rgba(216,155,34,0.18);
}

.kw-video-module-card.active {
    background: rgba(216,155,34,0.10);
}

.kw-module-thumb {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.kw-module-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.45s ease;
}

.kw-video-module-card:hover .kw-module-thumb img {
    transform: scale(1.08);
}

.kw-play-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff0a6, #d89b22);
    color: #050505;
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 14px 35px rgba(216,155,34,0.35);
}

.kw-module-thumb small {
    position: absolute;
    right: 14px;
    bottom: 14px;
    padding: 6px 10px;
    border-radius: 10px;
    background: rgba(0,0,0,0.72);
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
}

.kw-module-content {
    padding: 20px;
}

.kw-module-content span {
    color: #ffe28a;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.kw-module-content h4 {
    color: #ffffff;
    font-size: 19px;
    font-weight: 900;
    margin: 8px 0;
}

.kw-module-content p {
    color: #c9c1ae;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .kw-course-detail-page {
        padding: 22px 14px 50px;
    }

    .kw-course-hero,
    .kw-video-player-card,
    .kw-module-section {
        padding: 22px;
        border-radius: 26px;
    }

    .kw-course-hero h1 {
        font-size: 31px;
    }

    .kw-video-title-row,
    .kw-module-heading {
        flex-direction: column;
    }

    .kw-video-frame video {
        height: 360px;
    }
}

@media (max-width: 575px) {
    .kw-video-frame video {
        height: 240px;
    }

    .kw-module-thumb {
        height: 190px;
    }
}


/*User CSS CLOSE*/


/*Affiliate CSS*/
.kw-affiliate-dashboard {
    min-height: 100vh;
    padding: 34px 22px 70px;
    background:
        radial-gradient(circle at 30% 8%, rgba(216, 155, 34, 0.16), transparent 32%),
        radial-gradient(circle at 90% 30%, rgba(255, 226, 138, 0.08), transparent 28%),
        linear-gradient(180deg, #050505 0%, #020202 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.kw-affiliate-dashboard::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.5;
    pointer-events: none;
}

.kw-affiliate-dashboard .container-fluid {
    position: relative;
    z-index: 2;
}

/* Hero */
.kw-affiliate-hero {
    padding: 38px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(255, 226, 138, 0.18), transparent 35%),
        linear-gradient(135deg, rgba(18, 16, 10, 0.98), rgba(5, 5, 5, 0.98));
    border: 1px solid rgba(255, 226, 138, 0.22);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
    margin-bottom: 24px;
}

.kw-affiliate-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 17px;
    border-radius: 50px;
    color: #ffe28a;
    background: rgba(216, 155, 34, 0.14);
    border: 1px solid rgba(255, 226, 138, 0.35);
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 14px;
}

.kw-affiliate-hero h1 {
    color: #ffffff;
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 10px;
}

.kw-affiliate-hero h1 strong {
    color: #ffe28a;
}

.kw-affiliate-hero p {
    color: #d4ccba;
    font-size: 15px;
    line-height: 1.7;
    max-width: 680px;
    margin: 0;
}

/* Wave Hand */
.kw-wave-hand {
    display: inline-block;
    transform-origin: 70% 70%;
    animation: kwWaveHand 1.8s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(216, 155, 34, 0.55));
}

@keyframes kwWaveHand {
    0%, 100% { transform: rotate(0deg) scale(1); }
    15% { transform: rotate(16deg) scale(1.08); }
    30% { transform: rotate(-10deg) scale(1.08); }
    45% { transform: rotate(14deg) scale(1.06); }
    60% { transform: rotate(0deg) scale(1); }
}

/* Referral Box */
.kw-referral-box {
    padding: 24px;
    border-radius: 24px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,226,138,0.16);
}

.kw-referral-box label {
    color: #ffe28a;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 10px;
}

.kw-referral-input {
    height: 54px;
    border-radius: 16px;
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,226,138,0.18);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.kw-referral-input input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    padding: 0 16px;
}

.kw-referral-input button {
    width: 56px;
    height: 54px;
    border: none;
    background: linear-gradient(135deg, #fff0a6, #d89b22);
    color: #050505;
    font-size: 17px;
}

.kw-referral-box small {
    display: block;
    color: #bfb6a3;
    font-size: 12px;
    margin-top: 10px;
}

/* Stats */
.kw-affiliate-stats {
    margin-bottom: 24px;
}

.kw-aff-stat-card {
    height: 100%;
    padding: 5px 12px;
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(255,226,138,0.12), transparent 35%),
        rgba(255,255,255,0.045);
    border: 1px solid rgba(255,226,138,0.16);
    box-shadow: 0 22px 55px rgba(0,0,0,0.28);
    transition: all 0.35s ease;
}

.kw-aff-stat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,226,138,0.42);
}

.kw-aff-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(216,155,34,0.14);
    color: #ffe28a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
}
.kw-aff-stat-card h3 {
    color: #ffffff;
    font-weight: 900;
    margin-bottom: 4px;
}

.kw-aff-stat-card p {
    color: #c9c1ae;
    font-size: 14px;
    margin-bottom: 0px;
}

.kw-growth {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 900;
}

.kw-growth.positive {
    color: #b8ff9a;
    background: rgba(70, 255, 120, 0.10);
}

.kw-growth.warning {
    color: #ffe28a;
    background: rgba(216,155,34,0.13);
}

/* Cards */
.kw-aff-premium-card,
.kw-aff-mini-card {
    padding: 28px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(255,226,138,0.11), transparent 36%),
        linear-gradient(145deg, rgba(17,16,11,0.98), rgba(5,5,5,0.98));
    border: 1px solid rgba(255,226,138,0.18);
    box-shadow: 0 24px 65px rgba(0,0,0,0.35);
}

.kw-aff-card-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.kw-aff-card-heading span {
    color: #ffe28a;
    font-size: 13px;
    font-weight: 900;
}

.kw-aff-card-heading h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 900;
    margin: 5px 0 0;
}


/* Progress */
.kw-earning-progress-list {
    display: grid;
    gap: 22px;
}

.kw-progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.kw-progress-info h5 {
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
    margin: 0;
}

.kw-progress-info strong {
    color: #ffe28a;
}


.kw-aff-progress-line span {
    height: 100%;
    display: block;
    border-radius: 50px;
    background: linear-gradient(90deg, #fff0a6, #d89b22);
}

/* Quick Links */
.kw-aff-quick-links {
    display: grid;
    gap: 14px;
}

.kw-aff-quick-links a {
    min-height: 56px;
    padding: 0 18px;
    border-radius: 17px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,226,138,0.14);
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    font-weight: 900;
    transition: all 0.35s ease;
}

.kw-aff-quick-links a i {
    color: #ffe28a;
    width: 34px;
}

.kw-aff-quick-links a:hover {
    background: linear-gradient(135deg, #fff0a6, #d89b22);
    color: #050505;
    transform: translateX(6px);
}

.kw-aff-quick-links a:hover i {
    color: #050505;
}



.kw-status {
    padding: 6px 11px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 900;
}

.kw-status.success {
    color: #b8ff9a;
    background: rgba(70,255,120,0.10);
}

.kw-status.pending {
    color: #ffe28a;
    background: rgba(216,155,34,0.13);
}

.kw-status.follow {
    color: #9fd8ff;
    background: rgba(90,180,255,0.12);
}

/* Payout */
.kw-payout-card {
    text-align: center;
}

.kw-payout-icon {
    width: 72px;
    height: 72px;
    border-radius: 24px;
    background: linear-gradient(135deg, #fff0a6, #d89b22);
    color: #050505;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
}

.kw-payout-card span {
    color: #ffe28a;
    font-size: 13px;
    font-weight: 900;
}

.kw-payout-card h3 {
    color: #ffffff;
    font-size: 38px;
    font-weight: 900;
    margin: 8px 0;
}

.kw-payout-card p {
    color: #c9c1ae;
    font-size: 14px;
    line-height: 1.7;
}

.kw-payout-date {
    padding: 12px;
    border-radius: 16px;
    background: rgba(255,255,255,0.045);
    color: #ffe28a;
    font-size: 13px;
    font-weight: 900;
    margin: 18px 0;
}



/* Mini Cards */
.kw-aff-mini-card {
    height: 100%;
    transition: all 0.35s ease;
}

.kw-aff-mini-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,226,138,0.42);
}

.kw-aff-mini-card > i {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: rgba(216,155,34,0.14);
    color: #ffe28a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
}

.kw-aff-mini-card h4 {
    color: #ffffff;
    font-size: 21px;
    font-weight: 900;
    margin-bottom: 8px;
}

.kw-aff-mini-card p {
    color: #c9c1ae;
    font-size: 14px;
    line-height: 1.6;
}

.kw-aff-mini-card a {
    color: #ffe28a;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 991px) {
    .kw-affiliate-dashboard {
        padding: 22px 14px 50px;
    }

    .kw-affiliate-hero {
        padding: 28px 20px;
    }

    .kw-affiliate-hero h1 {
        font-size: 31px;
    }

    .kw-aff-card-heading {
        flex-direction: column;
    }

    .kw-aff-premium-card,
    .kw-aff-mini-card {
        padding: 22px;
    }
}
/* Premium Affiliate Table */
.kw-premium-table-card {
    padding: 28px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(255, 226, 138, 0.12), transparent 36%),
        linear-gradient(145deg, rgba(17, 16, 11, 0.98), rgba(5, 5, 5, 0.98));
    border: 1px solid rgba(255, 226, 138, 0.18);
    box-shadow:
        0 24px 65px rgba(0, 0, 0, 0.36),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
}

.kw-premium-table-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: 0.4;
    pointer-events: none;
}

.kw-premium-table-card > * {
    position: relative;
    z-index: 2;
}

/* Table Header */
.kw-table-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.kw-table-header span {
    color: #ffe28a;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.kw-table-header h3 {
    color: #ffffff;
    font-size: 26px;
    font-weight: 900;
    margin: 6px 0 0;
}

/* Table */
.kw-aff-table-wrap {
    overflow-x: auto;
    border-radius: 22px;
}

.kw-aff-table {
    min-width: 780px;
    border-collapse: separate;
    border-spacing: 0 12px;
    color: #ffffff;
}

.kw-aff-table thead th {
    color: #ffe28a;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    padding: 0 18px 6px;
    background: transparent;
}

.kw-aff-table tbody tr {
    background: rgba(255, 255, 255, 0.045);
    border-radius: 18px;
    transition: all 0.35s ease;
}

.kw-aff-table tbody tr:hover {
    background: rgba(216, 155, 34, 0.10);
    transform: translateY(-3px);
}

.kw-aff-table tbody td {
    border: none;
    padding: 18px;
    vertical-align: middle;
    color: #d8d0be;
    font-size: 14px;
    font-weight: 700;
        background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 226, 138, 0.14);
}

.kw-aff-table tbody td:first-child {
    border-radius: 18px 0 0 18px;
}

.kw-aff-table tbody td:last-child {
    border-radius: 0 18px 18px 0;
}

/* User Cell */
.kw-user-cell {
    display: flex;
    align-items: center;
    gap: 14px;
}

.kw-user-cell > span {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 15px;
    background: linear-gradient(135deg, #fff0a6, #d89b22);
    color: #050505;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(216, 155, 34, 0.24);
}

.kw-user-cell h6 {
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
    margin: 0 0 3px;
}

.kw-user-cell p {
    color: #9f9788;
    font-size: 12px;
    font-weight: 700;
    margin: 0;
}

/* Badges */
.kw-package-badge {
    padding: 8px 13px;
    border-radius: 50px;
    color: #ffe28a;
    background: rgba(216, 155, 34, 0.12);
    border: 1px solid rgba(255, 226, 138, 0.20);
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
}

.kw-status {
    padding: 8px 13px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.kw-status.success {
    color: #b8ff9a;
    background: rgba(70, 255, 120, 0.10);
    border: 1px solid rgba(70, 255, 120, 0.18);
}

.kw-status.pending {
    color: #ffe28a;
    background: rgba(216, 155, 34, 0.13);
    border: 1px solid rgba(255, 226, 138, 0.18);
}

.kw-status.follow {
    color: #9fd8ff;
    background: rgba(90, 180, 255, 0.12);
    border: 1px solid rgba(90, 180, 255, 0.18);
}

.kw-earning {
    color: #ffe28a;
    font-size: 15px;
    font-weight: 900;
}

.kw-earning.muted {
    color: #8d8678;
}

/* Action Button */
.kw-table-action {
    min-height: 38px;
    padding: 0 16px;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 226, 138, 0.18);
    color: #ffe28a;
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.kw-table-action:hover {
    background: linear-gradient(135deg, #fff0a6, #d89b22);
    color: #050505;
    transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 767px) {
    .kw-premium-table-card {
        padding: 20px;
        border-radius: 24px;
    }

    .kw-table-header {
        flex-direction: column;
        margin-bottom: 18px;
    }

    .kw-table-header h3 {
        font-size: 22px;
    }

    .kw-aff-table {
        min-width: 720px;
    }
}
.mrgin {
    margin-bottom: 20px;
}
.rowalign {
    align-items: flex-start;
}
/* ===========================
   New Luxury Leaderboard CSS
=========================== */

:root {
    --kw-black: #030303;
    --kw-dark: #080704;
    --kw-card: rgba(18, 16, 10, 0.96);
    --kw-glass: rgba(255, 255, 255, 0.045);
    --kw-gold: #d89b22;
    --kw-gold-light: #fff0a6;
    --kw-gold-soft: #ffe28a;
    --kw-muted: #c9c1ae;
    --kw-border: rgba(255, 226, 138, 0.18);
}

/* Main */
.kw-lux-lb-page {
    min-height: 100vh;
    padding: 34px 22px 80px;
    color: #ffffff;
    background:
        radial-gradient(circle at 18% 10%, rgba(216, 155, 34, 0.18), transparent 32%),
        radial-gradient(circle at 82% 18%, rgba(255, 226, 138, 0.08), transparent 30%),
        linear-gradient(180deg, #050505 0%, #020202 100%);
    position: relative;
    overflow: hidden;
}

.kw-lux-lb-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.032) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.032) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.5;
    pointer-events: none;
}

.kw-lux-lb-page .container-fluid {
    position: relative;
    z-index: 2;
}

/* Hero */
.kw-lux-lb-hero {
    padding: 40px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(255, 226, 138, 0.16), transparent 36%),
        linear-gradient(135deg, rgba(18, 16, 10, 0.97), rgba(4, 4, 4, 0.97));
    border: 1px solid rgba(255, 226, 138, 0.22);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
}

.kw-lux-lb-hero::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -110px;
    top: -110px;
    background: rgba(216, 155, 34, 0.25);
    filter: blur(75px);
    border-radius: 50%;
}

.kw-lux-lb-hero .row {
    position: relative;
    z-index: 2;
}

.kw-lux-lb-tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 18px;
    border-radius: 50px;
    background: rgba(216, 155, 34, 0.14);
    border: 1px solid rgba(255, 226, 138, 0.35);
    color: var(--kw-gold-soft);
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 16px;
}

.kw-lux-lb-hero h1 {
    color: #ffffff;
    font-size: 42px;
    line-height: 1.12;
    font-weight: 900;
    margin-bottom: 12px;
}

.kw-lux-lb-hero h1 strong {
    color: var(--kw-gold-soft);
}

.kw-lux-lb-hero p {
    color: var(--kw-muted);
    max-width: 720px;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* Hand */
.kw-wave-hand {
    display: inline-block;
    transform-origin: 70% 70%;
    animation: kwWaveHand 1.8s ease-in-out infinite;
    filter: drop-shadow(0 0 14px rgba(216, 155, 34, 0.55));
}

@keyframes kwWaveHand {
    0%, 100% { transform: rotate(0deg) scale(1); }
    15% { transform: rotate(16deg) scale(1.08); }
    30% { transform: rotate(-10deg) scale(1.08); }
    45% { transform: rotate(14deg) scale(1.06); }
    60% { transform: rotate(0deg) scale(1); }
}

/* Hero Stats */
.kw-lux-lb-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.kw-lux-lb-hero-stats div {
    min-width: 145px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,226,138,0.14);
}

.kw-lux-lb-hero-stats span {
    display: block;
    color: #a9a08d;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 5px;
}

.kw-lux-lb-hero-stats strong {
    color: var(--kw-gold-soft);
    font-size: 23px;
    font-weight: 900;
}

/* Rank Card */
.kw-lux-user-rank-card {
    padding: 26px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(255, 226, 138, 0.12), transparent 36%),
        rgba(255,255,255,0.045);
    border: 1px solid rgba(255,226,138,0.18);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.kw-lux-rank-content span {
    color: var(--kw-gold-soft);
    font-size: 20px;
    font-weight: 900;
}

.kw-lux-rank-content h3 {
    color: #ffffff;
    font-size: 45px !important;
    font-weight: 900;
    margin: 6px 0;
}

.kw-lux-rank-content p {
    color: var(--kw-muted);
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

.kw-lux-rank-avatar {
    width: 88px;
    height: 88px;
    min-width: 88px;
    padding: 4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--kw-gold-light), var(--kw-gold));
    box-shadow: 0 0 35px rgba(216,155,34,0.32);
}

.kw-lux-rank-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #050505;
}

/* Tabs */
.kw-lux-lb-tabs,
.kw-lux-period-tabs {
    padding: 10px;
    border-radius: 30px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,226,138,0.14);
    display: flex;
    gap: 10px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.28);
}

.kw-lux-lb-tabs {
    max-width: 780px;
    margin: 0 auto 34px;
}

.kw-lux-lb-tab,
.kw-lux-period-btn {
    flex: 1;
    min-height: 48px;
    border: none;
    border-radius: 24px;
    background: transparent;
    color: var(--kw-gold-soft);
    font-size: 14px;
    font-weight: 900;
    transition: all 0.35s ease;
}

.kw-lux-lb-tab.active,
.kw-lux-lb-tab:hover,
.kw-lux-period-btn.active,
.kw-lux-period-btn:hover {
    background: linear-gradient(135deg, var(--kw-gold-light), var(--kw-gold));
    color: #050505;
    box-shadow: 0 14px 30px rgba(216,155,34,0.30);
}

/* Common Heading */
.kw-lux-card-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 26px;
}

.kw-lux-card-heading span {
    color: var(--kw-gold-soft);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.kw-lux-card-heading h3 {
    color: #ffffff;
    font-size: 25px;
    font-weight: 900;
    margin: 6px 0 0;
}

.kw-lux-card-heading > i {
    width: 52px;
    height: 52px;
    border-radius: 17px;
    background: rgba(216,155,34,0.14);
    color: var(--kw-gold-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.kw-lux-card-heading a {
    min-height: 42px;
    padding: 0 16px;
    border-radius: 14px;
    color: var(--kw-gold-soft);
    background: rgba(216,155,34,0.12);
    border: 1px solid rgba(255,226,138,0.22);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 900;
}

/* Podium */
.kw-lux-podium-card,
.kw-lux-rank-list-card,
.kw-lux-column-card {
    padding: 28px;
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(255,226,138,0.11), transparent 36%),
        linear-gradient(145deg, rgba(18,16,10,0.96), rgba(5,5,5,0.96));
    border: 1px solid rgba(255,226,138,0.18);
    box-shadow: 0 24px 65px rgba(0,0,0,0.36);
    position: relative;
    overflow: hidden;
}

.kw-lux-podium-card::before,
.kw-lux-rank-list-card::before,
.kw-lux-column-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: 0.35;
    pointer-events: none;
}

.kw-lux-podium-card > *,
.kw-lux-rank-list-card > *,
.kw-lux-column-card > * {
    position: relative;
    z-index: 2;
}

.kw-lux-winner-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    gap: 16px;
    align-items: end;
}

.kw-lux-winner-card {
    padding: 24px 14px;
    border-radius: 26px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,226,138,0.14);
    text-align: center;
    position: relative;
    transition: all 0.35s ease;
}

.kw-lux-winner-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,226,138,0.40);
}

.kw-lux-winner-card.first {
    min-height: 340px;
    background:
        radial-gradient(circle at top, rgba(255,226,138,0.20), transparent 42%),
        rgba(255,255,255,0.055);
    border-color: rgba(255,226,138,0.38);
}

.kw-lux-winner-card.second {
    min-height: 295px;
}

.kw-lux-winner-card.third {
    min-height: 270px;
}

.kw-crown-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--kw-gold-light), var(--kw-gold));
    color: #050505;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -6px auto 10px;
    box-shadow: 0 12px 28px rgba(216,155,34,0.32);
}

.kw-rank-medal {
    display: inline-flex;
    padding: 7px 13px;
    border-radius: 50px;
    background: rgba(216,155,34,0.14);
    border: 1px solid rgba(255,226,138,0.24);
    color: var(--kw-gold-soft);
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 14px;
}

.kw-winner-avatar {
    width: 86px;
    height: 86px;
    margin: 0 auto 14px;
    padding: 4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--kw-gold-light), var(--kw-gold));
}

.kw-lux-winner-card.first .kw-winner-avatar {
    width: 106px;
    height: 106px;
}

.kw-winner-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #050505;
}

.kw-lux-winner-card h4 {
    color: #ffffff;
    font-size: 17px;
    font-weight: 900;
    margin-bottom: 6px;
}

.kw-lux-winner-card p {
    color: var(--kw-muted);
    font-size: 13px;
    margin-bottom: 12px;
}

.kw-lux-winner-card strong {
    display: inline-flex;
    padding: 9px 15px;
    border-radius: 14px;
    background: rgba(0,0,0,0.45);
    color: var(--kw-gold-soft);
    font-size: 15px;
    font-weight: 900;
}

/* Ranking List */
.kw-lux-rank-list {
    display: grid;
    gap: 15px;
    /*max-height: 440px;*/
    overflow-y: auto;
    padding-right: 8px;
}

.kw-lux-rank-list::-webkit-scrollbar {
    width: 4px;
}

.kw-lux-rank-list::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--kw-gold-light), var(--kw-gold));
    border-radius: 20px;
}

.kw-lux-rank-row {
    min-height: 82px;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,226,138,0.13);
    display: grid;
    grid-template-columns: 34px 52px 1fr auto;
    align-items: center;
    gap: 14px;
    transition: all 0.35s ease;
}

.kw-lux-rank-row:hover {
    transform: translateY(-4px);
    background: rgba(216,155,34,0.10);
    border-color: rgba(255,226,138,0.34);
}

.kw-rank-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--kw-gold-soft);
    color: var(--kw-gold-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
}

.kw-lux-rank-row img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,226,138,0.45);
}

.kw-lux-rank-row h5 {
    color: #ffffff;
    font-size: 14px !important;
    font-weight: 900;
    margin-bottom: 4px;
}

.kw-lux-rank-row p {
    color: #9f9788;
    font-size: 12px;
    margin: 0;
}

.kw-lux-rank-row strong {
    color: var(--kw-gold-soft);
    font-size: 22px;
    font-weight: 900;
}

/* Divider */
.kw-lux-section-divider {
    height: 1px;
    margin: 40px auto 32px;
    max-width: 900px;
    background: linear-gradient(90deg, transparent, rgba(255,226,138,0.38), transparent);
}

/* Period Tabs */
.kw-lux-period-tabs {
    margin-bottom: 34px;
}

/* Bottom Columns */
.kw-lux-column-card {
    height: 100%;
}

.kw-lux-column-head {
    margin-bottom: 22px;
}

.kw-lux-column-head span {
    display: inline-flex;
    padding: 8px 16px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--kw-gold-light), var(--kw-gold));
    color: #050505;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 12px;
}

.kw-lux-column-head h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 900;
    margin: 0;
}

.kw-lux-small-rank-list {
    display: grid;
    gap: 14px;
}

.kw-lux-small-rank {
    min-height: 78px;
    padding: 15px 16px;
    border-radius: 20px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,226,138,0.14);
    display: grid;
    grid-template-columns: 28px 50px 1fr;
    align-items: center;
    gap: 14px;
    transition: all 0.35s ease;
}

.kw-lux-small-rank:hover {
    transform: translateY(-4px);
    background: rgba(216,155,34,0.10);
    border-color: rgba(255,226,138,0.34);
}

.kw-lux-small-rank > span {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid var(--kw-gold-soft);
    color: var(--kw-gold-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
}

.kw-lux-small-rank img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,226,138,0.42);
}

.kw-lux-small-rank h5 {
    color: #ffffff;
    font-size: 14px !important;
    font-weight: 900;
    margin-bottom: 4px;
}

.kw-lux-small-rank p {
    color: var(--kw-gold-soft);
    font-size: 13px;
    font-weight: 900;
    margin: 0;
}

/* Responsive */
@media (max-width: 1199px) {
    .kw-lux-winner-grid {
        grid-template-columns: 1fr;
    }

    .kw-lux-winner-card,
    .kw-lux-winner-card.first,
    .kw-lux-winner-card.second,
    .kw-lux-winner-card.third {
        min-height: auto;
    }
}

@media (max-width: 991px) {
    .kw-lux-lb-page {
        padding: 22px 14px 50px;
    }

    .kw-lux-lb-hero {
        padding: 28px 20px;
        border-radius: 28px;
    }

    .kw-lux-lb-hero h1 {
        font-size: 31px;
    }

    .kw-lux-lb-tabs,
    .kw-lux-period-tabs {
        overflow-x: auto;
        justify-content: flex-start;
    }

    .kw-lux-lb-tab,
    .kw-lux-period-btn {
        min-width: 190px;
        white-space: nowrap;
    }

    .kw-lux-rank-row {
        grid-template-columns: 34px 48px 1fr;
    }

    .kw-lux-rank-row strong {
        grid-column: 3;
        font-size: 18px;
    }

    .kw-lux-user-rank-card {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575px) {
    .kw-lux-lb-hero-stats {
        display: grid;
        grid-template-columns: 1fr;
    }

    .kw-lux-podium-card,
    .kw-lux-rank-list-card,
    .kw-lux-column-card {
        padding: 22px;
        border-radius: 26px;
    }

    .kw-lux-small-rank {
        grid-template-columns: 26px 46px 1fr;
    }
}
/* Lead Management Premium Page */
:root {
    --kw-black: #030303;
    --kw-card: rgba(18, 16, 10, 0.96);
    --kw-glass: rgba(255, 255, 255, 0.045);
    --kw-gold: #d89b22;
    --kw-gold-light: #fff0a6;
    --kw-gold-soft: #ffe28a;
    --kw-muted: #c9c1ae;
    --kw-border: rgba(255, 226, 138, 0.18);
}

.kw-lead-page {
    min-height: 100vh;
    padding: 34px 22px 80px;
    color: #ffffff;
    background:
        radial-gradient(circle at 18% 10%, rgba(216, 155, 34, 0.18), transparent 32%),
        radial-gradient(circle at 85% 15%, rgba(255, 226, 138, 0.08), transparent 30%),
        linear-gradient(180deg, #050505 0%, #020202 100%);
    position: relative;
    overflow: hidden;
}

.kw-lead-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.032) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.032) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.5;
    pointer-events: none;
}

.kw-lead-page .container-fluid {
    position: relative;
    z-index: 2;
}

/* Hero */
.kw-lead-hero {
    padding: 38px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(255, 226, 138, 0.16), transparent 36%),
        linear-gradient(135deg, rgba(18, 16, 10, 0.97), rgba(4, 4, 4, 0.97));
    border: 1px solid rgba(255, 226, 138, 0.22);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
}

.kw-lead-hero::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -110px;
    top: -110px;
    background: rgba(216, 155, 34, 0.25);
    filter: blur(75px);
    border-radius: 50%;
}

.kw-lead-hero .row {
    position: relative;
    z-index: 2;
}

.kw-lead-tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 18px;
    border-radius: 50px;
    background: rgba(216, 155, 34, 0.14);
    border: 1px solid rgba(255, 226, 138, 0.35);
    color: var(--kw-gold-soft);
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 16px;
}

.kw-lead-hero h1 {
    color: #ffffff;
    font-size: 42px;
    line-height: 1.12;
    font-weight: 900;
    margin-bottom: 12px;
}

.kw-lead-hero h1 strong {
    color: var(--kw-gold-soft);
}

.kw-lead-hero p {
    color: var(--kw-muted);
    max-width: 720px;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.kw-lead-hero-actions {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
    flex-wrap: wrap;
}

/* Buttons */
.kw-gold-btn,
.kw-outline-btn,
.kw-search-btn {
    min-height: 48px;
    padding: 0 22px;
    border-radius: 15px;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 900;
    transition: all 0.35s ease;
}

.kw-gold-btn,
.kw-search-btn {
    background: linear-gradient(135deg, var(--kw-gold-light), var(--kw-gold));
    color: #050505;
    box-shadow: 0 14px 32px rgba(216,155,34,0.30);
}

.kw-outline-btn {
    color: var(--kw-gold-soft);
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,226,138,0.22);
}

.kw-gold-btn:hover,
.kw-outline-btn:hover,
.kw-search-btn:hover {
    color: #050505;
    background: linear-gradient(135deg, var(--kw-gold-light), var(--kw-gold));
    transform: translateY(-3px);
}

.kw-search-btn {
    width: 100%;
}

/* Stats */
.kw-lead-stats-row {
    margin-bottom: 28px;
    padding: 0 15px;
}

.kw-lead-stat-card {
    height: 100%;
    padding: 25px;
    border-radius: 26px;
    background:
        radial-gradient(circle at top right, rgba(255,226,138,0.12), transparent 35%),
        rgba(255,255,255,0.045);
    border: 1px solid rgba(255,226,138,0.16);
    box-shadow: 0 22px 55px rgba(0,0,0,0.28);
    transition: all 0.35s ease;
}

.kw-lead-stat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,226,138,0.42);
}

.kw-lead-stat-icon {
    width: 54px;
    height: 54px;
    border-radius: 17px;
    background: rgba(216,155,34,0.14);
    color: var(--kw-gold-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 17px;
}

.kw-lead-stat-card span {
    color: #bfb6a3;
    font-size: 13px;
    font-weight: 800;
}

.kw-lead-stat-card h3 {
    color: #ffffff;
    font-size: 18px !important;
    font-weight: 900;
    margin: 6px 0;
}

.kw-lead-stat-card p {
    margin: 0;
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 900;
}

.kw-positive {
    color: #b8ff9a;
    background: rgba(70,255,120,0.10);
}

.kw-warning {
    color: var(--kw-gold-soft);
    background: rgba(216,155,34,0.13);
}

/* Filter Card */
.kw-lead-filter-card,
.kw-lead-table-card {
    padding: 28px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(255,226,138,0.11), transparent 36%),
        linear-gradient(145deg, rgba(18,16,10,0.96), rgba(5,5,5,0.96));
    border: 1px solid rgba(255,226,138,0.18);
    box-shadow: 0 24px 65px rgba(0,0,0,0.36);
    position: relative;
    overflow: hidden;
    margin-bottom: 28px;
}

.kw-lead-filter-card::before,
.kw-lead-table-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: 0.35;
    pointer-events: none;
}

.kw-lead-filter-card > *,
.kw-lead-table-card > * {
    position: relative;
    z-index: 2;
}

.kw-lead-filter-head,
.kw-lead-table-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.kw-lead-filter-head span,
.kw-lead-table-head span {
    color: var(--kw-gold-soft);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.kw-lead-filter-head h3,
.kw-lead-table-head h3 {
    color: #ffffff;
    font-size: 26px;
    font-weight: 900;
    margin: 6px 0 0;
}

.kw-form-control {
    min-height: 56px;
    border-radius: 17px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,226,138,0.14);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
    transition: all 0.3s ease;
}

.kw-form-control:focus-within {
    border-color: rgba(255,226,138,0.52);
    box-shadow: 0 0 0 4px rgba(216,155,34,0.10);
}

.kw-form-control i {
    color: var(--kw-gold-soft);
    font-size: 15px;
}

.kw-form-control input,
.kw-form-control select {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.kw-form-control input::placeholder {
    color: #9f9788;
}

.kw-form-control select option {
    color: #050505;
}

/* Table */
.kw-table-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.kw-table-scroll {
    /*overflow-x: auto;*/
    border-radius: 22px;
}

.kw-lead-table {
    min-width: 1180px;
    border-collapse: separate;
    border-spacing: 0 14px;
    color: #ffffff;
}

.kw-lead-table thead th {
    color: var(--kw-gold-soft);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    background: transparent;
    padding: 0 18px 8px;
}

.kw-lead-table tbody td {
    border: none;
    padding: 18px;
    vertical-align: middle;
    color: #d8d0be;
    font-size: 14px;
    font-weight: 700;
    background: rgba(255,255,255,0.045);
    border-top: 1px solid rgba(255,226,138,0.12);
    border-bottom: 1px solid rgba(255,226,138,0.12);
}

.kw-lead-table tbody tr {
    transition: all 0.35s ease;
}

.kw-lead-table tbody tr:hover {
    transform: translateY(-3px);
}

.kw-lead-table tbody td:first-child {
    border-left: 1px solid rgba(255,226,138,0.12);
    border-radius: 18px 0 0 18px;
}

.kw-lead-table tbody td:last-child {
    border-right: 1px solid rgba(255,226,138,0.12);
    border-radius: 0 18px 18px 0;
}

.kw-lead-user {
    display: flex;
    align-items: center;
    gap: 14px;
}

.kw-lead-user > span {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--kw-gold-light), var(--kw-gold));
    color: #050505;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
}

.kw-lead-user h6 {
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
    margin: 0 0 4px;
}

.kw-lead-user p {
    color: #9f9788;
    font-size: 12px;
    margin: 0;
}

.kw-package-badge,
.kw-status {
    padding: 8px 13px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.kw-package-badge {
    color: var(--kw-gold-soft);
    background: rgba(216,155,34,0.12);
    border: 1px solid rgba(255,226,138,0.20);
}

.kw-status.new {
    color: #9fd8ff;
    background: rgba(90,180,255,0.12);
    border: 1px solid rgba(90,180,255,0.18);
}

.kw-status.success {
    color: #b8ff9a;
    background: rgba(70,255,120,0.10);
    border: 1px solid rgba(70,255,120,0.18);
}

.kw-status.follow {
    color: var(--kw-gold-soft);
    background: rgba(216,155,34,0.13);
    border: 1px solid rgba(255,226,138,0.18);
}

/* Action Area */
.kw-lead-action-group {
    width: 155px;
    display: grid;
    gap: 8px;
}

.kw-lead-action-group select {
    min-height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255,226,138,0.16);
    background: rgba(255,255,255,0.055);
    color: #ffffff;
    padding: 0 12px;
    outline: none;
    font-size: 13px;
    font-weight: 800;
}

.kw-lead-action-group select option {
    color: #050505;
}

.kw-action-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.kw-action-btns a,
.kw-lead-action-group .mail,
.kw-lead-action-group .copy {
    min-height: 38px;
    border-radius: 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
    transition: all 0.3s ease;
}

.kw-action-btns .edit {
    color: #050505;
    background: linear-gradient(135deg, var(--kw-gold-light), var(--kw-gold));
}

.kw-action-btns .delete {
    color: #ffffff;
    background: #e74c3c;
}

.kw-lead-action-group .mail {
    color: #050505;
    background: linear-gradient(135deg, var(--kw-gold-light), var(--kw-gold));
}

.kw-lead-action-group .copy {
    color: var(--kw-gold-soft);
    border: 1px solid rgba(255,226,138,0.18);
    background: rgba(255,255,255,0.055);
}

/* Pagination */
.kw-lead-pagination {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,226,138,0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.kw-lead-pagination p {
    color: var(--kw-muted);
    font-size: 13px;
    font-weight: 700;
    margin: 0;
}

.kw-lead-pagination div {
    display: flex;
    gap: 8px;
}

.kw-lead-pagination a {
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border-radius: 12px;
    color: var(--kw-gold-soft);
    text-decoration: none;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,226,138,0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
}

.kw-lead-pagination a.active,
.kw-lead-pagination a:hover {
    color: #050505;
    background: linear-gradient(135deg, var(--kw-gold-light), var(--kw-gold));
}

/* Responsive */
@media (max-width: 991px) {
    .kw-lead-page {
        padding: 22px 14px 50px;
    }

    .kw-lead-hero {
        padding: 28px 20px;
        border-radius: 28px;
    }

    .kw-lead-hero h1 {
        font-size: 31px;
    }

    .kw-lead-hero-actions {
        justify-content: flex-start;
    }

    .kw-lead-filter-head,
    .kw-lead-table-head {
        flex-direction: column;
    }

    .kw-lead-filter-card,
    .kw-lead-table-card {
        padding: 22px;
        border-radius: 26px;
    }

    .kw-table-actions {
        width: 100%;
    }

    .kw-table-actions .kw-outline-btn,
    .kw-table-actions .kw-gold-btn {
        width: 100%;
    }

    .kw-lead-pagination {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575px) {
    .kw-lead-hero-actions .kw-outline-btn,
    .kw-lead-hero-actions .kw-gold-btn {
        width: 100%;
    }

    .kw-lead-table {
        min-width: 1080px;
    }
}
/* Bigger Premium Pulse Avatar */
.kw-lux-rank-avatar-wrap {
    width: 280px;
    height: 280px;
    min-width: 280px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: kwBigAvatarFloat 4s ease-in-out infinite;
}

.kw-lux-rank-avatar {
    /*width: 185px;*/
    /*height: 185px;*/
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 5;
    padding: 5px;
    background: linear-gradient(135deg, #fff0a6, #d89b22);
    box-shadow:
        0 0 0 8px rgba(255, 226, 138, 0.10),
        0 0 35px rgba(216, 155, 34, 0.55),
        0 0 75px rgba(216, 155, 34, 0.25);
    animation: kwBigAvatarPulse 2.4s ease-in-out infinite;
    margin: 0 auto;
}

.kw-lux-rank-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #050505;
    display: block;
}

/* Pulse Rings */
.kw-lux-rank-avatar-wrap::before,
.kw-lux-rank-avatar-wrap::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 226, 138, 0.45);
    animation: kwPulseRingBig 2.8s ease-out infinite;
}

.kw-lux-rank-avatar-wrap::before {
    width: 215px;
    height: 215px;
}

.kw-lux-rank-avatar-wrap::after {
    width: 245px;
    height: 245px;
    animation-delay: 1.1s;
    border-color: rgba(216, 155, 34, 0.28);
}

/* Main Pulse */
@keyframes kwBigAvatarPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow:
            0 0 0 8px rgba(255, 226, 138, 0.10),
            0 0 35px rgba(216, 155, 34, 0.50),
            0 0 75px rgba(216, 155, 34, 0.22);
    }

    50% {
        transform: scale(1.08);
        box-shadow:
            0 0 0 15px rgba(255, 226, 138, 0.16),
            0 0 55px rgba(255, 226, 138, 0.85),
            0 0 110px rgba(216, 155, 34, 0.40);
    }
}

/* Outer Pulse Rings */
@keyframes kwPulseRingBig {
    0% {
        transform: scale(0.82);
        opacity: 0.85;
    }

    70% {
        opacity: 0.18;
    }

    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}

/* Soft Floating */
@keyframes kwBigAvatarFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Mobile */
@media (max-width: 991px) {
    .kw-lux-rank-avatar-wrap {
        width: 230px;
        height: 230px;
        min-width: 230px;
    }

    .kw-lux-rank-avatar {
        width: 155px;
        height: 155px;
    }

    .kw-lux-rank-avatar-wrap::before {
        width: 185px;
        height: 185px;
    }

    .kw-lux-rank-avatar-wrap::after {
        width: 210px;
        height: 210px;
    }
}
@media only screen and (max-width: 767px)
{

.mainsection {
    padding-bottom: 50px !important;
}
.fc-list-empty-cushion {
    color: black !important;
}


    .kw-affiliate-stats .col-xl-3 {
        width: 49%;
        padding: 0;
        margin: 0;
    }
.kw-aff-stat-card {
    padding: 10px;
}

.kw-user-cell h6 {
    font-size: 15px !important;
}
.kw-payout-card h3 { 
 font-size: 38px !important;
  
}
    .kw-aff-premium-card, .kw-aff-mini-card {
            margin-top: 10px;
    }




.kw-lead-stats-row .col-xl-3 {
        width: 50%;
        padding: 5px;
        margin: 0;
    }


/*
    .kw-lead-stats-row {
        gap: 6px 6px !important;
        padding: 20px !important;
        margin-bottom: 0;
    }*/

.kw-lead-stat-card {
    padding: 13px;
}
    .kw-lead-stat-card p {
        font-size: 7px !important;
    }
.mainsection .col-lg-10 {
    margin: 0;
}

}


/*Affiliate CSS Close*/



/* Smooth Animation */
.kw-lux-winner-card{
    transition:all .45s cubic-bezier(.175,.885,.32,1.275);
    position:relative;
    z-index:1;
}

/* Hover hone par sab blur */
.kw-lux-winner-grid:hover .kw-lux-winner-card{
    filter:blur(4px);
    opacity:.45;
    transform:scale(.92);
}

/* Hovered Card Highlight */
.kw-lux-winner-grid .kw-lux-winner-card:hover{
    filter:none;
    opacity:1;
    transform:translateY(-15px) scale(1.08);
    z-index:10;
    box-shadow:
        0 25px 60px rgba(0,0,0,.35),
        0 0 35px rgba(255,211,107,.35);
}

/* Golden Glow */
.kw-lux-winner-grid .kw-lux-winner-card:hover::before{
    content:"";
    position:absolute;
    inset:-2px;
    border-radius:inherit;
    padding:2px;
    background:linear-gradient(
        135deg,
        #8b5a00,
        #ffd36b,
        #fff6c2,
        #c78b14
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite:xor;
    mask-composite:exclude;
    animation:goldBorder 2s linear infinite;
}

@keyframes goldBorder{
    0%{
        filter:hue-rotate(0deg);
    }
    100%{
        filter:hue-rotate(360deg);
    }
}


/* Premium Laravel Pagination - Knowledge Wave Theme */
.kw-lead-pagination {
    width: 100% !important;
    padding: 0px 0 0 !important;
    margin-top: 0px !important;
    border-top: 1px solid rgba(255, 226, 138, 0.14) !important;
}

.kw-lead-pagination nav {
    width: 100% !important;
}

.kw-lead-pagination .hidden.sm\:flex-1,
.kw-lead-pagination .sm\:flex,
.kw-lead-pagination .sm\:items-center,
.kw-lead-pagination .sm\:justify-between {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0px !important;
    flex-wrap: wrap !important;
    margin-bottom: 10px;
}

.kw-lead-pagination p,
.kw-lead-pagination .text-sm,
.kw-lead-pagination .text-gray-700 {
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.72) !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    line-height: 1.6 !important;
    display: none;
}

.kw-lead-pagination p span,
.kw-lead-pagination .font-medium {
    min-width: auto !important;
    height: auto !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: #ffe28a !important;
    font-weight: 900 !important;
}

/* Pagination Button Wrapper */
.kw-lead-pagination .relative.z-0.inline-flex,
.kw-lead-pagination .inline-flex.shadow-sm,
.kw-lead-pagination .rounded-md {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 8px !important;
    border-radius: 22px !important;
    background: rgba(255, 255, 255, 0.035) !important;
    border: 1px solid rgba(255, 226, 138, 0.14) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 18px 42px rgba(0, 0, 0, 0.28) !important;
}

/* All Pagination Links */
.kw-lead-pagination a,
.kw-lead-pagination span[aria-current="page"] > span,
.kw-lead-pagination span[aria-disabled="true"] > span,
.kw-lead-pagination span[aria-disabled="true"],
.kw-lead-pagination span[aria-disabled="true"] span,
.kw-lead-pagination span[aria-disabled="true"] svg,
.kw-lead-pagination .page-link {
    min-width: 21px !important;
    height: 37px !important;
    padding: 0 15px !important;
    border-radius: 15px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025)) !important;
    border: 1px solid rgba(255, 226, 138, 0.16) !important;
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    text-decoration: none !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.05),
        0 10px 24px rgba(0,0,0,0.18) !important;
    transition: all 0.3s ease !important;
    margin: 0 !important;
    transform: none !important;
}

/* Current Active Page */
.kw-lead-pagination span[aria-current="page"] > span,
.kw-lead-pagination .active,
.kw-lead-pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #fff0a6 0%, #d89b22 55%, #9b6813 100%) !important;
    color: #050505 !important;
    border-color: rgba(255, 226, 138, 0.78) !important;
    box-shadow:
        0 14px 34px rgba(216, 155, 34, 0.38),
        0 0 24px rgba(255, 226, 138, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.65) !important;
}

/* Hover */
.kw-lead-pagination a:hover {
    background: linear-gradient(135deg, #fff0a6 0%, #d89b22 52%, #9b6813 100%) !important;
    color: #050505 !important;
    border-color: rgba(255, 226, 138, 0.85) !important;
    transform: translateY(-3px) !important;
    box-shadow:
        0 16px 36px rgba(216, 155, 34, 0.36),
        0 0 22px rgba(255, 226, 138, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.60) !important;
}

/* Disabled Previous */
.kw-lead-pagination span[aria-disabled="true"] > span {
    opacity: 0.42 !important;
    cursor: not-allowed !important;
    background: rgba(255, 255, 255, 0.025) !important;
    color: rgba(255, 255, 255, 0.38) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    box-shadow: none !important;
}

/* SVG Arrows */
.kw-lead-pagination svg {
    width: 18px !important;
    height: 18px !important;
}

/* Dots */
.kw-lead-pagination span[aria-disabled="true"] span:not(:has(svg)) {
    color: rgba(255, 226, 138, 0.58) !important;
}

/* Mobile Previous / Next */
.kw-lead-pagination .sm\:hidden {
    width: 100% !important;
    gap: 12px !important;
}

.kw-lead-pagination .sm\:hidden a,
.kw-lead-pagination .sm\:hidden span {
    flex: 1 !important;
    min-height: 46px !important;
    border-radius: 16px !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .kw-lead-pagination .hidden.sm\:flex-1,
    .kw-lead-pagination .sm\:flex {
        justify-content: center !important;
        text-align: center !important;
    }

    .kw-lead-pagination .hidden.sm\:flex-1 > div:first-child {
        width: 100% !important;
    }

    .kw-lead-pagination .relative.z-0.inline-flex {
        justify-content: center !important;
        /*flex-wrap: wrap !important;*/
    }

    .kw-lead-pagination a,
    .kw-lead-pagination span[aria-current="page"] > span,
    .kw-lead-pagination span[aria-disabled="true"] > span {
        min-width: 40px !important;
        height: 40px !important;
        padding: 0 13px !important;
        font-size: 17px !important;
    }
}


.policy-more-btn.active i {
    transform: rotate(180deg);
}
.talk-to-expert {
    padding: 12px 20px !important;
    text-transform: none !important;
}


.kw-learning-stats > div  {
    text-align:center;
}

body.kw-theme-light  .kw-lead-user > span{
    background: linear-gradient(135deg, #2563eb, #38bdf8);
    color: white;
}
.kw-welcome {
    padding: 0 15px;
}
@media (max-width: 767px)
{
    .btn-highlighted.remove-btn {
        padding: 0 2px 0 10px;
    }
    .kw-lead-user h6 {
        font-size: 11px !important;
        margin: 0;
    }
}