/*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;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);

  /*--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;
  */
}
body{
  font-family: var(--font-inter);
  font-size: 15px;
  line-height: 23px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-body-color);
  transition: all 0.4s ease;
  padding-top: 126.7px;
}
body.user-logged-in{
  padding-top: 122px !important; 
}
.toolbar-oriented .toolbar-bar{
  z-index: 99999;
}
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;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.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.user-logged-in header{
  top: 39px;
}
body header{
  background : #000 !important;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  min-height: 83px;
}
/*live market*/
.market-block{
  background: var(--dark-green);
}
/*logo*/
.navbar-brand{
  margin: 0;
  padding: 5px 0;
}
.navbar-brand > div{
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.logo-section img{
  margin: 0;
  width: 70px;
  height: auto;
  padding-right: 10px;
}
.logo-section .site-title{
  font-family: var(--font-playfair);
  color: var(--green) !important;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  text-transform: capitalize;
  display: flex;
  letter-spacing: 1px;
}
.logo-section a.site-title:focus,
.logo-section a.site-title:active,
.logo-section a.site-title:hover{
  color: var(--green);
}
/*.navbar-brand .site-slogan{*/
.logo-section .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);  
}
@media (max-width: 1199.98px){
  .logo-section .site-title{
    font-size: 17px;
    line-height: 17px;
  }
  .logo-section .site-slogan{
    font-size: 9px;
    line-height: 9px;
    display: inline-flex;
  }
  .navbar-nav .nav-item a{
    font-size: 14px;
    line-height: 24px;   
  }
  .header-contact-block a.btn{
    padding: 8px 15px 8px 35px;
    background-position: center left 10px !important;
  }
}
@media (max-width: 990.98px){
  .logo-section .site-title{
    font-size: 17px;
    line-height: 17px;
  }
  .logo-section .site-slogan{
    font-size: 9px;
    line-height: 9px;
    display: inline-flex;
  }
  /*navbar menu*/
  #main-header .navbar-toggler{
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border: 0;
    outline: 0;
    box-shadow: 0 4px 12px rgba(200, 164, 93, 0.25);
    display: flex;
    width: 50px;
    height: 40px;
    padding: 4px 12px;
    position: relative;  
  }
  #main-header .navbar-toggler span{
    background: var(--gold);
    height: 1.5px;
    display: inline-flex;
    transition: var(--transition);
    position: absolute;
    left: 12px;
    right: 12px;
  }
  #main-header .navbar-toggler.collapsed span:nth-child(1){
    top: 9px;
  }
  #main-header .navbar-toggler.collapsed span:nth-child(2){
    top: 50%;
    transform: translateY(-50%);
  }
  #main-header .navbar-toggler.collapsed span:nth-child(3){
    bottom: 8px;
  } 
  #main-header .navbar-toggler:not(.collapsed) span:nth-child(1){
    transform: rotate(45deg);
    top: 50%;
  }
  #main-header .navbar-toggler:not(.collapsed) span:nth-child(2){
    opacity: 0;
    display: none;
  }
  #main-header .navbar-toggler:not(.collapsed) span:nth-child(3){
    transform: rotate(-45deg);
    bottom: auto;
    top: 50%;
  } 
}
/******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.8);
}
.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);
  margin-bottom: 10px;
}
.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: 50px;
    line-height: 60px;
  }
}
@media (max-width: 990.98px){
  .hero-title{
    font-size: 45px;
    line-height: 55px;
  }
}
@media (max-width: 767.98px){
  .hero-title{
    font-size: 35px;
    line-height: 45px;
  } 
  .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: var(--light-white);
}
#about .about-image img{
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.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);
  background: rgba(0, 103, 79, 1);
}
#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: var(--light-white);
}
.service-card-wrapper{
  border-radius: 20px;
  padding: 25px;
}
#services .services-grid{
  gap: 30px 0;
}
#services .services-grid > *{
  margin: 0 !important;
}
.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{
  background: var(--gold);
}
#why-us .section-title,
#why-us .section-subtitle{
  color: var(--white);
}
#why-us .choose-grid{
  gap: 30px 0;
}
#why-us .choose-grid .choose-card{
  margin: 0 !important;
}
#why-us .choose-grid .choose-card .card-box{
  background: var(--white);
}
.choose-card-wrapper .card-img-icon{
  background: var(--gold);
  background-size: 25px;
  background-repeat: no-repeat;
  background-position: center;
}
.choose-card-wrapper .card-img-icon.sebi-registered-advisors{
  background-image: url(../images/icons/why-us/sebi.svg);
}
.choose-card-wrapper .card-img-icon.personalised-wealth-solutions{
  background-image: url(../images/icons/why-us/wealth-solutuion.svg);
}
.choose-card-wrapper .card-img-icon.transparent-financial-planning{
  background-image: url(../images/icons/why-us/financial-planning.svg);
}
.choose-card-wrapper .card-img-icon.dedicated-nri-support{
  background-image: url(../images/icons/why-us/nri-support.svg);
}
.choose-card-wrapper .card-img-icon.fast--reliable-service{
  background-image: url(../images/icons/why-us/fast-service.svg);
}
.choose-card-wrapper .card-img-icon.expert-tax-consultation{
  background-image: url(../images/icons/why-us/tax.svg);
}
.choose-card-wrapper .card-desc p{
  margin-bottom: 0;
}
/******why choose section ends*******/

/******contact section*******/
#contact{
  background: var(--light-white);
}
.contact-card-body .contact-item{
  margin-bottom: 20px;
}
.contact-card-body .card-img-icon{
  margin-bottom: 0;
  background-color: #E1E9E2;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 25px;
}
.contact-card-body .address .card-img-icon{
  background-image: url(../images/icons/contact/address.svg);
}
.contact-card-body .phone .card-img-icon{
  background-image: url(../images/icons/contact/phone.svg);
}
.contact-card-body .whatsapp .card-img-icon{
  background-image: url(../images/icons/contact/whatsapp.svg);
}
.contact-card-body .email .card-img-icon{
  background-image: url(../images/icons/contact/email.svg);
}
.contact-card-body .support .card-img-icon{
  background-image: url(../images/icons/contact/email.svg);
}
.contact-card-body .working-hours .card-img-icon{
  background-image: url(../images/icons/contact/time.svg);
}

.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);
  color: var(--gold);
}
.contact-card-body .working-hours .item-wrapper p{
  margin-bottom: 5px;
}
.contact-card-body .working-hours .item-wrapper p:last-child{
  margin-bottom: 0;
}

.webform-submission-form{
  background: var(--white);
  padding: 25px 10px;
  border-radius: 20px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  display: flex;
  flex-wrap: wrap;
}
.webform-submission-form > .form-item{
  width: 50%;
  padding: 0 15px;
  margin: 0 0 30px;
}
.webform-submission-form > .form-item.form-type-textarea{
  width: 100%;
}
.webform-submission-form label{
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--section-title-color)
}
.webform-submission-form textarea,
.webform-submission-form input{
  border-radius: 10px;
  background: var(--light-white);
  outline: 0 !important;
  box-shadow: none !important;
  font-size: 14px;
  line-height: 26px;
  font-weight: 500;
  color: var(--text-body-color);
  padding: 5px 15px;
  width: 100%;
}
.webform-submission-form input{
  min-height: 40px;
}
.webform-submission-form textarea::placeholder,
.webform-submission-form input::placeholder{
  font-size: 13px;
  line-height: 28px;
  color: var(--text-body-color);
}
.webform-submission-form > .form-actions{
  width: 100%;
  padding: 0 15px;
  margin: 0;
}
.webform-submission-form 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;
}
.webform-submission-form input[type="submit"]:hover{
  width: 100%;
  background: var(--dark-green);
}

@media (max-width: 767.98px){
  .webform-submission-form > .form-item{
    width: 100%;
  }
}

#contact .map-wrap iframe{
  width: 100%;
  border-radius: 15px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
/******contact section ends*******/

/******footer section*******/
footer{
  background: #0d1612;
  padding: 30px 0 0;
}
footer .region-footer{
  flex-direction: row;
  padding-bottom: 30px;
}
.footer-branding .site-branding{
  text-decoration: none;
}
.footer-branding .brand-text-wrapper{
  gap: 7px; 
}
.footer-brand-desc{
  font-size: 14px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.5);
}
.footer-link-block > h2{
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  color: var(--white);
}
footer .navbar-nav .nav-item a,
footer .footer-link-block a{
  font-size: 13px;
  line-height: 17px;
  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);
}
.footer-bottom{
  font-size: 14px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.3);
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  justify-content: space-between;
}
.copyright{
  color: rgba(255, 255, 255, 0.5);
}
.privacy > .region-privacy-region,
.copyright > .region-copyright-region{
  display: flex;
}
.footer-bottom a{
  text-decoration: none;
}
.footer-bottom a:hover{
  text-decoration: none;
  color: var(--gold);
}
.legal-menu-block .nav{
  display: flex;
  flex-direction: row;
  gap: 15px;
} 
.legal-menu-block .nav a{
  padding: 0 !important;
}
@media (max-width: 767.98px){
  footer .region-footer{
    flex-direction: column;
  }
  .footer-bottom{
    flex-direction: column;
  }
  .copyright{
    margin-bottom: 10px;
  }
}
/******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*******/


/******Basic Page*******/
.page-node-type-page{
  background: var(--light-white);
}
.page-node-type-page article{
  padding: 70px 0;
}
/******Basic Page ends*******/