:root{

--primary:#1AA59A;
--dark:#0E1E36;
--light:#F5F7FA;
--text:black;

}

body{

font-family:'Inter',sans-serif;
color:var(--text);
overflow-x: hidden;


}

/* .container{
max-width:1200px;
} */


/* NAVBAR */


.navbar{
    padding: 12px 0;
    position: sticky;
}
/* .log-p-one{
  display: flex;
  justify-content: center;   
  align-items: center;       
  gap: 10px;                
} */
.navbar-group{
  display: flex;
  justify-content: center;   
  /* align-items: center;        */
  gap: 10px;
}

/* 
.log-p p{
  font-size: 12px;
  margin: 0; 
} */
/* .logo{
    font-size: 28px !important ;
    font-weight: 700;
    color:#0b1f3a;
} */
.logo{

  margin: 0;
  width: auto;
  height: 75px;
  /* height: 100%; */
  /* width: 100%; */
}

.nav-link{
    font-weight: 500;
    margin: 0 10px;
    color:#1a1a1a !important;
}

/* BUTTON */

.btn-main{

background:var(--primary);
color:white;
padding:16px 25px;
border:none;
border-radius:11px;

}
.btn-main:hover{
  background-color: #327979;
  color: white;
}

/* HERO */

.hero{

background:var(--dark);
color:white;
padding:100px 0;

}

.hero h1{
font-size:45px;
font-weight: 700;
margin-bottom:12px;
}
.sub-line{
    font-size: 20px;
    
}

.hero-img{
    height: 100%;
    width: 100%;
    border-radius: 20px;
}
/* 
.hero-list li {
    margin-bottom: 15px;
    font-size: 19px;
    list-style: none;
    
} */
.hero-list{
  padding: 0;
  margin-bottom: 20px;
}
.hero-list li{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    list-style: none;  
    margin-bottom: 9px;
}

.hero-list li svg{
    flex-shrink: 0;
}

/* INDUSTRIES */
.business-section{
background:#f4f6f9;
padding:80px 0;
}

.business-title{
font-size:53px;
font-weight:700;
color:#0f1f38;
margin-bottom:10px;
}

.business-subtitle{
font-size:27px;
color:#2f3b4a;
margin-bottom:50px;
}

.business-tags{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:20px;
}

.tag{
background:#fff;
padding:14px 28px;
border-radius:40px;
border:1px solid #e6e6e6;
font-size:17px;
color:#0f1f38;

}



/* GROWTH */
.risk-section{
background:#ffff;
padding:100px 0;
}

.risk-title{
font-size:47px;
font-weight:700;
color:#0f1f38;
line-height:1.2;
}

.risk-text{
font-size:18px;
color:black;
max-width:520px;
line-height:1.7;
}

.risk-box{
background:#e9edf2;
border-radius:14px;
padding:18px 22px;
display:flex;
align-items:center;
gap:15px;
margin-bottom:18px;
font-size:17px;
color:#1c2b3a;
}

.risk-box i{
font-size:20px;
color:#1c2b3a;
}

.custom-btn{
padding:12px 28px;
font-weight:600;
border-radius:10px;
}



/* Strategic CFO */

.section-title{
font-size:42px;
font-weight:700;
color:#0f1f38;
}

.service-card{
background:#fff;
padding:35px 30px;
border-radius:16px;
border:1px solid #e6e6e6;
transition:0.4s;
height:100%;
}

.service-card h4{
font-size:22px;
font-weight:700;
margin-bottom:20px;
color:#0f1f38;
}

.service-card ul{
padding-left:18px;
}

.service-card ul li{
margin-bottom:8px;
color:#5f6c7b;

}
.strategic-list li::marker{
  color: #1AA59A;
}
.icon-box-svg{
width:55px;
height:55px;
margin-bottom:7px;
transition:0.4s;

}

/* Hover Effect */



.service-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 40px rgba(0,0,0,0.1);
}



/* ===== Heading Animation ===== */
.reveal-heading{
opacity:0;
transform:translateY(50px);
transition:1.8s ease;
}

.reveal-heading.show{
opacity:1;
transform:translateY(0);
}

/* ===== Card Animation ===== */
.service-card{
opacity:0;
transform:translateY(60px);
transition:0.8s ease;
}

.service-card.show{
opacity:1;
transform:translateY(0);
}

/* stagger using column index */
.row > div:nth-child(1) .service-card{ transition-delay:0.2s; }
.row > div:nth-child(2) .service-card{ transition-delay:0.4s; }
.row > div:nth-child(3) .service-card{ transition-delay:0.6s; }
.row > div:nth-child(4) .service-card{ transition-delay:0.8s; }

/* ===== Icon Animation ===== */
.icon-box-svg{
opacity:0;
/* transform:scale(0.10); */
transition:0.5s ease;
}

.service-card.show .icon-box-svg{
opacity:1;
/* transform:scale(1); */
/* transition-delay:0.2s; */
}

/* ===== List Animation ===== */
.service-card ul li{
opacity:0;
/* transform:translateY(20px);
transition:0.4s ease; */
}


.service-card.show ul li{
opacity:1;
transform:translateY(0);
}





/* HOW SECTION */
.work-section{
  background:#f3f4f6;
  padding:65px 20px;
  text-align:center;
}

.work-title{
  font-size:48px;
  font-weight:700;
  margin-bottom:70px;
  color:#0f1e36;
}

.work-timeline{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  position:relative;
  gap:40px;
}

.work-timeline::before{
  content:"";
  position:absolute;
  top:39px;
  left:10%;
  width:80%;
  height:2px;
  background:#cbe8e8;
  z-index:0;
}

.work-step{
  position:relative;
  z-index:2;
}

/* circle */
.circle{
  width:75px;
  height:75px;
  background:#1AA59A;
  color:white;
  font-size:25px;
  font-weight:bold;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  margin:0 auto 20px;
}

/* text */
.work-step h3{
  font-size:22px;
  margin-bottom:10px;
  color:#0f1e36;
}

.work-step p{
  font-size:16px;
  color:gray;
  line-height:1.6;
}




/* INITIAL HIDDEN STATE */
.work-title{
  opacity:0;
  transform:translateY(60px);
  transition:all 0.8s ease;
}


.work-step{
  opacity:0;
  /* transform:translateY(60px); */
  transition:all 0.8s ease;
}

/* WHEN IN VIEW */
.work-title.show,
.work-step.show{
  opacity:1;
  transform:translateY(0);
}

/* STAGGER EFFECT */
.work-step:nth-child(1){ transition-delay:0.2s; }
.work-step:nth-child(2){ transition-delay:0.4s; }
.work-step:nth-child(3){ transition-delay:0.6s; }
.work-step:nth-child(4){ transition-delay:0.8s; }



/* STATS */
.stats-section{
  background:white;
  padding:80px 20px;
}

.stats-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  text-align:center;
}

.stat-box h2{
  font-size:51px;
  font-weight:700;
  color:#000000;
  margin-bottom:10px;
}

.stat-box p{
  font-size:14px;
  letter-spacing:2px;
  color:black;
  margin: 0;
}

 /* Meet Your CFO Partner section     */
/* section full background */
.cfo-section{
/* padding:50px 0; */
padding: 25px 0;
margin-bottom: 51px;
}

/* left image */
.profile-img{
width:100%;
border-radius:18px;
height:500px;
object-fit:cover;
}

/* heading */
.main-title{
font-size:36px;
font-weight:700;
color:#000000;
/* margin-bottom:20px; */
}

.name-title{
font-size:19px;
font-weight:600;
color: black!important;
margin-bottom:8px;
}

/* paragraph */
.text-desc{
color:black;
line-height:1.3;
/* margin-bottom:15px; */
margin-bottom: 3px;
font-size: 15px;
}
  
.info-card {
    background: #e6e8ec;
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    height: 130px;
}
.icon-box{
width:45px;
height:45px;
margin:auto;
margin-bottom:2px;
}

.info-card p{
font-weight:600;
margin:0;
font-size: 16px;
color: black;
}

/* responsive */
@media(max-width:991px){

.profile-img{
height:auto;
}

.main-title{
font-size:29px;
}

}

/* animation image and content */

/* initial state */
.cfo-left,
.cfo-right{
  opacity:0;
}

/* left image animation */
.cfo-left{
  /* transform:translateX(-100px); */

  animation:leftSlide linear forwards;
  animation-timeline:view();
  animation-range:entry 20% cover 40%;
}

/* right content animation */
.cfo-right{
  transform:translateX(100px);

  animation:rightSlide linear forwards;
  animation-timeline:view();
  animation-range:entry 20% cover 40%;
}

/* keyframes */
@keyframes leftSlide{
  to{
    opacity:1;
    transform:translateX(0);
  }
}

@keyframes rightSlide{
  to{
    opacity:1;
    transform:translateX(0);
  }
}

/* result section */

/* .results-section{
    padding:70px 20px;
} */

.results-title{
    text-align:center;
    font-weight:700;
    font-size:40px;
    margin-bottom:50px;
    color:#0f172a;
}

.results-wrapper{
    display:flex;
    flex-wrap:wrap;
    gap:40px;
    justify-content:center;
}

.result-card{
    background:#f3f4f6;
    border-radius:20px;
    padding:25px 20px;
    text-align:center;
    flex:1 1 45%;
    /* max-width:520px; */
}

.result-number{
    font-size:48px;
    font-weight:700;
    color:#0f172a;
}

.result-text{
    margin-top:10px;
    font-size:18px;
    color:#374151;
}

/* local-expertise */
.local-expertise{
/* background:#f4f4f4; */
padding:80px 0;
}

.expertise-img img{
width:100%;
object-fit: cover;
border-radius:20px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
}
.local-content{
  margin-top: 32px;
}
.expertise-title{
font-size:48px;
font-weight:700;
color:#0f172a;
margin-bottom:23px;
}

.expertise-list{
list-style:none;
padding:0;
margin-bottom:19px;
}

.expertise-list li{
font-size:17px;
margin-bottom:14px;
display:flex;
align-items:center;
color:#1e293b;
}

.expertise-list i{
color:#2aa198;
font-size:22px;
margin-right:12px;
}

.expertise-btn{
background:#4da5a1;
color:white;
padding:16px 32px;
border-radius:12px;
text-decoration:none;
font-size:18px;
display:inline-block;
transition:0.3s;
}

.expertise-btn:hover{
background:#3d8c89;
color:white;
}

/* Responsive */

@media(max-width:991px){

.expertise-title{
font-size:36px;
}

}

@media(max-width:576px){
.hero {
    padding: 55px 0;
}    
.local-expertise{
padding:21px 0;
padding-bottom: 30px;
}

.expertise-title{
font-size:30px;
}

.expertise-list li{
font-size:16px;
}
.footer-divider {
    
    margin: 25px 0!important;
}
}


/* TESTIMONIAL */

.testimonial{

background:var(--dark);
color:white;
padding:60px 0;

}
.testimonial-heading{
    font-size: 37px;
    line-height: 60px;
}
.test-span-1{
  font-weight: bold;
}
.test-span-2{
  color: #cacaca;
}
.testimonial-p{
    font-size: 20px;
}


/* CTA SECTION */

.cta-section{

background:var(--dark);
padding:75px 20px;
color:white;
padding-bottom: 31px;

}

.cta-title{

font-size:40px;
font-weight:600;
margin-bottom:30px;

}

.cta-btn{

background:var(--primary);
color:white;
padding:12px 28px;
border-radius:8px;
border:none;
font-weight:500;

}

.cta-email{

margin-top:20px;
color:#cbd5e1;

}


/* FOOTER */

.footer{

background:var(--dark);
padding:13px 0 30px;
color:white;

}

.footer-row{

margin-top:40px;

}

.footer-title{

font-size:22px;
margin-bottom:15px;

}

.footer-text{

color:#a3a8b0;
/* max-width:340px; */

}


.footer-heading{

font-size:16px;
margin-bottom:15px;

}

.footer-links{

list-style:none;
padding:0;

}

.footer-links li{

margin-bottom:8px;

}

.footer-links a{

text-decoration:none;
color:#a3a8b0;

}



.footer-contact{

color:#a3a8b0;
margin-bottom:5px;

}

.footer-email{

color:#1AA59A;
}

.footer-divider{

border-color:white;
margin:30px 0;

}

.copyright{

color:#a3a8b0;
font-size:14px;

}

/* color:#D3D7DE; */
  /* price SECTION  */

.pricing-section{
  padding:75px 20px;
  background:#f5f6f8;
  text-align:center;
}

.pricing-container{
  max-width:880px;
  margin:auto;
  /* max-width: 260vh; */
}

.pricing-title{
  font-size:48px;
  font-weight:700;
  margin-bottom:30px;
  color:#0f1e36;
}

.pricing-card{
  background:#fff;
  border-radius:20px;
  padding:50px 30px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.pricing-label{
  font-size:14px;
  letter-spacing:2px;
  color:#6b7280;
  margin-bottom:20px;
}

.pricing-price{
  font-size:49px;
  font-weight:700;
  margin-bottom:20px;
  color:#0f1e36;
}

.pricing-price span{
  font-size:24px;
  font-weight:500;
  color:#374151;
}

.pricing-desc{
  font-size:18px;
  color:#6b7280;
  margin-bottom:30px;
}

.pricing-btn{
  background:var(--primary);
  color:white;
  border:none;
  padding:14px 30px;
  border-radius:8px;
  font-size:16px;
  cursor:pointer;
  transition:0.3s;
}

.pricing-btn:hover{
  background:#327979;
}


/* Tablet */
@media (max-width:768px){

  .pricing-title{
    font-size:36px;
  }

  .pricing-price{
    font-size:38px;
  }

  .pricing-desc{
    font-size:16px;
  }

}

/* Mobile */
@media (max-width:480px){

  .pricing-title{
    font-size:28px!important;
  }

  .pricing-card{
    padding:35px 20px;
  }

  .pricing-price{
    font-size:32px!important;
  }

  .pricing-price span{
    font-size:18px;
  }

}
.cpa-new{
  height: auto;
  width: 128px;
  object-fit: cover;
}

.footer-text-col-4{
  font-size: 14px;
  color:#a3a8b0
}