@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,500;1,14..32,500&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body,
html {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 16px;
  position: relative;
}


.container915 {
  max-width: 915px;
  margin: auto;
  position: relative;
}

.top-header {
  background: #fff;
  border-bottom: 1px solid #ddd;
}

.top-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo img {
  height: 40px;
}


.menu-icon {
  display: none;
  font-size: 24px;
  cursor: pointer;
}


#menu-toggle {
  display: none;
}


.top-nav {
  display: flex;
  gap: 25px;
}

.top-nav a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

.top-nav i {
  margin-right: 8px;
}


.close-btn {
  display: none;
  align-self: flex-end;
  font-size: 26px;
  cursor: pointer;
  margin-bottom: 20px;
}


.service-nav {
  background: #032A56;
}

.service-nav .container {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  padding: 12px 0;
}

.service-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
}


.hero {
  background: #FAFAFA;
  position: relative;
}


.hero-container {
  position: relative;
  max-width: 1240px;
  margin: auto;
  padding: 0px 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.hero-content {
  max-width: 520px;
}

.hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.25;
  color: #000;
}

.hero-content h1 span {
  color: #f15a24;
}


.hero-line {
  width: 36px;
  background: #0b2c4d;
  border-radius: 4px;
  margin: 16px 0 20px;
}

.hero-content p {
  color: #555;
  font-size: 16px;
  max-width: 420px;
  margin-bottom: 28px;
}

.hero-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #f15a24;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
}


/* .hero-image img {
    position: absolute;
    width: 590px;
    height: 466px;
    top: 1px;
    left: 809px;
  } */

.hero {
  padding: 0;
  margin: 0;
}


.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-image img {
  display: block;
  width: 590px;
  max-width: 100%;
  /* height: auto; */
  /* position: relative; */
  /* âœ… SAFE */
  /* top: -89px; */
  /* adjust as needed */
  /* left: 154px; */
}




.startup-wrap {
  background: #174035;
  padding: 50px 20px;
  overflow: hidden;
}

.startup-box {
  max-width: 1200px;
  margin: auto;
  border: 1.5px solid #274D43;
  border-radius: 12px;
  padding: 30px 20px 40px;
  background: #274D43;
}

.startup-title {
  text-align: center;
  color: #fff;
  font-size: 24px;
  margin-bottom: 30px;
  font-weight: 800;
}

/* Hide checkbox */
#viewToggle {
  display: none;
}

.startup-slider {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 28px;
  justify-items: center;
  margin-bottom: 30px;
}

.startup-card {
  text-align: center;
  color: #fff;
  font-size: 13px;
  white-space: normal;
  transition: transform 0.3s ease;
}

.startup-card:hover {
  transform: translateY(-5px);
}

.startup-card img {
  width: 56px;
  height: 56px;
  background: #fff;
  padding: 8px;
  border-radius: 10px;
  margin-bottom: 10px;
  object-fit: contain;
}

.startup-card p {
  /* line-height: 1.4; */
  max-width: 120px;
  margin: 0 auto;
  font-size: 16px;
}

/* Last 3 cards centered on desktop */
/* .startup-card:nth-child(8) {
  grid-column: 3 / 4;
}

.startup-card:nth-child(9) {
  grid-column: 4 / 5;
}

.startup-card:nth-child(10) {
  grid-column: 5 / 6;
}

/* Hide extra cards by default */
.startup-card.extra {
  display: none;
}

*/

/* View More Button */
.view-more-btn {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 12px 40px;
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  text-align: center;
}

.view-more-btn:hover {
  background: #fff;
  color: #1f4b3f;
  transform: scale(1.05);
}

.view-more-btn::after {
  content: "View More";
}

/* When checkbox is checked */
#viewToggle:checked~.startup-slider .startup-card.extra {
  display: block;
  animation: fadeIn 0.5s ease;
}

#viewToggle:checked~.view-more-btn::after {
  content: "View Less";
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}



@media (min-width: 992px) {
  button#readMoreBtn {
    display: none;
  }

  .startup-slider .startup-card.extra {
    display: block;
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .startup-card.null {
    display: none;

  }

  .startup-slider .startup-card.extra {
    display: none;
  }


  .startup-slider.show-all .startup-card.extra {
    display: block;
  }
}




/* .startup-slider {
    grid-template-columns: repeat(5, 1fr);
  } */

/* Remove centering on smaller screens */
/* .startup-card:nth-child(8),
  .startup-card:nth-child(9),
  .startup-card:nth-child(10) {
    grid-column: auto;
  } */


@media (max-width: 992px) {
  .startup-slider {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .startup-slider {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .startup-box {
    padding: 25px 15px 35px;
  }

  .startup-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }

  .startup-card img {
    width: 50px;
    height: 50px;
  }

  .startup-card {
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .startup-slider {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .startup-wrap {
    padding: 40px 15px;
  }

  .startup-title {
    font-size: 1.3rem;
  }

  .view-more-btn {
    padding: 10px 35px;
    font-size: 14px;
  }
}

@media (max-width: 400px) {
  .startup-slider {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .startup-card img {
    width: 45px;
    height: 45px;
  }
}


.finance-wrap {
  background: #F4F8FF;
  padding: 40px 0;
  /* image jaisa top & bottom space */
  margin-bottom: 30px;
  margin-top: 30px;
}

.finance-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #0A4570;
  margin-bottom: 38px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.finance-slider {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  justify-items: center;
  align-items: start;
}

.finance-card {
  text-align: center;
  font-size: 13px;
  color: #333;
}

.finance-card img {
  width: 61px;
  height: 61px;
  background: #fff;
  padding: 0px;
  border-radius: 10px;
  margin-bottom: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.finance-card p {
  margin: 0;
  line-height: 1.3;
  font-size: 16px;
}

.subsidy-section {
  background: #FFF4EB;
  padding: 50px 20px;
  margin-bottom: 50px;
}

.subsidy-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #0A4570;
  margin-bottom: 30px;
}


.subsidy-grid {
  max-width: 500px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  justify-items: center;
  width: 100%;
}


.subsidy-card {
  text-align: center;
  font-size: 14px;
  color: #333;
}

.subsidy-card img {
  width: 56px;
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.subsidy-card p {
  font-size: 16px;
}

.registration-section {
  background: #E4FFDD;
  padding: 50px 0;
  margin-bottom: 50px;
}

/* .registration-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #0A4570;
  margin-bottom: 35px;
} */

.registration-title {
  position: relative;
  /* required for top & left */
  /* top: -35px; */
  /* adjust as needed */
  left: 0px;
  /* adjust as needed */
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #0A4570;
  margin-bottom: 35px;
}

.registration-slider1 {
  display: flex;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  justify-content: space-between;
}

.registration-slider {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  justify-items: center;
}

.registration-card {
  text-align: center;
  font-size: 13px;
  color: #333;
}

.registration-card img {
  width: 61px;
  height: 61px;
  background: #fff;
  padding: 9px;
  border-radius: 10px;
  margin-bottom: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  object-fit: contain;
}

.registration-card p {
  font-size: 16px;
  color: #393B3C;
}

.tax-section {
  background: #FFF6CF;
  padding: 30px 0;
  margin-bottom: 50px;
}

.tax-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 50px;
}


.tax-content {
  flex: 1.1;
}

.tax-content h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0A4570;
}

.tax-content p {
  font-size: 15px;
  color: #393B3C;
  margin-bottom: 35px;
}


.tax-services {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.tax-card {
  /* background: #ffffff; */
  padding: 0px 0px;
  /* border-radius: 12px; */
  text-align: center;
  /* box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06); */
  transition: 0.3s ease;
}

.tax-card:hover {
  transform: translateY(-4px);
}

.tax-card img {
  width: 61px;
  margin-bottom: 10px;
  background: #fff;
  height: 61px;
  object-fit: contain;
  padding: 5px;
  border-radius: 5px;
}

.tax-card span {
  font-size: 16px;
  color: #333;
  display: block;
  line-height: 1.3;
  font-weight: 500;
}

.tax-image {
  /* flex: 1; */
  /* position: relative; */
  /* display: flex; */
  justify-content: flex-end;
}

.tax-image img {
  width: 417px;
  height: 417px;
  border-radius: 6px;
  /* object-fit: cover; */
  /* position: relative; */
  /* top: 43px; */
  /* left: 124px; */
}


.gst-wrapper {
  position: relative;
  margin-bottom: 38px;
}

.gst-box.container {
  margin-top: -140px;
  padding: 50px 20px 30px 20px;
  max-width: 1177px;
  width: 100%;
}

/* Background image */
.gst-bg img {
  width: 100%;
  /* height: 520px; */
  object-fit: cover;
  display: block;
}

/* Yellow box */
.gst-box {
  background: #FFF4D6;
  max-width: 1200px;
  margin: -180px auto 0;
  padding: 45px 40px 55px;
  border-radius: 16px;
  position: relative;
  z-index: 2;
}

/* Items layout */
.gst-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 39px 40px;
}

/* Single item */
.gst-item {
  width: 140px;
  text-align: center;
}

/* Icon box */
.gst-item span {
  width: 56px;
  height: 56px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.gst-item img {
  width: 33px;
  height: 33px;
}

/* Text */
.gst-item p {
  font-size: 16px;
  color: #222;
  /* line-height: 1.4; */
  font-weight: 500;
}


.company-law-section {
  /* background: #e8ffd9; */
  background: linear-gradient(to bottom, #EAFFE5, #D8FFCE);
  padding: 50px 0 50px;
  margin-bottom: 50px;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  color: #0A4570;
  margin-bottom: 45px;
}

.company-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  row-gap: 40px;
  column-gap: 30px;
  justify-items: center;
}

.company-card {
  text-align: center;
  font-size: 13px;
  color: #333;
  max-width: 150px;
}

.company-card img {
  width: 48px;
  height: 48px;
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.company-card p {
  /* line-height: 1.4; */
  font-size: 16px;
  color: #393B3C;
}

.view-all {
  display: block;
  text-align: center;
  margin-top: 40px;
  color: #ff6a00;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
}


.business-support {
  background: #eadcf4;
  padding: 60px 0 0px;
  border-radius: 18px;
  position: relative;
  max-width: 1177px;
  margin-left: auto;
  margin-right: auto;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.bs-title {
  text-align: center;
  font-size: 26px;
  color: #0a4570;
  margin-bottom: 40px;
}


.bs-top {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  justify-items: center;
}

.bs-icon {
  text-align: center;
  font-size: 13px;
  max-width: 160px;
}

.bs-icon img {
  width: 48px;
  background: #fff;
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.bs-icon p {
  font-size: 16px;
  color: #393B3C;
}

.bs-bottom {
  /* left: 50%; */
  /* bottom: -172px; */
  /* transform: translateX(-50%); */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  z-index: 5;
  margin-right: auto;
  /* margin-bottom: -20px; */
  /* margin-top: 10px; */
  position: relative;
  bottom: -40px;
}

.bs-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.bs-card h4 {
  font-size: 16px;
  color: #ff6a00;
  margin-bottom: 14px;
}

.bs-card img {
  width: 44px;
  margin-bottom: 8px;
}

.bs-card p {
  font-size: 16px;
  font-weight: 600;
}

.two-items {
  display: flex;
  justify-content: space-around;
}

.green {
  background: #e7f8ef;
}

.yellow {
  background: #fff5e6;
}

.blue {
  background: #e9f4ff;
}


.valuation-section {
  background: #fff3ee;
  padding: 40px 0;
  margin-top: 100px;
}

.valuation-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 60px;
}


.valuation-content {
  flex: 1;
}

.small-title {
  font-size: 31px;
  font-weight: 600;
  color: #111;
  margin-bottom: 6px;
}

.main-title {
  font-size: 30px;
  color: #ff5a1f;
  margin-bottom: 28px;
}

.valuation-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.val-card {
  text-align: center;
  font-size: 13px;
  color: #333;
}

.val-card img {
  width: 61px;
  background: #fff;
  padding: 9px;
  border-radius: 10px;
  margin-bottom: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  height: 61px;
  object-fit: contain;
}

.val-card p {
  font-size: 16px;
  color: #393B3C;
}

/*.valuation-image {
  /* flex: 0.9; */
/* display: flex; */
/* justify-content: center; 
}

.valuation-image img {
  width: 100%;
  /* max-width: 420px; */
/* border-radius: 10px; */
/* object-fit: cover; */



.global-section {
  padding: 60px 0;
  background: #ffffff;
}

.global-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}


.compliance-box {
  background: #eef5ff;
  padding: 30px;
  border-radius: 12px;
}

.compliance-box h3 {
  text-align: center;
  font-size: 29px;
  color: #0a4570;
  margin-bottom: 25px;
}

.compliance-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.compliance-card {
  text-align: center;
  font-size: 13px;
}

.compliance-card img {
  width: 61px;
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.compliance-card p {
  font-size: 16px;
  color: #393B3C;
}

.global-box {
  background: #f3f3f3;
  padding: 30px;
  border-radius: 12px;
  position: relative;
}

.global-box h3 {
  text-align: center;
  font-size: 22px;
  color: #0a4570;
  margin-bottom: 25px;
}

.global-content {
  display: flex;
  gap: 20px;
  z-index: 2;
  position: relative;
  flex-direction: column;
  align-items: flex-start;
}

.country-card {
  background: #fff;
  padding: 8px 8px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.country-card img {
  width: 53px;
}

.country-card span {
  font-size: 12px;
  color: #393B3C;
}

.map-img {
  position: absolute;
  right: 3px;
  top: 1px;
  width: 421px;
  opacity: 7.3;
}


.footer {
  background: linear-gradient(180deg, #0a4c78, #063458);
  color: #fff;
  padding: 40px 20px;
  font-family: "Inter", sans-serif;
}

.footer-wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-logo img {
  max-width: 150px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  cursor: pointer;
  font-weight: 500;
}
.footer-nav a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin: 30px 0;
}

.footer-offices {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.office h4 {
  margin-bottom: 6px;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  text-align: center;
}

.footer-policy a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .footer-nav {
    flex-direction: row;
    gap: 43px;
  }

  .footer-offices {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    gap: 0;
  }
}

.top-nav a {
  position: relative;
  text-decoration: none;
  color: #000;
  padding-bottom: 6px;
}


.top-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #e74c3c;
  transition: width 0.3s ease;
}


.top-nav a:hover::after {
  width: 100%;
}



.about-section {
  padding: 50px 20px 0px;
  background: #EDEDED;
  margin-top: 50px;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* LEFT CONTENT */
.about-content {
  flex: 1;
}

.about-label {
  font-size: 14px;
  color: #777;
}

.about-content h2 {
  font-size: 42px;
  margin: 0px 0 0px;
}

.about-content h2 span {
  color: #f15a24;
}

.about-content p {
  font-size: 16px;
  line-height: 1.2rem;
  color: #393B3C;
}

.btn {
  display: inline-block;
  margin-top: 29px;
  padding: 12px 30px;
  background: #f15a24;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
}

/* RIGHT IMAGE */
.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 16px;
}


/* .team-section {
  padding: 60px 20px;
  background: #f4f4f4;
  text-align: center;
}
.team-section h2 {
  margin-bottom: 35px;
}


  .team-section .team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 15px;
    
} */


.team-section {
  padding: 50px 20px 50px 20px;
  background: #EDEDED;
  text-align: center;
}

.team-title {
  font-size: 32px;
  margin-bottom: 50px;
  color: #003b5c;
}

/* GRID */
.team-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* DESKTOP */
  gap: 30px;
}

/* CARD */
.team-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
}

.team-card img {
  width: 100%;
  height: 363px;
  object-fit: cover;
  border-radius: 0px;
}


.team-info {
  background: #1786d1;
  color: #fff;
  padding: 16px;
  text-align: left;
}

.team-info h4 {
  margin: 0;
  font-size: 16px;
}

.team-info p {
  margin: 4px 0 0;
  font-size: 13px;
  opacity: 0.9;
}


.view-btn {
  display: inline-block;
  margin-top: 40px;
  padding: 12px 36px;
  background: #f15a24;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  color: #0b3c5d;
  margin-bottom: 40px;
}

.team-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

.team-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-card img {
  width: 100%;
  height: 335px;
  object-fit: cover;
}

.team-info {
  background: linear-gradient(135deg, #0A4570, #1384D6) !important;
  color: #fff;
  padding: 9px;
  text-align: left;
  font-size: 12px;
  margin-top: -65px;
  margin-left: -1px;
  opacity: 0.9;
  width: 80%;
  border-radius: 8px;
}

.team-info h4 {
  font-size: 15px;
  margin: 0;
  font-weight: 600;
}

.team-info p {
  font-size: 12px;
  margin: 4px 0 0;
  opacity: 0.9;
}

.team-btn {
  margin-top: 35px;
}

.team-btn a {
  display: inline-block;
  padding: 10px 28px;
  background: #f15a29;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
}

.btnstyle53 {
  display: inline-block;
  margin-top: 15px;
  padding: 13px 35px;
  background: #f15a24;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
  font-size: 16px;
}

.colorstyle1 {
  color: #0A4570;
}


.heading53 {
  font-family: Inter;
  font-weight: 800;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: 0%;
}

.heading54 {
  font-family: Inter;
  font-weight: 800;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
}

button {
  background-color: #f15a24;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: block;
  margin: 20px auto;
  border-radius: 5px;

}

/* .container1{
  background: #1f4c40;
  padding: 40px 20px 60px;
  text-align: center;
}

.container1 h2{
  color: #fff;
  font-size: 32px;
  margin-bottom: 25px;
}
.container1 p{
  color: white;
  font-size: 20px;
  padding: 10px 20px;
  margin: 10px;
} */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 12px;
}


.play-section1 {
  background: #184438;
  padding: 60px 0;
  color: #fff;
  overflow: hidden;
}


.play-section1 h2,
.play-section1 p {
  text-align: center;
  margin-bottom: 10px;
}


.play-section1 h2 {
  margin-bottom: 50px;
  font-size: 32px;
}


.relatedslider img {
  height: 433px !important;
}


.play-image {
  width: 100%;
  max-width: 730px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 34px;
  margin-bottom: 34px;
}

/* .play-image img {
  max-width: 600px;
  width: 100%;
  border-radius: 16px;
} */
.owl-carousel.owl-theme.slider-one.relatedslider.owl-loaded.owl-drag .owl-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.owl-carousel.owl-theme.slider-one.relatedslider.owl-loaded.owl-drag .owl-nav button {
  border: 5px solid #fff !important;
  background: transparent !important;
  border-radius: 100px !important;
  width: 50px !important;
  height: 50px !important;
  line-height: 0px !important;
  margin: 0 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.relatedslider .owl-nav button span {
  color: #fff;
  line-height: inherit !important;
}

.play-image video {
  width: 100%;
  display: block;
}

.slider-one .owl-stage {
  display: flex;
}

.slider-one .owl-item {
  padding: 0 !important;
  display: flex;
  justify-content: center;
}


.reel {
  /* height: 260px; */
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: #000;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  transition: all 0.35s ease;
}

.reel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Hover Effects */
.reel:hover img {
  transform: scale(1.08);
}

.reel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.1));
}


.slider-one .owl-nav {
  margin-top: 30px;
  text-align: center;
}

.slider-one .owl-nav button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffff !important;
  color: black !important;
  font-size: 22px;
  margin: 0 8px;
  transition: all 0.3s ease;
  border: 1px solid white;
}

.slider-one .owl-nav button:hover {
  background: #27a27c !important;
  transform: translateY(-3px);
}

.slider-one .owl-nav button span {
  font-size: 34px;
  line-height: 1;
}




/* @media (max-width:600px) {
   .team-section .team-grid {
    display: grid;
    grid-template-columns :1fr 1fr;
    gap: 15px;
}
  
} */

/* .hero-slider .item {
  max-width: 500px;
}

.owl-dots {
  margin-top: 20px;
}

.owl-dot span {
  width: 10px;
  height: 10px;
  background: #ccc;
}

.owl-dot.active span {
  background: #f25c2a;
}


.hero-slide h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.25;
  color: #000;
}

.hero-slide p {
  color: #555;
  font-size: 16px;
  max-width: 420px;
  margin-bottom: 28px;
} */



hero-content {
  max-width: 520px;
}


.hero-text-slider {
  width: 100%;
}


.hero-slide h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.25;
  color: #000;
  margin-bottom: 6px;
}

ul.herodots {
  display: flex;
  max-width: 60px;
  width: 100%;
  list-style: none;
}

ul.herodots {
  gap: 4px;
}

ul.herodots li:nth-child(01) {
  width: 14px;
  height: 9px;
  opacity: 1;
  border-radius: 100px;
  display: block;
}

ul.herodots li:nth-child(02) {
  width: 43px;
  height: 9px;
  opacity: 1;
  border-radius: 100px;
  display: block;
}


ul.herodots li {
  background: #0A4570;
}

.hero-slide h1 span {
  color: #f15a24;
}

.hero-slide p {
  font-size: 16px;
  color: #555;
  max-width: 420px;
  margin-top: 25px;
  margin-bottom: 22px;
}


.hero-text-slider .owl-dots {
  margin-top: 20px;
  text-align: left;
}


.hero-text-slider .owl-dot {
  display: inline-flex !important;
  align-items: center;
}


.hero-text-slider .owl-dot span {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  margin-right: 8px;
  display: inline-block;
  transition: all 0.3s ease;
}


.hero-text-slider .owl-dot.active span {
  width: 22px;
  background: #0A4570;
  border-radius: 20px;
}


@media (min-width:641px) {
  .company-law-section .company-grid .company-card:nth-child(n+12)+.company-card {
    display: none;
  }

  .company-law-section.active .company-grid .company-card:nth-child(n+12)+.company-card {
    display: block;
  }

  .company-law-section a.view-all.btn-toggle span.less {
    display: none;
  }


  section.company-law-section.active a.view-all.btn-toggle span.more {
    display: none;
  }

  section.company-law-section.active a.view-all.btn-toggle span.less {
    display: block
  }

.registration-section  .view-all.btn-toggleee{
display: none;
}

}


@media (max-width:640px) {
  .company-law-section .company-grid .company-card:nth-child(n+8)+.company-card {
    display: none;
  }

  .company-law-section.active .company-grid .company-card:nth-child(n+8)+.company-card {
    display: block;
  }

  .company-law-section a.view-all.btn-toggle span.less {
    display: none;
  }


  section.company-law-section.active a.view-all.btn-toggle span.more {
    display: none;
  }

  section.company-law-section.active a.view-all.btn-toggle span.less {
    display: block
  }


 


.registration-section a.view-all.btn-toggleee span.less {
    display: none;
  }


  section.registration-section.active a.view-all.btn-toggleee span.more {
    display: none;
  }

  section.registration-section.active a.view-all.btn-toggleee span.less {
    display: block
  }
section.registration-section .registration-slider1  {
  display: none;
}
section.registration-section.active .registration-slider1  {
  display: flex;
}

}



/* index page responsive */
@media (max-width:640px) {
  .hero-container {
    padding: 27px 26px 26px;
  }

  .hero-content h1 br {
    display: none;
  }

  .hero-content h1 {
    font-size: 20px;
  }

  ul.herodots {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-content p {
    font-size: 12px;
  }

  .startup-card p {
    font-size: 14px;
  }

  .about-section {
    padding: 30px 20px 0px;
    margin-top: 30px;
  }

  .about-label {
    font-size: 12px;
  }

  .about-content h2 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .about-content p {
    font-size: 12px;
  }

  .team-section {
    padding: 30px 10px 30px 10px;
  }

  .team-title {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }


  .team-card img {
    height: 270px;
  }

  .team-card {
    position: relative;
  }

  .team-card img {
    height: 270px;
    line-height: 0;
    float: left;
  }

  .team-info {
    bottom: 0;
    position: absolute;
    z-index: 9999;
    width: 100%;
    text-align: left;
    margin: 0;
    height: 80px;
  }

  .team-section .view-btn {
    margin-top: 20px;
  }

  .finance-wrap {
    padding: 30px 0;
  }

  .finance-title {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .finance-slider {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }

  .finance-card p {
    font-size: 12px;
  }

  .subsidy-section {
    padding: 30px 20px;
    margin-bottom: 30px;
  }

  .subsidy-title {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .subsidy-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }

  .subsidy-card p {
    font-size: 12px;
  }

  .registration-section {
    padding: 30px 0;
    margin-bottom: 30px;
  }

  .registration-title {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .registration-slider {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .registration-card p {
    font-size: 12px;
    color: #393B3C;
  }

  .tax-section {
    padding: 30px 0;
    margin-bottom: 30px;
  }

  .tax-content h2 {
    font-size: 16px;
  }

  .tax-content p {
    font-size: 14px;
  }

  .tax-services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  .tax-image img {
    max-width: 100%;
    width: 100%;
    height: auto !important;
  }

  .tax-card img {
    width: 48px;
  }

  .gst-wrapper { 
    margin-bottom: 30px;
}
.gst-bg img { 
    height: 280px; 
}

.gst-box.container {
    margin-top: -140px;
    padding: 30px 10px 30px 10px;
    max-width: 1177px;
    width: 92%;
    margin-right: 15px;
    margin-left: 15px;
    flex: 1;
}
.gst-items {
    display: grid;  
    gap: 16px 16px;
    grid-template-columns: 1fr 1fr 1fr;
}
.gst-item {
    width: 100%;
    text-align: center;
}

.gst-item p {
    font-size: 12px;
    text-align: center;
}

.company-law-section { 
    padding: 30px 0 30px;
    margin-bottom: 30px;
}
.company-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 16px;
    column-gap: 16px;
    justify-items: center;
}

.section-title {
    font-size: 16px; 
    margin-bottom: 20px;
}

.company-card p { 
    font-size: 12px; 
}
.company-law-section .view-all {
    display: block;
    text-align: center;
    margin-top: 20px;
    color: #ff6a00;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
}

.business-support {
    background: #eadcf4;
    padding: 30px 0 0px; 
}
.bs-title {
    text-align: center;
    font-size: 16px;
    color: #0a4570;
    margin-bottom: 20px;
}

.bs-top { 
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    justify-items: center;
}

.bs-icon p {
    font-size: 12px;
    color: #393B3C;
}

    .bs-bottom {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 3px;
        bottom: -16px;
        margin-left: -10px;
        flex: 1;
        width: 100vw;
    }

.bs-card { 
    padding: 10px; 
}

.bs-card h4 {
    font-size: 12px;
    color: #ff6a00;
    margin-bottom: 14px;
    text-align: left;
}
.bs-card img {
    width: 45px;
    background: #fff;
    padding: 10px;
    margin-left: 0px;
    display: block;
}

.bs-card p {
    font-size: 12px;
    font-weight: 600;
}
.valuation-section { 
    padding: 30px 0;
    margin-top: 50px;
}


.valuation-section .small-title {
    font-size: 20px; 
}
.valuation-section  .main-title {
    font-size: 20px; 
    margin-bottom: 25px;
}
.valuation-container { 
    gap: 10px;
    flex-direction: column;
}
.valuation-icons {  
    gap: 16px;
}
.val-card p {
    font-size: 12px;
    color: #393B3C;
}
.valuation-container .valuation-image img {
    width: 100%;
}

.global-section {
    padding: 30px 20px;
    background: #ffffff;
}

.global-container {
        display: flex;
        gap: 24px;
        padding: 0;
        flex-direction: column;
    }
.compliance-box { 
    padding: 20px; 
}
    .compliance-box h3 { 
    font-size: 16px; 
    margin-bottom: 20px;
}
.compliance-items { 
    gap: 16px;
}
.compliance-card p {
    font-size: 12px; 
}

.play-section1 { 
    padding: 30px 0; 
}
.play-section1 h2 {
    margin-bottom: 4px;
    font-size: 14px;
}
.play-section1 h2 + p {
    font-size: 12px;
    margin-bottom: 37px;
}
.play-image + h2 {
    margin-bottom: 16px;
}
.relatedslider img {
    height: 118px !important;
}
.reel {
    min-width: 99px;
    height: 118px;
  }


/* Podcast page  responsive Style */
.podcast-section {
    padding: 25px 16px 0px !important; 
}

.podcast-section h2 {
    text-align: left; 
    margin: 0 auto 12px !important;  
    font-size: 16px !important;
}
section.recently-played h2.section-title {
   margin: 0 auto 12px !important;  
    font-size: 16px !important;
}

.most-popular {
    padding: 0px 20px !important;
}
.most-popular h2 {
    margin-bottom: 12px;
    font-size: 16px !important;
}
.related-shorts-section h2 {
    font-size: 16px !important;
}

.related-shorts-section h2 +  .picon img {
    height: 16px;
}

.short-card { 
    height: 140px !important; 
}


/* about us page responsive style */
 
.about-section {
           height: auto !important; 
           top: 0px !important;
           margin: 0px !important;
}

.about-title {
    font-size: 16px !important; 
}

.welcome-section {
    padding: 0px 20px !important; 
}

.welcome-container {
    
    display: flex !important;
    flex-direction: column-reverse !important;
}
.welcome-card { 
    background: #fff;
    position: relative;
    margin-left: 0px !important;
    z-index: 2;
    margin-top: 30px;
    padding: 15px;
}

.welcome-tag {
    font-size: 14px !important; 
}

.welcome-card h2 {
    font-size: 16px !important;
    margin: 9px 0 16px !important; 
    font-weight: 900 !important;
}


.welcome-stats { 
    gap: 20px !important;
    padding: 30px !important;
    flex-direction: column;
    align-items: center;
}

.watch-video {
    left: auto !important;
    padding: 22px 21px 19px 16px !important; 
    right: -10px !important;
}

.watch-video div strong {
    font-size: 15px !important;
}

.why-container {
    display: flex !important;
    gap: 40px !important;
    align-items: center;
    flex-direction: column;
}

.why-left {
    text-align: center;
}
.why-left h2 {
    font-size: 16px !important;
    margin-bottom: 12px !important;
} 
.why-left p {
    font-size: 14px !important;  
}

.why-right {
    grid-template-columns: repeat(1, 1fr) !important;
}
.why-choose-us {
    padding: 30px 20px !important; 
}
.why-card h4 {
    font-size: 14px !important;
    margin-bottom: 8px !important;
}
.why-card p {
    font-size: 14px  !important;  
}

.apart-section {
    padding: 30px 20px !important; 
}
.apart-cards {
    grid-template-columns: repeat(1, 1fr)  !important;
    gap: 20px;
}

.contact-hero .hero-overlay {
    align-items: flex-start; 
    padding-top: 30px;
}
.cta-section .cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-content: center;
}
.cta-section .cta-container .cta-text {
    text-align: center;
}



/* single blog page responsive */
.blog-wrapper {
    padding-top: 30px !important; 
}
section.blog-wrapper .container  {
      grid-template-columns: 1fr !important;
}
.blog-left.blogcontent  h1 {
    font-size: 16px;
    margin-bottom: 10px;
}

.quotesads {
    max-width: 93vw !important; 
}

.blogcontent p {
    font-size: 16px !important; 
}

.blogcontent h2 {
    margin-top: 16px !important;  
    font-size: 16px !important;
}
.quotesads { 
    padding: 20px !important;
}
.two-images {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important; 
}
.blogcontent .two-images img {
    width: 100% !important;
}


/* service page responsive style */
.growth-section {
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: -435px !important;
}
.growth-hero h1 {
    font-size: 18px !important;
    font-weight: 700 !important;
    margin-bottom: 10px !important;
}

.growth-hero p {
    font-size: 12px !important; 
    margin-bottom: 14px !important;
}
.growth-card {
    border-radius: 6px !important;
    padding: 13px !important; 
    gap: 18px !important;
}
.growth-left h2 {
    font-size: 14px !important; 
    margin-bottom: 18px !important;
    text-align: center;
}
 .growth-left p {
    font-size: 14px !important; 
    text-align: center;
}
.growth-right button {
    margin-left: auto !important;
    margin-right: 0px !important;
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}
.advantages-section {
padding-top: 540px !important;
}
.advantages-text h2 {
    font-size: 16px !important; 
}
.advantages-text ul li {
    font-size: 12px !important; 
}
.advantages-text ul li::before {
    top: -1px !important;
}

.data-driven-section {
    padding: 30px 20px !important;
}
.data-content h2 {
    font-size: 18px !important; 
    margin-bottom: 17px !important; 
    text-align: center;
}
.data-content p {
    font-size: 12px !important; 
    color: #444;
    margin-bottom: 16px !important;
}
.profitability-section { 
    padding: 30px 20px !important;
}
.profitability-wrapper h2 {
    font-size: 16px !important; 
    margin-bottom: 20px !important; 
}
.profit-card h4 {
    font-size: 12px !important;
    margin-bottom: 5px !important; 
}
.profit-card p {
    font-size: 10px !important; 
}
.profit-card img {
    width: 45px !important; 
    padding: 11px !important;  
}

.profit-card { 
    padding: 22px 19px !important; 
}
.why-choose-section { 
    padding: 30px 20px !important;
}
.why-wrapper h2 {
    font-size: 18px !important; 
    margin-bottom: 20px !important;
}
.finance-challenges {
    padding: 30px 20px !important; 
}
.finance-challenges h2 {
    font-size: 18px !important;
    margin-bottom: 20px !important;
}
.finance-challenges .timeline {
    margin-top: 0px !important;
    top: 0px;
    gap: 110px;
}
.timeline .card {
    margin-top: 0px !important;
}
.finance-challenges .timeline .card {
    padding-left: 80px !important;
    top: 0px;
}
.finance-challenges .timeline .card span.tag {
    font-size: 16px !important;
}
.finance-challenges .timeline .card h4 {
    font-size: 14px !important;
    margin-bottom: 9px !important;
}
  .finance-challenges .timeline .card:before {
    content: "";
    height: 60px;
    display: block;
    width: 20px;
    background: url('../images/downarrow.png');
    bottom: -80px;
    position: absolute;
    left: 0px;
    right: 0px;
    text-align: center;
    margin: 0 auto;
    background-size: contain;
    background-repeat: no-repeat;
}
.finance-challenges .timeline .card:last-child::before {
  display: none;
}



/* footer section responsive */
.footer-logo img {
    max-width: 170px;
    height: auto;
}
.footer-nav { 
    gap: 8px; 
}

.footer-nav li { 
    font-size: 16px; 
}

.footer-offices { 
    text-align: left;
}

.footer-wrapper { 
    padding: 0 0px;
}
.footer-bottom { 
    gap: 14px; 
}
}



@media (max-width:400px) {
  .company-grid {
    row-gap: 8px;
    column-gap: 8px;
}
    .bs-card p {
        font-size: 9px;
        font-weight: 600;
    }
        .bs-bottom {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 3px;
        bottom: -16px;
        margin-left: -10px;
        flex: 1;
        width: 100vw;
    }
    .bs-card { 
        width: 100px;
    }
        .bs-card img {
        width: 36px;
        background: #fff;
        padding: 7px;
        margin-left: 0px;
        display: block;
    }

        .global-section {
        padding: 30px 10px; 
    }

    .compliance-box {
        padding: 10px;
    }
        .compliance-items {
        gap: 10px;
    }
    .global-box { 
      padding: 20px 7px;
}

.global-box h3 {
    text-align: left;
    font-size: 17px;
    margin-bottom: 10px;
}
.country-card img {
    width: 30px;
}
.global-content { 
    gap: 8px; 
}

.map-img {
    width: 327px; 
}

    .valuation-icons {
        gap: 7px;
    }

    .reel {
      min-width :85px
    }
}