/*CSS Custom Properties*/
:root {
  --font-playfair: 'Playfair Display', sans-serif;
  --font-cormorant: 'Cormorant Garamond', sans-serif;
  --font-outfit: 'Outfit', sans-serif;
  --font-inter: 'Inter', sans-serif;
  --section-title-color: #1a1a1a;
  --text-body-color: #4b5563;
  --white: #FFFFFF;
  --light-white: #F0FDF4;
  --green: #00674f;
  --dark-green: #004d3b;
  --gold: #c8a45d;
  --gold-light: #e8c97a;
  --gold-soft: #e8d8b0;

  /*--primary:       #0066CC;
  --primary-dark:  #0052a3;
  --primary-light: #e8f0fc;
  --secondary:     #22C55E;
  --secondary-dark:#16a34a;
  --bg-dark:       #0a1628;
  --text-dark:     #1a2235;
  --text-mid:      #4b5563;
  --text-light:    #6b7280;
  --border-light:  #e5e7eb;
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:     0 8px 24px rgba(0,102,204,0.12);
  --shadow-lg:     0 20px 50px rgba(0,102,204,0.18);
  --radius-sm:     10px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --transition:    all 0.35s cubic-bezier(0.4, 0, 0.2, 1);*/
}
body{
  font-family: var(--font-inter);
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: var(--text-body-color);
  transition: all 0.4s ease;
}
img{
  max-width: 100%;
}

/******block section*******/
.section-block{
  padding: 100px 0;
}
.section-header{
  margin-bottom: 50px;
}
.section-subtitle{
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}
.section-title{
  font-family: var(--font-playfair);
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
  color: var(--section-title-color);
  margin-bottom: 15px;
}
@media (max-width: 1199.98px){
  .section-block{
    padding: 70px 0;
  }
  .section-header{
    margin-bottom: 30px;
  }
  .section-title{
    font-size: 35px;
    line-height: 45px;
  }
}
@media (max-width: 991.98px){
  .section-block{
    padding: 50px 0;
  }
  .section-header{
    margin-bottom: 30px;
  }
  .section-title{
    font-size: 35px;
    line-height: 45px;
  }
}
@media (max-width: 767.98px){
  .section-title{
    font-size: 30px;
    line-height: 40px;
  }
}
/******block section ends*******/

/******card section*******/
.card-box{
  background: var(--white);
  padding: 25px;
  border-radius: 20px;
  border: 1px solid #e7e0d2;
}
.card-img-icon{
  width: 56px;
  height: 56px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.card-title{
  font-family: var(--font-playfair);
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: var(--section-title-color);
  margin-bottom: 15px;
}
.card-desc{
  font-size: 14px;
  line-height: 22px;
}
.card-link{
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
}
.card-box:hover .card-link{
  color: var(--gold);
}
/******card section ends*******/

/******header section*******/
body header{
  background : #000 !important;
}
/*logo*/
.navbar-brand a.site-logo{
  padding-right: 10px;
}
.navbar-brand a.site-logo img{
  margin: 0;
  width: 60px;
  height: auto;
}
.navbar-brand a.site-title{
  font-family: var(--font-playfair);
  color: var(--green);
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  text-transform: capitalize;
  display: flex;
  margin-bottom: 5px;
}
.navbar-brand a.site-title:focus,
.navbar-brand a.site-title:active,
.navbar-brand a.site-title:hover{
  color: var(--green); 
}
.navbar-brand .site-slogan{
  font-family: var(--font-inter);
  color: var(--gold);
  text-transform: uppercase;
  font-size: 12px;
  line-height: 12px;
  font-weight: 600;
}
/*navbar menu*/
.navbar-nav .nav-item a{
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
}
.navbar-nav .nav-item a.active,
.navbar-nav .nav-item a:hover{
  color: var(--gold);
}
/*header contact button*/
.header-contact-block a.btn:focus,
.header-contact-block a.btn:active,
.header-contact-block a.btn{
  background-color: var(--green);
  color: var(--white);
  border-radius: 20PX;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  padding: 8px 20px 8px 40px;
  outline: 0;
  border: 0;
}
.header-contact-block a.btn.btn-call{
  background-image: url(../images/icons/call-white.svg);
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: center left 15px;
}
.header-contact-block a.btn.btn-wa{
  background-image: url(../images/icons/whatsapp-white.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center left 15px;
}
.header-contact-block a.btn:hover{
  background-color: var(--dark-green);  
}
/******header section ends*******/

/******hero section*******/
.hero-section-wrapper{
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 600px;
  position: relative;
}
.hero-overlay{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: rgba(0, 103, 79, 0.5);
}
.hero-section-wrapper > .container{
  position: relative;
  z-index: 3;
}
.hero-badge{
  font-size: 12px;
  line-height: 22px;
  font-weight: 600;
  color: var(--gold-light);
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 6px 16px;
  border-radius: 30px;
  display: inline-flex;
  text-transform: uppercase;
}
.hero-title{
  font-family: var(--font-playfair);
  font-size: 60px;
  line-height: 70px;
  font-weight: 700;
  color: var(--white);
}
.hero-subtitle{
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  color: var(--gold-light); 
}
.hero-desc{
  color: var(--light-white);
}
/*stats counter*/
.homepage-hero-stats{
  flex-wrap: wrap;
}
.homepage-hero-stats > div{
  padding: 10px;
}
.homepage-hero-stats .stat-card{
  padding: 25px;
  border-radius: 15px;
  background: #ffffff26;
  border: 1px solid #ffffff40;
}
.stat-card .stat-value{
  font-family: var(--font-playfair);
  font-size: 36px;
  line-height: 46px;
  font-weight: 700;
  color: var(--gold-soft);
}
.stat-card .stat-value::after{
  content: "+";
  display: inline-flex;
}
.homepage-hero-stats > div:nth-child(4) .stat-value::after{
  content: "%";
  display: inline-flex;
}
.stat-card .stat-title{
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  color: var(--light-white);
}
@media (max-width: 1199.98px){
  .hero-title{
    font-size: 55px;
    line-height: 65px;
  }
}
@media (max-width: 990.98px){
  .hero-title{
    font-size: 50px;
    line-height: 60px;
  }
}
@media (max-width: 767.98px){
  .hero-title{
    font-size: 40px;
    line-height: 50px;
  } 
  .homepage-hero-stats .stat-card{
    padding: 10px;
  }
  .stat-card .stat-value{
    font-size: 30px;
    line-height: 40px;   
  }
  .stat-card .stat-title{
    font-size: 12px;
    line-height: 22px;    
  }
}
/******hero section ends*******/

/******about section*******/
#about{
  background: #faf8f3;
}
#about .about-image img{
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.04);
}
.about-card > *{
  margin-bottom: 0;
}
.about-card .card-img-icon{
  background-color: #E1E9E2;
  background-size: 25px;
  background-repeat: no-repeat;
  background-position: center;
}
.about-card .card-img-icon.strategic-investment-planning{
  background-image: url(../images/icons/about/investment-plan.svg); 
}
.about-card .card-img-icon.nri-financial-solutions{
  background-image: url(../images/icons/about/financial-solution.svg);
}
.about-card .card-img-icon.holistic-protection-planning{
  background-image: url(../images/icons/about/protection.svg); 
}
.about-card .content-wrapper{
  padding-left: 20px;
  width: calc(100% - 56px);
}
.about-card .card-title{
  margin-bottom: 5px;
}
.about-card .card-desc{
  margin-bottom: 0;
}
@media (max-width: 991.98px){
  .about-image{
    text-align: center;
    margin-bottom: 15px;
  }
}
/******about section ends*******/

/******vision section*******/
#vision{
  background: var(--green);
}
#vision .section-subtitle{
  color: var(--gold-soft);
}
#vision .section-title{
  color: var(--white);
}
.vision-body-wrapper{
  border: 1px solid rgba(232, 216, 176, 0.2);
  border-radius: 20px;
  padding: 25px;
  color: var(--light-white);
}
.vision-body-wrapper .card-img-icon{
  background: rgba(200, 164, 93, 0.20);
  background-size: 25px;
  background-repeat: no-repeat;
  background-position: center;
}
.vision-body > *:nth-child(1) .card-img-icon{
  background-image: url(../images/icons/vision/vision-gold-light.svg);
}
.vision-body > *:nth-child(2) .card-img-icon{
  background-image: url(../images/icons/vision/mission.svg);
}
.vision-body-wrapper .title{
  font-family: var(--font-playfair);
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 15px;
}
.vision-body-wrapper .desc{
  color: var(--light-white);
}
.vision-body-wrapper p{
  margin: 0;
}
@media (max-width: 991.98px){
  #vision .vision-body > *{
    margin-bottom: 15px;
  }
}
/******vision section ends*******/

/******service section*******/
#services{
  background: #f4efe4;
}
.service-card-wrapper{
  background: var(--white);
  border-radius: 20px;
  padding: 25px;
}
#services .services-grid > *{
  margin-bottom: 20px;
}
.service-card-wrapper .card-img-icon{
  background: var(--green);
  background-size: 25px;
  background-repeat: no-repeat;
  background-position: center;
}
.service-card-wrapper .card-img-icon.investments{
  background-image: url(../images/icons/services/investment.svg);
}
.service-card-wrapper .card-img-icon.insurance{
  background-image: url(../images/icons/services/insurance.svg);
}
.service-card-wrapper .card-img-icon.loans{
  background-image: url(../images/icons/services/loan.svg);
}
.service-card-wrapper .card-img-icon.pan-services{
  background-image: url(../images/icons/services/pan.svg);
}
.service-card-wrapper .card-img-icon.income-tax-return{
  background-image: url(../images/icons/services/tax.svg);
}
.service-card-wrapper .card-img-icon.gst-services{
  background-image: url(../images/icons/services/gst.svg);
}
.service-card-wrapper .card-img-icon.nri-services{
  background-image: url(../images/icons/services/nri.svg);
}
/******service section ends*******/

/******why choose section*******/
#why-us .choose-grid .choose-card{
  margin-bottom: 20px;
}
.choose-card-wrapper .card-img-icon{
  background: rgba(247, 242, 231,0.90);
}
.choose-card-wrapper .card-desc p{
  margin-bottom: 0;
}
/******why choose section ends*******/

/******contact section*******/
#contact{
  background: #f4efe4;
}
.contact-card-body .contact-item{
  margin-bottom: 20px;
}
.contact-card-body .card-img-icon{
  margin-bottom: 0;
  background-color: #E1E9E2;
}
.contact-card-body .item-wrapper{
  padding-left: 20px;
}
.contact-card-body .lbl{
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  text-transform: uppercase;
}
.contact-card-body .item-wrapper a,
.contact-card-body .item-wrapper address,
.contact-card-body .item-wrapper p{
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  text-decoration: none;
  color: var(--section-title-color);
}
.contact-card-body .item-wrapper a:hover{
  color: var(--green);
}
.contact-card-body .working-hours .item-wrapper p{
  margin-bottom: 5px;
}
.contact-card-body .working-hours .item-wrapper p:last-child{
  margin-bottom: 0;
}

.contact-form-wrapper{
  background: var(--white);
  padding: 25px 10px;
  border-radius: 20px;
}
.contact-form-wrapper .contact-enquiry-form{
  display: flex;
  flex-wrap: wrap;
}
.contact-form-wrapper .form-group{
  padding: 0 15px;
  margin: 0 0 30px;
}
.contact-form-wrapper label{
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  color: var(--section-title-color)
}
.contact-form-wrapper textarea,
.contact-form-wrapper input{
  border-radius: 10px;
  background: #f4efe4;
}
.contact-form-wrapper input[type="submit"]{
  width: 100%;
  background: var(--green);
  outline: 0;
  border: 0;
  box-shadow: none;
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
  color: var(--white);
  padding: 14px 24px;
}
.contact-form-wrapper input[type="submit"]:hover{
  width: 100%;
  background: var(--dark-green);
}

#contact .map-wrap iframe{
  width: 100%;
  border-radius: 15px;
}
/******contact section ends*******/

/******footer section*******/
footer{
  background: #0d1612;
  padding: 30px 0 0;
}
footer .region-footer{
  flex-direction: row;
  padding-bottom: 30px;
}
.footer-branding img{
  max-width: 60px;
}
.footer-branding .site-branding{
  text-decoration: none;
}
.footer-branding .brand-text-wrapper{
  padding-left: 10px;
}
.footer-branding .site-name{
  font-family: var(--font-playfair);
  color: var(--green);
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  text-transform: capitalize;
  margin-bottom: 5px;
}
.footer-branding .site-slogan{
  font-family: var(--font-inter);
  color: var(--gold);
  text-transform: uppercase;
  font-size: 12px;
  line-height: 12px;
  font-weight: 600;
}
.footer-brand-desc{
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
}
.footer-link-block > h2{
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  color: var(--white); 
  /*border-bottom: 1px solid var(--gold-light);*/
}
footer .navbar-nav .nav-item a,
footer .footer-link-block a{
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  padding: 0 0 7px;
  display: inline-flex;
}
footer .footer-link-block a:hover{
  color: var(--gold);
}
.copyright {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.section-copyright{
  font-size: 14px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.3);  
}
@media (max-width: 767.98px){
  footer .region-footer{
    flex-direction: column;
  }
}
/******footer section ends*******/

/******floating buttons*******/
.float-btn{
  position: fixed;
  right: 22px;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; 
  align-items: center; 
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  z-index: 1030;
  transition: var(--transition);
  text-decoration: none;
}
.float-btn:hover{
  transform: scale(1.12);
  color: #fff;
}
.float-wa{
  bottom: 90px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}
.float-wa::after{
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background: url(../images/icons/whatsapp-white.svg) no-repeat center;
  background-size: 25px;
}
.float-call{
  bottom: 22px;
  background: #00674f;
  box-shadow: 0 6px 20px rgba(0,103,79,0.4);
}
.float-call::after{
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background: url(../images/icons/call-white.svg) no-repeat center;
  background-size: 25px;
}
/* WhatsApp pulse animation */
.float-wa::before{
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.5);
  animation: ripplePulse 2.5s ease-out infinite;
}
@keyframes ripplePulse{
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}
/* =============================================
   SCROLL TO TOP BUTTON
============================================= */
.scroll-top-btn {
  position: fixed;
  bottom: 22px;
  left: 22px;
  width: 46px; height: 46px;
  /*background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);*/
  background: #c8a45d;
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 6px 16px rgba(0,102,204,0.3);
  cursor: pointer;
  z-index: 1030;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  pointer-events: none;
}
.scroll-top-btn::before{
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background: url(../images/icons/arrow-up.svg) no-repeat center;
  background-size: 25px;    
}
.scroll-top-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.scroll-top-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,102,204,0.45);
}
/******floating buttons ends*******/