
.feature-section{
  position: relative;
}

.feature-section .inner-container{
  position: relative;
  display: block;
  background: #FFFFFF;
  box-shadow: 0px 4px 50px rgba(128, 128, 128, 0.1);
  border-radius: 20px;
  overflow: hidden;
  padding: 70px 130px 66px 130px;
  overflow: hidden;
  margin-bottom: 0;
  z-index: 1;
}

.feature-block-one .inner-box{
  position: relative;
  display: block;
  padding: 40px 30px;
  border-radius: 20px;
  background: transparent;
  transition: all 500ms cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 10px 30px rgba(0,0,0,0); /* invisible initially */
  z-index: 1;
}

/* Card Hover Pop Polish */
.feature-block-one .inner-box:hover{
  background: #ffffff;
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  z-index: 2;
}

/* 3D Icon Wrapper (align left, add dynamic shadow) */
.feature-block-one .inner-box .icon-3d-wrapper{
  position: relative;
  display: inline-block;
  margin-bottom: 25px;
  text-align: left;
}

/* Dynamic Shadow under the icon */
.feature-block-one .inner-box .icon-3d-wrapper::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 10px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0) 70%);
  border-radius: 50%;
  animation: floatShadow 3s ease-in-out infinite;
}

/* The actual 3D icon */
.feature-block-one .inner-box .icon-3d{
  width: 80px; /* smaller normal size as requested */
  height: auto;
  position: relative;
  display: block;
  animation: floatIcon 3.5s ease-in-out infinite;
  transform-origin: center bottom;
  transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Hover effect on icon (scale and tilt) */
.feature-block-one .inner-box:hover .icon-3d{
  transform: scale(1.15) rotate(5deg);
}

/* Floating Animations */
@keyframes floatIcon {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes floatShadow {
  0% { transform: translateX(-50%) scale(1); opacity: 0.8; filter: blur(2px); }
  50% { transform: translateX(-50%) scale(0.65); opacity: 0.25; filter: blur(5px); }
  100% { transform: translateX(-50%) scale(1); opacity: 0.8; filter: blur(2px); }
}

/* Staggered delays for floating so they don't move all together */
.feature-block-one .inner-box .icon-3d-wrapper.delay-1::after,
.feature-block-one .inner-box .icon-3d-wrapper.delay-1 .icon-3d { animation-delay: 0s; }
.feature-block-one .inner-box .icon-3d-wrapper.delay-2::after,
.feature-block-one .inner-box .icon-3d-wrapper.delay-2 .icon-3d { animation-delay: 0.4s; }
.feature-block-one .inner-box .icon-3d-wrapper.delay-3::after,
.feature-block-one .inner-box .icon-3d-wrapper.delay-3 .icon-3d { animation-delay: 0.8s; }
.feature-block-one .inner-box .icon-3d-wrapper.delay-4::after,
.feature-block-one .inner-box .icon-3d-wrapper.delay-4 .icon-3d { animation-delay: 1.2s; }

.feature-block-one .inner-box h3{
  display: block;
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  margin-bottom: 14px;
}

.feature-block-one .inner-box h3 a{
  display: inline-block;
  color: var(--main-color);
  transition: all 300ms ease;
}

.feature-block-one .inner-box h3 a:hover{
  color: var(--secondary-color);
}

.feature-section .inner-container .shape{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.feature-section.alternat-2 .inner-container{
  margin-bottom: 0px;
  margin-top: -200px;
}

.feature-section.alternat-3 .inner-container{
  background: #032761;
  margin-bottom: 0px;
  margin-top: -215px;
}

.feature-section.alternat-3 .feature-block-one .inner-box .icon-box{
  color: var(--white-color);
}

.feature-section.alternat-3 .feature-block-one .inner-box h3 a,
.feature-section.alternat-3 .feature-block-one .inner-box p{
  color: var(--white-color);
}

.feature-section.alternat-3 .feature-block-one .inner-box h3 a:hover{
  text-decoration: underline;
}

.feature-section .shape-2{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 271px;
  height: 196px;
  background-repeat: no-repeat;
}


/** feature-style-two **/

.feature-style-two{
  position: relative;
}

.feature-block-two{
  margin-top: 41px;
}

.feature-block-two .inner-box{
  position: relative;
  display: block;
  background: #FFFFFF;
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 0px 30px 40px 30px;
  z-index: 1;
}

.feature-block-two .inner-box:before{
  position: absolute;
  content: '';
  background: var(--main-color);
  width: 100%;
  height: 0%;
  left: 0px;
  top: 0px;
  z-index: -1;
  border-radius: 20px;
  transition: all 500ms ease;
}

.feature-block-two .inner-box:hover:before{
  height: 100%;
}

.feature-block-two .inner-box .icon-box{
  position: relative;
  display: inline-block;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  font-size: 60px;
  color: var(--main-color);
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(180, 196, 217, 0.4);
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 1;
  margin-top: -41px;
  margin-bottom: 40px;
}

.feature-block-two .inner-box .icon-box:before{
  position: absolute;
  content: '';
  background: rgba(180, 196, 217, 0.4);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  left: 0px;
  top: 0px;
  transform: scale(0,0);
  z-index: -1;
  transition: all 500ms ease;
}

.feature-block-two .inner-box:hover .icon-box:before{
  transform: scale(1,1);
}

.feature-block-two .inner-box h3{
  display: block;
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-block-two .inner-box h3 a{
  display: inline-block;
  color: var(--main-color);
}

.feature-block-two .inner-box h3 a:hover{
  text-decoration: underline;
}

.feature-block-two .inner-box:hover h3 a,
.feature-block-two .inner-box:hover p{
  color: var(--white-color);
}

.feature-block-two .inner-box p{
  transition: all 500ms ease;
}

.feature-style-two .pattern-layer{
  position: absolute;
  top: -90px;
  right: 0px;
  width: 930px;
  height: 881px;
  background-repeat: no-repeat;
  z-index: -1;
}

.feature-section.about-page .inner-container{
  margin: 0px;
}












