:root {
  --theme:#76ae0d;
  --theme-hover:#5a8600;
  --theme-light:#fbfff3;
  --container:1370px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
.button-block.right {
  justify-content: flex-end;
}
.button-block {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.button-block.center {
  justify-content: center;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
p {
  font-size: 16px;
  font-weight: 400;
  font-family: 'poppins';
  line-height: 26px;
  margin-bottom: 20px;
  color: #000;
}
p:last-child {
  margin-bottom: 0;
}
/* Header container */
.header {
  position: fixed;
  z-index: 10;
  width: 100%;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
}

/* Header inner grid layout */
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 14px 15px;
  max-width: 1370px;
  margin: 0 auto;
}

/* Logo */
.logo img {
  /* height: 45px; */
  height: 52px;
}
.logo {
  height: 52px;
}
/* Navigation */
.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}
.nav > a,
.nav > .dropdown > a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  transition: 0.3s;
  position: relative;
  padding: 7px 16px;
  border-radius: 18px;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  -ms-border-radius: 18px;
  -o-border-radius: 18px;
  display: block;
}
.nav a.active,
.nav a:hover {
  box-shadow: 0 0 0 1px inset;
}

/* Dropdown */
.dropdown {
  position: relative;
}
.dropdown .arrow {
  border: solid #fff;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  margin-left: 6px;
  position: relative;
  top: -3px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}
.dropdown-content {
  display: none;
  position: absolute;
  padding-top: 30px;
}
.dropdown-content-inner {
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.8);
  min-width: 280px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border-top: 3px solid var(--theme);
  z-index: 999;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
}
.dropdown-content-inner::before {
  content: '';
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid var(--theme);
  position: absolute;
  top: -15px;
  left: 40px;
}
.header .dropdown-content a {
  display: block;
  padding: 10px 15px;
  color: #000;
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}
.header .dropdown-content a:hover {
  background: #f7f7f7;
  color: var(--theme-hover);
}
.header.scrolled .dropdown-content a:hover {
  color: var(--theme-hover);
}
.dropdown:hover .dropdown-content {
  display: block;
}
.common-button {
  background: var(--theme);
  color: #fff;
  padding: 9px 11px 9px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: 0.3s;
  white-space: nowrap;
  gap: 12px;
  text-transform: uppercase;
}
.common-button.nospan {
  padding: 9px 24px 9px 24px;
}
.common-button:hover,a.common-button:hover {
    background-color: var(--theme-hover);
    color: #fff;
}
.common-button.small i {
  width: 26px;
  height: 26px;
  font-size: 26px;
}
.common-button.small {
  padding: 5px 6px 5px 12px;
  font-size: 12px;
}
.common-button i {
    width: 32px;
    height: 32px;
    font-size: 32px;
    color: #fff;
}
/* CTA Button */
.cta button {
    background-color: var(--theme);
    color: #fff;
    border: none;
    padding: 10px 26px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}
.cta button:hover {
    background-color: var(--theme-hover);
}
.custom-call {
    display: grid;
    grid-template-columns: 35px auto;
    gap: 10px;
    align-items: center;
    color: #fff;
}
.custom-call i {
    width:35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    border-radius: 50%;
    color: var(--primary);
}
.custom-call label {
    display: block;
    color: #fff;
}
.custom-call a {
    color: #fff;
    text-decoration: none;
}
.header.scrolled .custom-call a,
.header.scrolled .custom-call label,
.header.scrolled .custom-call  {
    color: #000;
}
.header.scrolled .custom-call i {
    border-color: #000;
}
.nagative-button {
  background-color: #fff;
  color: #000;
  border: none;
  padding: 10px 26px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  border: 1px solid #000;
  text-decoration: none;
  display: inline-block;
}
.nagative-button:hover {
  background-color: var(--theme);
  color: #fff;
  border-color: var(--theme);
}
/* Hamburger menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 20px;
    cursor: pointer;
}
.menu-toggle span {
    display: block;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: 0.3s;
}
.headinga-area {
    margin-bottom: 10px;
}
.headinga-area.center {
    text-align: center;
}
.heading-style {
    font-size: 36px;
    font-weight: 600;
    font-family: 'poppins';
    line-height: 1.2em;
    margin-bottom: 20px;
    margin-top: -17px;
    text-transform: capitalize;
}
.heading-style .tag {
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 13px;
    -webkit-border-radius: 13px;
    -moz-border-radius: 13px;
    -ms-border-radius: 13px;
    -o-border-radius: 13px;
    box-shadow: 0 0 0 1px var(--theme) inset;
}
.heading-style .green {
  color: var(--theme);
}
/************** after scroll ***************/
.header.scrolled {
  background-color: #fff;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
}
.header.scrolled .nav a {
  color: #000;
}
.header.scrolled .dropdown .arrow {
  border-color: #000;
}
/*****************************/
/* 🌙 Global Footer Styling */
footer {
  background-color: #0e0e0e;
  color: #ccc;
  padding: 40px 0;
  line-height: 1.6;
}
.footer-inner {
  max-width: var(--container);
  padding: 0 15px;
  margin: 0 auto;
}
footer .footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1.2fr 1.2fr 1.2fr;
  gap: 40px;
}

footer .footer-logo img {
  width: 226px;
  margin-bottom: 20px;
}

footer h4 {
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

/* 🌍 Office Section */
.footer-office img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
  object-fit: cover;
}
.footer-office h5 {
  color: #D4D4D4;
  font-size: 14px;
  margin-bottom: 5px;
  text-transform: uppercase;
}

/* ⚡ Quick Links */
.footer-links {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(3, 1fr);
  gap: 5px 10px;
}

.footer-links a {
  color: #D4D4D4;
  text-decoration: none;
  font-size: 16px;
  display: block;
  position: relative;
  padding-left: 14px;
}
.footer-links a::before {
  content: "•";
  color: var(--theme);
  position: absolute;
  left: 0;
}
.footer-links a:hover {
  text-decoration: underline;
}

/* 🧩 Footer Bottom */
.footer-bottom {
  border-top: 1px solid #222;
  margin-top: 40px;
  padding-top: 15px;
  text-align: center;
  font-size: 13px;
  color: #777;
}
footer p {
  color: #fff;
}
.followus-cnt {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--grey-300);
  display: flex;
  align-items: center;
  gap: 20px;
}
.followus-cnt ul {
  display: flex;
  align-items: center;
  gap: 20px;
}
.followus-cnt ul li {
  list-style-type: none;
}
.followus-cnt ul li a {
  font-size: 24px;
  color: #fff;
  text-decoration: none;
}
.followus-cnt ul li a:hover {
  opacity: .7;
}
.whatsapp_connect {
  position: fixed;
  right: 20px;
  bottom: 120px;
  width: 50px;
  height: 50px;
  z-index: 111;
}
.back-to-top {
  display: none;
  width: 50px;
  height: 50px;
  font-size: 50px;
  transform: rotate(-55deg);
  background-color: #fff;
  border-radius: 50%;
  overflow: hidden;
}
.back-to-top:hover {
  color: var(--theme-hover);
}
/*****************************/
@font-face {
  font-family: 'icomoon';
  src:  url('fonts/icomoon.eot?lhtyk2');
  src:  url('fonts/icomoon.eot?lhtyk2#iefix') format('embedded-opentype'),
    url('fonts/icomoon.ttf?lhtyk2') format('truetype'),
    url('fonts/icomoon.woff?lhtyk2') format('woff'),
    url('fonts/icomoon.svg?lhtyk2#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-itr-file:before {
  content: "\e91c";
}
.icon-expert:before {
  content: "\e91d";
}
.icon-youtube-icon:before {
  content: "\e90d";
}
.icon-countries:before {
  content: "\e902";
}
.icon-clients:before {
  content: "\e900";
}
.icon-professionals:before {
  content: "\e901";
}
.icon-experience:before {
  content: "\e903";
}
.icon-focused:before {
  content: "\e904";
}
.icon-support:before {
  content: "\e905";
}
.icon-accountability:before {
  content: "\e906";
}
.icon-money-management:before {
  content: "\e907";
}
.icon-button-arrow:before {
  content: "\e908";
}
.icon-trophy .path1:before {
  content: "\e909";
  color: rgb(0, 0, 0);
}
.icon-trophy .path2:before {
  content: "\e90a";
  margin-left: -1em;
  color: rgb(1, 1, 1);
}
.icon-trophy .path3:before {
  content: "\e90b";
  margin-left: -1em;
  color: rgb(0, 0, 0);
}
.icon-trophy .path4:before {
  content: "\e90c";
  margin-left: -1em;
  color: rgb(0, 0, 0);
}
.icon-facebook-icon:before {
  content: "\e90e";
}
.icon-insta-icon:before {
  content: "\e90f";
}
.icon-linkedin-icon:before {
  content: "\e910";
}
.icon-twitter-icon:before {
  content: "\e911";
}
.icon-debt-restructure:before {
  content: "\e912";
}
.icon-fdi:before {
  content: "\e913";
}
.icon-tax:before {
  content: "\e914";
}
.icon-rera:before {
  content: "\e915";
}
.icon-assistant:before {
  content: "\e916";
}
.icon-audit:before {
  content: "\e917";
}
.icon-start-busines:before {
  content: "\e918";
}
.icon-subsidy:before {
  content: "\e919";
}
.icon-law:before {
  content: "\e91a";
}
.icon-accounting:before {
  content: "\e91b";
}
/*****************************/
/* Responsive */
@media (max-width: 1200px) {
  .footer-links {
    grid-template-rows: repeat(5, 1fr);
  }
}
@media (max-width: 1024px) {
  .footer-links {
    grid-template-rows: repeat(6, 1fr);
  }
  .logo img {
    height: 40px;
  }
  .logo {
    height: 40px;
  }
}
@media (max-width: 991px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    padding: 12px 25px;
    gap: 20px;
  }
  
  .footer-links {
      grid-template-rows: repeat(7, 1fr);
  }
  .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 5px;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  .nav.active { display: block; }

  .dropdown-content {
    position: static;
    box-shadow: none;
    border: none;
    display: none;
  }
  .dropdown-content > a { border: none; padding: 8px 0; }

  .menu-toggle { display: flex; }
  .cta { display: none; }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  .header {
    background-color: #fff;
  }
  .nav > a, .nav > .dropdown > a {
    color: #000;
  }
  .dropdown .arrow {
    border-color: #000;
  }
  .nav a {
      display: block;
  }
  footer .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .header .custom-call a,
  .header .custom-call label,
  .header .custom-call  {
      color: #000;
  }
  .header .custom-call i {
      border-color: #000;
  }
  .heading-style {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .footer-links {
      grid-auto-flow: row;
      grid-template-columns: 100%;
  }
}
@media (max-width: 630px) {
  footer .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-links {
    grid-template-columns: 100%;
  }
  .footer-bottom {
    margin-top: 20px;
  }
  .custom-call label {
      font-size: 14px;
  }
  .custom-call a {
      font-size: 14px;
  }
  .custom-call i {
      width: 28px;
      height: 28px;
      font-size: 12px;
  }
  .heading-style {
    font-size: 28px;
  }
  p,
  .footer-links a {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .custom-call {
    display: none;
  }
}