
/** account-section **/

.account-section{
  position: relative;
  background: #F7F7F7;
  border-radius: 40px;
  overflow: hidden;
}

.account-section .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.account-block-one{
  margin-top: 28px;
}

.account-block-one .inner-box{
  position: relative;
  display: block;
  background: #fff;
  box-shadow: 0px 4px 50px 10px rgba(0, 0, 0, 0.04);
  border-radius: 10px;
  padding: 51px 30px 30px 30px;
  margin-bottom: 30px;
  transition: all 500ms ease;
}

.account-block-one .inner-box:hover{
  box-shadow: 0px 10px 80px 10px rgba(0, 0, 0, 0.15);
}

.account-block-one .inner-box .icon-box{
  position: absolute;
  display: inline-block;
  left: 30px;
  top: -28px;
  width: 56px;
  height: 56px;
  line-height: 56px;
  border-radius: 10px;
  text-align: center;
  font-size: 24px;
  color: #fff;
  overflow: hidden;
  z-index: 1;
}

.account-block-one .inner-box .icon-box:before{
  position: absolute;
  content: '';
  background: var(--secondary-color);
  width: 100%;
  height: 0%;
  left: 0px;
  top: 0px;
  border-radius: 10px;
  z-index: -1;
  transition: all 500ms ease;
}

.account-block-one .inner-box:hover .icon-box:before{
  height: 100%;
}

.account-block-one .inner-box h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 11px;
}

.account-block-one .inner-box h3 a{
  color: var(--title-color);
}

.account-block-one .inner-box h3 a:hover{

}


/** account-style-two **/

.account-style-two{
  position: relative;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  overflow: hidden;
}

.account-style-two::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="15" fill="rgba(0,0,0,0.03)"/><circle cx="80" cy="80" r="25" fill="rgba(0,0,0,0.02)"/><circle cx="50" cy="50" r="30" fill="rgba(0,0,0,0.01)"/></svg>');
  background-size: 300px 300px;
  animation: float-bg 25s ease-in-out infinite;
  z-index: 0;
}

.account-style-two > .auto-container{
  position: relative;
  z-index: 1;
}

.account-block-two{
  position: relative;
  margin-top: 30px;
}

.account-block-two .inner-box{
  position: relative;
  display: block;
  background: #fff;
  border-radius: 10px;
  padding: 50px 30px 30px 30px;
  margin-bottom: 30px;
  z-index: 1;
}

.account-block-two .inner-box:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  transform: scaleX(0);
  transform-origin: center;
  z-index: -1;
  border-radius: 10px;
  transition: all 500ms ease;
}

.account-block-two .inner-box:hover:before{
  transform: scaleX(1);
}

.account-block-two .inner-box .icon-box{
  position: absolute;
  left: 50%;
  top: -30px;
  margin-left: -32px;
  width: 64px;
  height: 64px;
  line-height: 64px;
  text-align: center;
  font-size: 36px;
  color: #fff;
  border-radius: 50%;
  transition: all 500ms ease;
}

.account-block-two .inner-box:hover .icon-box{
  background: #fff;
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.08);
}

.account-block-two .inner-box h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 10px;
}

.account-block-two .inner-box h3 a{
  display: inline-block;
  color: var(--title-color);
}

.account-block-two .inner-box h3 a:hover{
  text-decoration: underline;
}

.account-block-two .inner-box:hover h3 a,
.account-block-two .inner-box:hover p{
  color: #fff;
}

.account-block-two .inner-box p{
  margin-bottom: 18px;
  transition: all 500ms ease;
}

.account-block-two .inner-box:hover .btn-box .theme-btn{
  background: #fff;
  color: var(--theme-color) !important;
}

.account-style-two .pattern-layer .pattern-1{
  position: absolute;
  left: 0px;
  top: -1px;
  width: 100%;
  height: 43px;
  background-size: 100% 100%;
}

.account-style-two .pattern-layer .pattern-2{
  position: absolute;
  left: 0px;
  bottom: -1px;
  width: 100%;
  height: 43px;
  background-size: 100% 100%;
}


/** account-style-three **/

.account-style-three{
  position: relative;
}

.content_block_eight .content-box{
  position: relative;
  display: block;
}

.content_block_eight .content-box .text-box p{
  font-size: 18px;
  line-height: 28px;
  max-width: 520px;
  margin-bottom: 30px;
}

.content_block_eight .content-box .text-box .list-style-one li:before{
  border-radius: 50%;
  background-color: rgba(34, 130, 58, 0.20);
}

.account-style-two.account-page .account-block-two .inner-box{
  box-shadow: 0px 4px 50px 10px rgba(0, 0, 0, 0.04);
}

.account-style-two.account-page .account-block-two .inner-box p{
  margin-bottom: 0px;
}

.feature-account .inner-container{
  position: relative;
  display: block;
  background: #fff;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  overflow: hidden;
}

.feature-account .inner-container .single-item{
  position: relative;
  float: left;
  width: 20%;
}

.feature-account .single-item{
  position: relative;
  display: block;
  padding: 46px 15px 40px 10px;
  border-right: 1px solid #e5e5e5;
  min-height: 385px;
}

.feature-account .single-item:last-child{
  border-right: none;
}

.feature-account .single-item .icon-box{
  position: relative;
  display: inline-block;
  font-size: 46px;
  line-height: 46px;
  margin-bottom: 23px;
}

.feature-account .single-item h4{
  display: block;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 20px;
}

.feature-account .single-item h4 a{
  display: inline-block;
  color: var(--title-color);
}

.feature-account .single-item h4 a:hover{

}

.feature-account .single-item .list-style-one li{
  margin-bottom: 13px;
}

.feature-account .single-item .list-style-one li:last-child{
  margin-bottom: 0px;
}

.feature-account .single-item .list-style-one li:before{
  width: 20px;
  height: 20px;
  line-height: 20px;
  background: transparent;
  border: solid;
  border-width: 1px;
  border-radius: 50%;
  font-size: 10px;
}

.feature-account .inner-container .shape{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.feature-account .inner-container{
    position: relative;
    display: block;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 60px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.08);
}

/* optional subtle background texture */
.feature-account .inner-container::before{
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(0,0,0,0.015), transparent 30%, rgba(0,0,0,0.02) 100%);
    pointer-events: none;
    z-index: 0;
}

.feature-account .inner-container .single-item{
    position: relative;
    float: left;
    width: 20%;
    z-index: 1;
}

.feature-account .single-item{
    position: relative;
    display: block;
    padding: 48px 18px 42px 18px;
    border-right: 1px solid rgba(0,0,0,0.08);
    min-height: 385px;
    background: #ffffff;
    transition: 
        transform 0.45s ease,
        box-shadow 0.45s ease,
        background 0.45s ease;
    overflow: hidden;
}

/* animated shine layer */
.feature-account .single-item::before{
    content: "";
    position: absolute;
    top: 0;
    left: -130%;
    width: 90%;
    height: 100%;
    background: linear-gradient(
        100deg,
        transparent 0%,
        rgba(255,255,255,0.85) 50%,
        transparent 100%
    );
    transform: skewX(-22deg);
    transition: left 0.8s ease;
    pointer-events: none;
    z-index: 1;
}

/* black accent layer */
.feature-account .single-item::after{
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 0;
    background: linear-gradient(180deg, #111111, #000000);
    transition: height 0.45s ease;
    z-index: 0;
    opacity: 0.98;
}

/* hover */
.feature-account .single-item:hover{
    transform: translateY(-12px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.16);
}

.feature-account .single-item:hover::before{
    left: 160%;
}

.feature-account .single-item:hover::after{
    height: 100%;
}

/* keep content above hover bg */
.feature-account .single-item > *{
    position: relative;
    z-index: 2;
}

/* icon */
.feature-account .single-item .icon-box{
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 78px;
    font-size: 34px;
    line-height: 1;
    margin-bottom: 24px;
    border-radius: 50%;
    background: #111111;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.10);
    transition: 
        transform 0.45s ease,
        background 0.45s ease,
        color 0.45s ease,
        box-shadow 0.45s ease;
}

.feature-account .single-item:hover .icon-box{
    transform: rotateY(180deg) scale(1.08);
    background: #ffffff;
    color: #000000;
    box-shadow: 0 12px 28px rgba(255,255,255,0.18);
}

/* title */
.feature-account .single-item h4{
    display: block;
    font-size: 19px;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 22px;
    transition: transform 0.4s ease;
}

.feature-account .single-item h4 a{
    color: #111111;
    transition: color 0.4s ease;
}

.feature-account .single-item:hover h4{
    transform: translateY(-2px);
}

.feature-account .single-item:hover h4 a{
    color: #ffffff;
}

/* list */
.feature-account .single-item .list-style-one li{
    margin-bottom: 14px;
    color: #3c3c3c;
    transition: 
        color 0.4s ease,
        transform 0.35s ease;
}

.feature-account .single-item .list-style-one li:before{
    width: 20px;
    height: 20px;
    line-height: 20px;
    background: transparent;
    border: 1px solid #111111;
    border-radius: 50%;
    font-size: 10px;
    transition: 
        border-color 0.4s ease,
        color 0.4s ease,
        background 0.4s ease,
        transform 0.35s ease;
}

.feature-account .single-item:hover .list-style-one li{
    color: rgba(255,255,255,0.92);
    transform: translateX(4px);
}

.feature-account .single-item:hover .list-style-one li:before{
    border-color: #ffffff;
    color: #000000;
    background: #ffffff;
    transform: scale(1.08);
}

/* staggered feel */
.feature-account .single-item:nth-child(2){transition-delay: .03s;}
.feature-account .single-item:nth-child(3){transition-delay: .06s;}
.feature-account .single-item:nth-child(4){transition-delay: .09s;}
.feature-account .single-item:nth-child(5){transition-delay: .12s;}

/* responsive polish */
@media only screen and (max-width: 991px){
    .feature-account .single-item{
        min-height: auto;
    }
}

@media only screen and (max-width: 599px){
    .feature-account .single-item{
        border-bottom: 1px solid rgba(0,0,0,0.08);
    }

    .feature-account .inner-container .single-item:last-child .single-item,
    .feature-account .inner-container .single-item:last-child{
        border-bottom: none !important;
    }
}


/** rtl-css **/

.rtl .account-block-one .inner-box .icon-box{
  left: inherit;
  right: 30px;
}

.rtl .content_block_eight .content-box{
  margin-left: 0px;
  margin-right: 60px;
}

/** responsive-css **/

@media only screen and (max-width: 1200px){

}

@media only screen and (max-width: 991px){
  .account-block.pt_75{
    padding-top: 0px;
  }

  .content_block_eight .content-box{
    margin-left: 0px;
  }

  .rtl .content_block_eight .content-box{
    margin-right: 0px;
  }

  .content_block_eight .content-box.mr_60{
    margin-right: 0px;
    margin-bottom: 30px;
  }

  .feature-account .inner-container .single-item{
    width: 50%;
  }
}

@media only screen and (max-width: 767px){
  .account-section{
    padding: 70px 0px 40px 0px;
  }

  .account-style-two{
    padding: 110px 0px 80px 0px;
  }

  .account-style-three{
    padding: 70px 0px;
  }

  .account-style-two.clear-bg{
    padding: 50px 0px 40px 0px;
  }

  .feature-account{
    padding-bottom: 70px;
  }
}

@media only screen and (max-width: 599px){
  .feature-account .inner-container .single-item{
    width: 100%;
    border: none !important;
  }
}

@media only screen and (max-width: 499px){

}











































