/*
Theme Name: PowerFy Theme
Author: Ellowww Digital Agency
Version: 1.0
*/

/* Add your custom styles here */


/*--------------------------------------------------------------
Global Colors & Fonts
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
:root {
  /* Colors */
  --color-primary: #111111;
  --color-secondary: #5F5F5F;
  --color-yellow: #F8B838;
  --color-turq: #00AFD3;
  --color-blue: #008CF9;
  --color-pink: #E660B5;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-red: #D25355;
  --color-bg:#F0F5F9;

  /* Font family */
  --font-family: 'Montserrat', sans-serif;
  --font-family-content: 'Inter', sans-serif;
}

/*--------------------------------------------------------------
Headings (Responsive)
--------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-family);
  margin: 0;
   line-height: 130%;
}

/* Desktop sizes */
h1,.h1 { font-size: 48px; font-weight: 700; }
h2,.h2 { font-size: 36px; font-weight: 600; }
h3,.h3 { font-size: 32px; font-weight: 600; }
h4,.h4 { font-size: 24px; font-weight: 600; }
h5,.h5 { font-size: 20px; font-weight: 600; }
h6,.h6 { font-size: 18px; font-weight: 600; }
.h1{font-weight: 600;}

h2, h3, h4, h5, h6,
.h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 30px;   
}
/*--------------------------------------------------------------
Body Text Styles
--------------------------------------------------------------*/
/* Body1 */
.body1-reg,.body1-reg * { font-family: var(--font-family-content); font-size: 18px; font-weight: 400; }
.body1-med { font-family: var(--font-family-content); font-size: 18px; font-weight: 500; }

/* Body2 */
.body2-reg { font-family: var(--font-family-content); font-size: 16px; font-weight: 400; }
.body2-med { font-family: var(--font-family-content); font-size: 16px; font-weight: 500; }
.body2-tag { font-family: var(--font-family); font-size: 20px; font-weight: 500; }

/* Body3 */
.body3-reg { font-family: var(--font-family-content); font-size: 14px; font-weight: 400; }
.body3-med { font-family: var(--font-family-content); font-size: 14px; font-weight: 500; }

/* Body4 */
.body4-reg { font-family: var(--font-family-content); font-size: 12px; font-weight: 400; }
.body4-med { font-family: var(--font-family-content); font-size: 12px; font-weight: 500; }

/* Mobile sizes (max-width: 768px) */
@media (max-width: 768px) {
  h2, h3, h4, h5, h6,
  .h2, .h3, .h4, .h5, .h6 {
    margin-bottom: 20px;   
  }
  h1,.h1 { font-size: 32px; }
  .h1 { font-size: 24px; }
  h2,.h2 { font-size: 26px; }
  h3,.h3 { font-size: 22px; }
  h4,.h4 { font-size: 20px; }
  h5,.h5 { font-size: 18px; }
  h6,.h6 { font-size: 18px; }
  /* Body1 */
  .body1-reg,.body1-reg * { font-family: var(--font-family-content); font-size: 16px; font-weight: 400; }
  .body1-med { font-family: var(--font-family-content); font-size: 16px; font-weight: 500; }

  /* Body2 */
  .body2-reg { font-family: var(--font-family-content); font-size: 15px; font-weight: 400; }
  .body2-med { font-family: var(--font-family-content); font-size: 14px; font-weight: 500; }
  .body2-tag { font-family: var(--font-family); font-size: 18px; font-weight: 500; }

  /* Body3 */
  .body3-reg { font-family: var(--font-family-content); font-size: 14px; font-weight: 400; }
  .body3-med { font-family: var(--font-family-content); font-size: 14px; font-weight: 500; }

  /* Body4 */
  .body4-reg { font-family: var(--font-family-content); font-size: 12px; font-weight: 400; }
  .body4-med { font-family: var(--font-family-content); font-size: 12px; font-weight: 500; }  
}


.font-weight-normal{
  font-weight: 400;
}
.font-weight-medium{
  font-weight: 500;
}
.font-weight-bold{
  font-weight: 600;
}
/*--------------------------------------------------------------
Utility Classes for Colors
--------------------------------------------------------------*/
.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-secondary); }
.text-yellow { color: var(--color-yellow); }
.text-turq { color: var(--color-turq); }
.text-blue { color: var(--color-blue); }
.text-pink { color: var(--color-pink); }
.text-white { color: var(--color-white); }
.text-black { color: var(--color-black); }
.text-red { color: var(--color-red); }

.bg-primary { background-color: var(--color-primary); }
.bg-secondary { background-color: var(--color-secondary); }
.bg-yellow { background-color: var(--color-yellow); }
.bg-turq { background-color: var(--color-turq); }
.bg-blue { background-color: var(--color-blue); }
.bg-pink { background-color: var(--color-pink); }
.bg-white { background-color: var(--color-white); }
.section-bg{background-color: var(--color-bg);}
h1.hero-title.gradient-head {
    background: linear-gradient(90.25deg, #E99419 -99.9%, #00AEC8 0.68%, #0062DE 37.55%, #C7257C 101.43%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
   width: fit-content;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 150%;

}
body{
    font-family: var(--font-family-content);
    background: url('https://power-fy.com/wp-content/themes/powerfy/assets/images/body-bg.svg') no-repeat;
  background-color:#F8FCFF;
    line-height: 150%;

}

body header.site-header {
    position: fixed;
}
.container article {
    min-height: 400px;
}
.container {
    max-width: 1240px;
    margin: 0 auto;
    width:100%;
}
.border-blue{
  border:1px solid var(--color-blue);
}
.border-primary{
  border:1px solid var(--color-primary);
}
.text-center{
  text-align:center;
}
.text-left{
  text-align:left;
}
.text-right{
  text-align:right;
}
.empty-div{
  height:90px;
}
html {
  scroll-behavior: smooth;
}

/* HEADER */

.header_grid {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: var(--color-white);
    border-radius: 0px 0px 30px 30px;
    box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.14901960784313725);
    padding:0px 20px;
    background-color: var(--color-white);
}
.site-header {
  position: relative;
  width: 100%;
  transition: all 0.3s ease;
  z-index: 1000;
}

.site-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  transform: translateY(0);
}

.site-header.hide {
  transform: translateY(-100%);
}


/* LOGO */
.logo a {
  color: var(--color-white);
  font-size: 22px;
  text-decoration: none;
  font-weight: bold;
}
.logo a {
    display: flex;
}

/* MENU */
.main-nav .menu {
  display: flex;
  list-style: none;
  gap: 20px;
}
.main-nav .menu ul{    
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.main-nav .menu li {
  position: relative;
  list-style: none;
}

.main-nav .menu a {
  color: var(--color-white);
  text-decoration: none;
  padding: 10px;
  display: block;
}
.main-nav .menu > li.menu-item > a{
  padding:30px 20px;
}

/* DROPDOWN */
.main-nav .menu li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #222;
  list-style: none;
  min-width: 180px;
}
.main-nav .menu li a{
    font-family: var(--font-family-content); 
    font-size: 16px; 
    font-weight: 500;
    color: var(--color-primary);
}
.main-nav .menu li:hover ul {
  display: block;
}

/* CTA BUTTON */
.btn {
  padding: 10px 18px;
  text-decoration: none;
  border-radius: 5px;
}

.btn {
  position: relative;
  display: inline-block;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;  
  transition: transform, .4s;
}
.btn:hover {
    transform: translateY(-2px);
}
.btn.btn-primary:hover,.btn.btn-primary:hover span{
    color:var(--color-white);
}
.btn:hover span{
    opacity:100% !important;
    color:var(--color-white);
}
.btn.btn-secondary:hover,.btn.btn-secondary:hover span{
    color:var(--color-black);
}
/* HAMBURGER (hidden on desktop) */
.hamburger {
  display: none;
  cursor: pointer;
  color: var(--color-white);
}




/*Footer Style*/
.footer-bottom-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}
.footer-widgets {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-section {
  width: 30%;
  display: flex;
  gap:15px;
  flex-direction: column; 
}
.footer-section ul {
    list-style-type: none;
    padding-left: 0;
}

.footer-section ul li {
    margin: 10px 0;
}
.footer-section ul li a {
    color: var(--color-secondary);
    font-size: 16px;
    font-weight: 400;
    font-family: 'Inter',sans-serif;
    line-height: 1.3;
    text-decoration: none;
}
.menu li a { 
    position: relative; /* Position the pseudo-element */
    display: inline-block; /* Ensures the text element is inline and allows the background to work */
    overflow: hidden; /* Hide the overflowing part of the pseudo-element */
    transition: color 0.5s ease; /* Smooth color transition */
}
.menu li a{
  text-decoration: none;
  color:var(--color-primary);
  display: inline-block;
  position: relative;
  background: linear-gradient(to right, var(--color-blue) 50%, var(--color-secondary) 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-position 0.4s ease;
}
.menu li a:hover {
  background-position: left bottom;
  text-decoration:none;
}
.main-nav .menu li.menu-item.current-menu-item {
    color: var(--color-blue);
}
.main-nav .menu li.menu-item-has-children a {
    display: flex;
    align-items: center;
    gap: 5px;
}
.main-nav .menu li.menu-item-has-children a span.dropdown-icon {
    display: flex;
}

.main-nav .menu li ul.sub-menu {
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #00000014;
    border-radius: 20px;
    max-height: calc(100vh - 5rem);
    margin-left: -.25rem;
    display: none;
    position: absolute;
    top: 5.20rem;
    overflow: hidden;
    box-shadow: 0 4px 8px #00000014;
    min-width: 240px;
    padding: 15px 20px;
}

.main-nav .menu li ul.sub-menu li {
    text-align: left;
    width: 100%;
}
.cta {
    display: flex;
}

.footer-bottom-container {    
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 20px;
}
.copyrights p,
.footer-bottom-widget p {
    color: var(--color-secondary);
    font-size: 16px;
    font-family: 'Inter',sans-serif;
    font-weight: 400;
}
.footer-bottom-widget {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
footer#footer {
  padding: 100px 0px; 
}



.footer-logo {
    text-align: center;
}

.footer-logo img {
    max-width: 150px;
    margin-bottom: 10px;
}

.footer-logo p {
    font-size: 14px;
}
/*Footer Style*/


section {
    padding: 120px 0px;
    border-radius: 100px;
}
section.no-border-radius{
  border-radius: 0px;
}
section.powerfy-hero{
  padding: 0px;
}
section.no-padding {
    padding: 0px !important;
}
section.no-padding-top {
    padding-top: 0px !important;
}
section.no-padding-bottom {
    padding-bottom: 0px !important;
}
.no-margin{
  margin: 0px !important;
}
/*Card Common css*/
.page-content:not(.card-content) ul{
    margin:20px 0px;
}
.page-content:not(.card-content) ul li{            
    width: fit-content;
    border-radius: 100px;
    position: relative;
    padding-left: 15px;
    margin-bottom: 10px;
    list-style:none;
}
.page-content:not(.card-content)  ul li:before {
    position: absolute;
    content: '';
    width: 9px;
    height: 9px;
    border-radius: 9px;
    background: #FFFFFFDE;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}
.cta-content .card-content ul {
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.cta-content .card-content ul,.cta-content .card-content ul li{
    margin: 0px;
}
.cta-content ol,.cta-content ol li {
    list-style: none;
}

.cta-content ol li {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    padding-left: 36px;
    margin-bottom: 20px;
}

.cta-content ol li:before {
    background: url('https://power-fy.com/wp-content/uploads/2026/04/approve.svg') no-repeat;
    position: absolute;
    content: '';
    width: 24px;
    height: 24px;
    left: 0;
    top: 0px;
}
.card-content {    
    font-size: 16px;
}
.card-content ul li {    
    color: var(--color-secondary);
}
.card-content p strong {
    color: var(--color-secondary);
    font-weight: 600;
}
.card-content h6{
  margin-bottom: 10px;
}
.card-content p{
    margin-bottom: 15px;
}
.card-content p:not(.h6) {    
    font-size: 16px;
    color: var(--color-primary);
}
.card-content p:not(.h6):last-child {
    color: var(--color-primary);
    margin-bottom: 0px;
}

.card-content ul,.card-content ul li {
    list-style: none;
}

.card-content ul {
    margin: 20px 0px;
}

.card-content {
    margin-top: 20px;
}

.card-content ul li {
    background: #fff;
    padding: 10px 30px;
    width: fit-content;
    border-radius: 100px;
    position: relative;
    padding-left: 45px;
    margin-bottom: 10px;
}

.card-content ul li:before {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background: #D9D9D9;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
}
.card-content.gradient-li ul li {
    padding: 10px 25px;
    background: linear-gradient(89.17deg, rgba(232, 99, 182, 0.1) 19.95%, rgba(1, 138, 247, 0.1) 99.28%);
}
.card-content.gradient-li ul li:before {
    content:none;
}
.card-content.gradient-li ul {
    display:flex;
    flex-wrap: wrap;
    gap: 10px;
}
.card-content.gradient-li ul li {
    color: var(--color-black);
    margin: 0px;
    font-size:16px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    body.page-id-304 .banner-bg img {
        object-fit: cover !important;
    }
  .btn,.btn span {
    font-size: 16px;
  }
  .header_grid{
    padding:12px 18px;
  }
  .main-nav .menu > li.menu-item > a{
    padding:10px;
  }
  .site-header .container{
    padding: 0px;
  }
  .nav-menu-button-inner {
    display: flex;
    background: #F5F5F5;
    width: 32px;
    height: 32px;
    border-radius: 32px;
    align-items: center;
    justify-content: center;
  }
  .main-nav .menu li.menu-item-has-children a {
    justify-content: space-between;
  }
  .main-nav .menu li ul.sub-menu {
    position: inherit;
    top: 0;
  }
  header .main-nav .menu li.open ul.sub-menu {
      visibility: visible;
      pointer-events: auto;
      opacity: 1;
      flex-direction: column;
      animation: .2s slide-down;
      display: flex;
  }
  .main-nav .menu li.menu-item-has-children a span.dropdown-icon {
    display: flex;
    width: 20px;
    height: 20px;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
  }
  .main-nav .menu li.menu-item-has-children a span.dropdown-icon svg {
      width: 14px;
      height: 14px;
  }

  .nav-menu-button-inner img {
      width: 15px;
      height: 15px;
  }
  body:not(.home) main#main-content {
    padding-top: 15px;
  }
  section {
    padding: 15px 0px;
    border-radius: 30px;
  }  
  .container {
    justify-content: space-between;  
    padding: 0 15px;
  }
  .btn {
    width: 100%;
    text-align: center;
  }

  .main-nav,
  .cta {
    display: none;
  }

  .hamburger {
    display: block;
  }
  .mobile-active .main-nav {
    display: block;
    position: absolute;
    top: 36px;
    left: 0;
    width: 100%;
    padding: 0;
    z-index: -1;
  }
  .mobile-active .main-nav ul {
    background: var(--color-white);
  }
  .mobile-active .main-nav .menu {
    flex-direction: column;
  }
  .mobile-active .main-nav .menu ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .mobile-active .main-nav .menu {
    gap: 0px;
    border-radius: 0px 0px 30px 30px;    
    box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.14901960784313725);
    padding: 20px;
  }
  .mobile-active .main-nav .menu {
    padding-top: 50px;
  }

  .mobile-active .hamburger .nav-menu-button-inner img.nav-menu-btn-icon-two {
      display: block;
  }
 
  img.nav-menu-btn-icon-two {
      display: none;
  }

  .mobile-active .hamburger .nav-menu-button-inner img.nav-menu-btn-icon {
      display: none;
  }

  body.page-template-page-backlog-stabilization main#main-content {
      padding-top: 0px;
  }


  /*footer css*/
  footer#footer {
    padding: 30px 0px; 
  }
  .footer-container .footer-widgets {
      flex-wrap: wrap;
      flex-direction: column;
      gap: 30px;
  }
  .footer-section {
      width: 100%;
      display: flex;
      gap:20px;
      flex-direction: column; 
  }
  .footer-section ul li {
    margin: 0px 0 5px 0;
    }
  .footer-bottom-container {
      margin-bottom: 20px;
      flex-wrap: wrap;
      padding: 0 15px;
      align-items: center;
      gap: 10px;
      width: 100%;
      flex-direction: column;
  }
  .footer-container {
      flex-direction: column-reverse;
      gap: 20px;
      padding: 0px;
  }
  .copyrights p, .footer-bottom-widget p, .copyrights p {
      font-size: 16px;
      text-align: center;
  }
  .footer-container .footer-widgets .footer-section p.footer-title {
      margin-bottom: 0px;
      font-size: 16px;
  }
  .footer-logo{
    display: none;
  }
  .footer-bottom {position: relative;border-top: 1px solid #D9D9D9;border-bottom: 1px solid #D9D9D9;padding: 15px 0px;}

  .footer-bottom:before,.footer-bottom:after {
      position: absolute;
      content: '';
      width: 100%;
      height: 100%;
      border-top: 1px solid #d9d9d9;
      border-bottom: 1px solid #d9d9d9;
      left: -100%;
      top: -1px;
  }

  .footer-bottom:after {
      right: -100%;
      left: auto;
  }

  footer {
      overflow: hidden;
  }
  .footer-section ul li:last-child{
    margin-bottom: 0px;
  }
  
  /*5-5-26*/
  h3.group-title.h4.text-black {
    margin-bottom: 0px !important;
  }
  section.no-padding{
      padding:15px 0px !important;
  }
  .footer-container .footer-widgets .footer-section:last-child {
    display: none;
   }
   a.btn {
    width: 100%;
    }
   .cwi-col.cwi-image {
        width: 100%;
        height: 100%;
    }
    .imagecontainer {
        width: 100%;
        height: 100%;
        flex-direction: column;
    }
    .cwi-col.cwi-image .imagecontainer img {
        width: 100%;
        height: 100%;
    }
}

@media (min-width: 1025px) {
  .footergrid {
      width: 100%;
  }
  .footer-cta .container {
      min-height: 420px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      width: 100%;
  }
  .main-nav .menu li.menu-item-has-children:hover ul.sub-menu{
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
    flex-direction: column;
    animation: .2s slide-down;
    display: flex;
  }
  @keyframes slide-down{
      0% {
          opacity: 0;
          transform: translateY(-5px);
      }
      100% {
          opacity: 1;
          transform: translateY(0);
      }
  }
}