@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@600;700&display=swap');


body {
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  margin: 0px;
  padding: 0px;
  /*background: #000;*/
}

body::-webkit-scrollbar {
  width: 0.5em;
}

body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px #999;
}

body::-webkit-scrollbar-thumb {
  background-color:var(--primary-color);
  outline: 1px solid var(--primary-color);
}

html {
  scroll-behavior: smooth;
}
:root {
  --primary-color: #0FBF0E;
  --secondary-color: #8e12cc;
  --muted-color: #BBD2DD;
}

*,
*::after,
*::before,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

p {
  font-size: 17px;
  color: #000;
}

ul {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}

a,
button {
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}

a:hover {
  text-decoration: none;
}

button:focus,
input:focus,
textarea:focus,
select:focus,
a:hover {
  outline: none;
  box-shadow: none;
}

section {
  padding: 50px 0 50px;
  overflow: hidden;
}

.inlineHeader {
  display: flex;
  padding: 0px 0;
  align-items: center;
  justify-content: space-between;
}
.fontHeading{
   font-family: 'Nunito Sans', sans-serif;
}
.large_heading {
  font-size: 3.9rem;
  line-height: 1;
}

.heading {
  font-size: 45px;
  line-height: 1;
}

.sub_heading {
  font-size: 36px;
}

.small_heading {
  font-size: 26px !important;
}

.title {
  font-size: 20px !important;
}
.text {
  font-size: 16px;
}

.bgGrey{
    background:#f1f1f1;
}
.fontWeight300 {
  font-weight: 300;
}

.fontWeight400 {
  font-weight: 400;
}

.fontWeight500 {
  font-weight: 500;
}

.fontWeight600 {
  font-weight: 600;
}

.fontWeight700 {
  font-weight: 700;
}

.fontWeight800 {
  font-weight: 800;
}

.fontWeight900 {
  font-weight: 900;
}
.leftLogo{
  width: 180px;
}
.leftLogo img{
  max-width: 100%;
}
.header.stricky-fixed {
  position: fixed;
  z-index: 999;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  width: 100%;
  background:rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  -webkit-animation-name: menu_sticky;
  animation-name: menu_sticky;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  padding: 3px 0;
}
.header.stricky-fixed .leftLogo{
  width: 120px;
}
@-webkit-keyframes menu_sticky {
  0% {
    margin-top: -150px;
  }
  50% {
    margin-top: -130px;
  }

  100% {
    margin-top: 0;
  }
}

@keyframes menu_sticky {
  0% {
    margin-top: -150px;
  }

  50% {
    margin-top: -130px;
  }
}
.text_secondary {
  color: var(--secondary-color);
}
.text_primary{
  color: var(--primary-color);
}
.text_muted{
  color:var(--muted-color)
}
.bgPrimary {
  background: var(--primary-color) !important;
}

.bgSecondary {
  background: var(--secondary-color) !important;
}
.bgCyan{
  background: aqua !important;
}
.bgMuted {
  background: var(--muted-color) !important;
}
.containerFull {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

.header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  padding: 10px 0;
}
.centerMenu ul{
  display: flex;
}
.centerMenu ul li a{
  color: #fff;
  font-size: 1.1rem;
  display: inline-block;
  padding: 5px 10px;
  font-family: 'Nunito Sans', sans-serif;
  font-weight:500;
}
.centerMenu ul li a:hover{
  color: var(--primary-color);
}
.btnTheme {
  display: inline-block;
  padding: 12px 35px;
  border: none;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  font-size: 1rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  font-weight: 600;
}
.bgGradient{
   background: linear-gradient(45deg, var(--primary-color), var(--secondary-color)) !important;
}
.btnTheme:after{
  content: '';
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  width: 0;
  height: 100%;
  background: var(--secondary-color);
  z-index: -1;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.btnTheme:hover:after{
  width: 100%;
  right: auto;
  left: 0;
}
.btnTheme:hover{
  color: #fff !important;
}

.footer {
  background: #111;
  padding: 60px 0 0 0;
}
.mainFooter{
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #333;
}
.itemFooter ul li a {
  display: inline-block;
  color: #eee;
  font-size: 17px;
  padding: 5px 0;
}
.textLight {
  color: #eee;
}
.socialLink ul {
  display: flex;
  margin-top: 30px;
}
.socialLink ul li a {
  display: inline-block;
  padding: 15px;
  color: #eee;
  font-size: 17px;
}
.bottomMenu ul {
  display: flex;
  gap: 15px;
}
.go-top {
  position: fixed;
  cursor: pointer;
  bottom: -100px;
  right: 5px;
  background-color: var(--secondary-color);
  z-index: 999;
  width: 50px;
  height: 50px;
  text-align: center;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  font-size: 16px;
  -webkit-transition: 0.9s;
  transition: 0.9s;
  overflow: hidden;
  color: #fff;
}

.go-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}
/*.heroSection{*/
/*  height: 100vh;*/
/*  background: url(../images/bg/banner.jpg) no-repeat;*/
/*  background-size: cover;*/
/*  background-attachment: fixed;*/
/*  position: relative;*/
/*  z-index: 1;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  padding-top: 7rem;*/
/*}*/
/*.heroSection:after{*/
/*  content: '';*/
/*  position: absolute;*/
/*  top: 0;*/
/*  left: 0;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  background: rgba(0, 0, 0, 0.8);*/
/*  z-index: -1;*/
/*}*/
.borderPrimary{
  border-color:var(--primary-color) !important;
}
.text_cyan{
  color:aqua
}
.border_primary{
  border-color: var(--primary-color) !important;
}
.border_secondary{
  border-color: var(--secondary-color) !important;
}

.textLight{
  color: #ccc;
}
.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  background-color: transparent;        
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle i {
  font-size: 26px;
  line-height: 1;
}

.itemSeven{
  background: #b43fee;
  border:1px solid #555;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.itemSeven:hover{
  border-color: var(--primary-color);
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
}
.itemSeven2{
  background: #ffffff;
  border:1px solid #ccc;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.itemSeven2:hover{
  border-color: var(--primary-color);
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
}
.border_cyan{
  border-color: aqua !important;
}
/*.itemSeven:hover h4{*/
/*  color: #000 !important;*/
/*}*/
.divider{
  position: relative;
}
.divider:after{
  content: '';
  position: absolute;
  top:0px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: var(--secondary-color);
}
.dot, .dot2{
  position: relative;
}
.dot:after{
  content: '';
  position: absolute;
  top:50%;
  right: -90px;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background: var(--secondary-color);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.dot2:after{
  content: '';
  position: absolute;
  top:50%;
  left: -90px;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background: var(--secondary-color);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.successStories{
  background: #f1f1f1;
  border: 1px solid #555;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  min-height:372px;
}
.border1{
  border-top-width: 5px;
  border-top-color:var(--primary-color);
}
.border2{
    border-top-width: 5px;
    border-top-color:var(--secondary-color);
}
.iconRightM {
  width:60px;
  height: 60px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  font-size: 2.3rem;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bgLight {
  background: #333;
}
.iconMenu{
  width: 50px;
  height: 50px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
}
.itemHover:hover .iconMenu {
  background-color: var(--primary-color);
  color: #fff !important;
}
.itemHover:hover .iconMenu i{
  color: #fff !important;
}
.accordion-item{
  margin: 10px 0;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  background: #fff;
  padding: 0;
}
.accordion-button{
  background: none;
  border:none
}
.accordion-button:not(.collapsed){
  background: transparent;
  box-shadow:none !important;
  border:none !important
}
.accordion-body{
  padding-top: 0;
}
.accordion-body ul{
  margin-top: 10px;
}
.accordion-body p{
  color:#333;
}
.accordion-body ul li{
  padding:5px;
  color:#333;
  font-weight: 500;
  position: relative;
  padding-left: 18px;
}
.accordion-body ul li:before{
  content: '';
  position:absolute;
  top:13px;
  left:0px;
  width:8px;
  height:8px;
  border-radius:50%;
  -webkit-border-radius:50%;
  -moz-border-radius:50%;
  -ms-border-radius:50%;
  -o-border-radius:50%;
  background: #333;
}
.accordion-button:focus {
  outline: none;
  box-shadow: none;
}
.aboutHero {
  position: relative;
  width: 100%;
  min-height: 350px;             
  background: url("../images/bg/banner.jpg") center/cover no-repeat;
 
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}


.aboutHero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.aboutHero .hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-top: 80px;
 
}
.storyCard {
    position: relative;
    
    max-width: 1100px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px 50px 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

.quoteIcon {
    position: absolute;
    top: -25px;
    left: 30px;
    background:var(--primary-color);
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.storyContent .highlightText {
    color: #0c2340;
    font-weight: 600;
}

.storyDivider {
    height: 1px;
    background: #e1e8f0;
    margin: 30px 0;
}

.storyAuthor {
    display: flex;
    align-items: center;
    gap: 15px;
}

.authorCircle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.storyAuthor h5 {
    margin: 0;
    font-size: 16px;
    color: #0c2340;
}

.storyAuthor span {
    font-size: 14px;
    color: #6c7a89;
}
.itemPhilo{
  border: 1px solid #6FD86E;
  padding: 15px;
  border-radius: 20px;
  height: 100%;
  background: #fff;
}

.itemPhilo img{
  height:220px;
  object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
    margin-bottom: 10px;
 
}

.itemPhilo:hover img{
  transform: scale(1.05);
  filter: brightness(0.95);
}
.philoMainImg{
  width:100%;
height: 680px;
  border-radius:15px;
  object-fit:cover;
 
}
.philoList{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.philoRow{
  display:flex;
  align-items:flex-start;
  gap:16px;
  border: 1px solid #ccc;
  border-radius: 20px;
  padding: 15px;

}

.philoIcon{
  width:48px;
  height:48px;
  border-radius:50%;
  background:var(--secondary-color);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.philoIcon img{
  width:26px;
    filter: brightness(0) invert(1);

}
.qEEGStats{
background: linear-gradient(to bottom,#8e12cc, #0FBF0E );


  border-radius:24px;
  padding:32px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}

.statBox{
  background:#ffffff;
  border-radius:18px;
  padding:28px 20px;
  text-align:center;
}
.heroSection{
  position: relative;
  height: 100vh;
  overflow: hidden;
   display: flex;
  align-items: center;
}

.heroSection video{
  position: absolute;   
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.heroSection:after{
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}


.heroSection .heroContent{
  position: relative;
  z-index: 2;
  padding-top:4rem;
}
.heroPersonWrap{
  position: relative;
  width: 100%;
  height: 100vh;            
 
}

.heroPersonImg{
  position: absolute;
  bottom: 0;            
  right: -60px;

  height:850px;          
  max-height: 100vh;

  width: auto;
  object-fit: contain;
  z-index: 3;
  
}
.listBullet ul{
  list-style-type: disc;
  margin-left: 15px;
}
.listBullet ul li{
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 600;
}
.listBullet ul li p{
  font-weight: 500;
  color: #666;
  font-size:18px;
}
.itemStories{
    padding:0 10px;
}
.borderTop1{
    box-shadow:0px -5px 0 var(--primary-color);
    border-top-color:transparent;
}
.borderTop2{
    box-shadow:0px -5px 0 var(--secondary-color);
    border-top-color:transparent;
}
.textBtn{
    border:none;
    background:none;
    color:#111;
    margin-top:10px;
    font-weight:600;
}
.itemSeven2.active{
    background: linear-gradient(180deg, rgba(15, 191, 14, 0.14), rgba(255, 255, 255, 0.95));
    border-color: rgba(15, 191, 14, 0.70);
    /*box-shadow: 0 16px 42px rgba(15, 191, 14, 0.14);*/
}
.itemSeven2.active .icon-circle{
    width:65px;
    height:65px;
}
.textJustify{
    text-align:justify;
}
.hoverWhite{
    position: relative;
    z-index: 1;
    overflow:hidden;
}
.hoverWhite:after{
    content: '';
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    width: 0;
    height: 100%;
    background: #fff;
    z-index: -1;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.hoverWhite:hover{
    color:#000 !important;
}
.hoverWhite:hover:after{
    width:100%;
    right:auto;
    left:0;
}
.formItem{
    margin-bottom:10px;
}
.formItem label{
    font-size:14px;
    margin-bottom:5px;
    color:#222;
}
.formItem input, .formItem select{
    width:100%;
    padding:10px;
    border:1px solid #e0e0e0;
    border-radius:5px;
    font-size:15px;
}
.formItem textarea{
    width:100%;
    padding:10px;
    border:1px solid #e0e0e0;
    border-radius:5px;
    font-size:15px;
    height:90px;
}
.formItem input:focus, .formItem select:focus, .formItem textarea:focus{
    border-color:var(--primary-color);
}
.centerMenu ul li.active a{
    color:var(--primary-color);
}
.powered a {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}
.powered span {
    color: #333;
}
.powered img {
    width: 100px;
}