 body {
    font-family: 'Poppins';
}
#footer
{
    margin-top:0px;
}
.pb-5, .py-5 {
    padding-bottom: 7rem !important;
}
.pt-5, .py-5 {
    padding-top: 7rem !important;
}

button.btn.submit-btn:hover span{
    transform: translateX(5px);
}
a.btn-download:hover {
    color: #fff;
}
a.btn-download:hover span{
    transform: translateX(5px);
}


/* ================================
   Our Solutions CSS
   ================================ */
.hero-section2
{
    background-color:#f6fafd;
}
section.hero-section2.py-5 {
    padding-bottom: 0rem !important;
}
.text-heading
{
    font-size:38px;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.sub-heading1
{
    font-size:20px;
    font-weight:400;
    line-height:1.5;
    margin: 25px 0px;
}
.solutions-text
{
    font-size:16px;
    font-weight:400;
    line-height:1.5;
    margin: 25px 0px;
   font-family: 'Poppins';
}

.main-container {
  min-height: 100vh;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  height: 560px;
  overflow: hidden;
  margin-top:-22%;
}
.main {
  margin: 0px auto;
  width: 480px;
  height: 480px;
  position: relative;
}
.big-circle {
  height: 100%;
  width: 100%;
  position: relative;
  border: 3px solid #f0f4f7;
  border-radius: 50%;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  animation: Rotate 20s linear infinite;
  -webkit-animation: Rotate 20s linear infinite;
}
.icon-block {
  width: 64px;
  height: 64px;
  position: absolute;
  border-radius: 50%;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  /* background-image: linear-gradient(180deg, #4967e6 0%, #627bf4 100%);
  -webkit-background-image: linear-gradient(180deg, #4967e6 0%, #627bf4 100%);
  box-shadow: 0 2px 4px 0 #3e5ada;
  -webkit-box-shadow: 0 2px 4px 0 #3e5ada; */
}
.icon-block img {
  margin: 0px auto;
  width: 100px;
  animation: Rotate-reverse 20s linear infinite;
  -webkit-animation: Rotate-reverse 20s linear infinite;
}
.icon-block:first-child {
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.icon-block:nth-child(2) {
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
  -webkit-transform: translate(50%, -50%);
}
.icon-block:nth-child(3) {
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  -webkit-transform: translate(-50%, 50%);
}
.icon-block:nth-child(4) {
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
/* circle content */
.circle {
 animation: circle-rotate 20s linear infinite;
  -webkit-animation: circle-rotate 20s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  width: 75%;
  height: 75%;
  border: 3px solid #f0f4f7;
  border-radius: 50%;
}
.circle .icon-block img {
  animation: img-rotate 20s linear infinite;
  -webkit-animation: img-rotate 20s linear infinite;
}

.circle1{
 animation: circle-rotate-reverse 20s linear infinite;
  -webkit-animation: circle-rotate-reverse 20s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  width: 45%;
  height: 45%;
  border: 3px solid #f0f4f7;
  border-radius: 50%;
}
.circle1 .icon-block img {
  animation: img-rotate 20s linear infinite;
  -webkit-animation: img-rotate 20s linear infinite;
}
.big-circle{
 animation: circle-rotate-reverse 20s linear infinite;
  -webkit-animation: circle-rotate-reverse 20s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  width: 100%;
  height: 100%;
  border: 3px solid #f0f4f7;
  border-radius: 50%;
}
.big-circle .icon-block img {
  animation: img-rotate 20s linear infinite;
  -webkit-animation: img-rotate 20s linear infinite;
}
/* center logo */
.center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.center-logo img {
  max-width: 200px;
}

/* keyframe animation */

@keyframes Rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes Rotate {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes Rotate-reverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

@-webkit-keyframes Rotate-reverse {
  from {
    -webkit-transform: rotate(360deg);
  }
  to {
    -webkit-transform: rotate(0deg);
  }
}

@keyframes circle-rotate {
  from {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(405deg);
  }
}

@-webkit-keyframes circle-rotate {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
  }
  to {
    -webkit-transform: translate(-50%, -50%) rotate(405deg);
  }
}

@keyframes img-rotate {
  from {
    transform: rotate(-45deg);
  }
  to {
    transform: rotate(-405deg);
  }
}

@-webkit-keyframes img-rotate {
  from {
    -webkit-transform: rotate(-45deg);
  }
  to {
    -webkit-transform: rotate(-405deg);
  }
}

@-webkit-keyframes circle-rotate-reverse {

0% {
    transform: translate(-50%, -50%) rotate(405deg);
}

100% {
    transform: translate(-50%, -50%) rotate(45deg);
}
}


/* Hidden before scroll */
.text-heading,
.sub-heading1,
.solutions-text,
.main-container {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

/* Visible after scroll */
.animate {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ================================
   MediaKit CSS
   ================================ */

.hero-section {
    background: #2D1A80; /* purple area */
    color: #fff;
}

.hero-title {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtext {
    font-size: 22px;
    margin-top: 10px;
    opacity: 0.9;
    line-height: 1.5;
}

/* Download Button */
.btn-download {
    background: #000;
    color: #fff;
    padding: 12px 26px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    transition: 0.3s;
}

.btn-download:hover {
    background: #111;
}

/* Arrow style */
.btn-download .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

/* Hover effect */
.btn-download:hover {
    background: #1f8dc2;              /* Hover background color */
    color: #fff;                      /* Text color */
    border-color: #1f8dc2;
}

/* Arrow animation */
.btn-download:hover .arrow {
    transform: translateX(6px);
}

/* ================================
   How BizVersion works CSS
   ================================ */
section.hero-section3.py-5 {
    padding-top: 4rem !important;
    padding-bottom:5rem !important;
}
.bizversions-works
{
    margin:5% 0px;
}
.text-right.mb-4 {
    margin: 10% 10%;
}
.simple-steps-mobile
{
display:none;
}
.hero-section1
{
    background-color:#f4f4f4;
}
.steps-title {
    font-size: 38px;
    font-weight: 600;
}

.steps-desc {
    width: 70%;
    margin:5rem 0 0 10rem;
    color: #666;
    text-align:right;
    font-size:18px;
    line-height:1.5;
}

/* Container spacing */
.steps-list {
    font-family: "Helvetica Neue", Arial, sans-serif;
}

/* Step box layout */
.step-item {
    padding: 25px 0 0px 0px;
    align-items: flex-start;
}

/* Step number style */
.step-number {
    font-size: 42px;
    font-weight: 600;
    color: #111;
    line-height: 1;
}

/* Step title */
.step-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
}

/* Step description */
.step-text {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}
.steps-container {
  width: 100%;
  max-width: 900px;
  margin: auto;
}

.step {
  /* margin-bottom: 40px; */
  position: relative;
  opacity: 0.3;
  transition: opacity 0.6s ease-in-out; /* FADE EFFECT */
  cursor: pointer;
}

.step.active {
  opacity: 1;
}

/* Number, Title */
.step-number {
  font-size: 20px;
  font-weight: bold;
  color: #999;
  margin-bottom: 10px;
  margin-top:10px;
}

.step-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 8px;
}

.step-desc {
  color: #555;
  line-height: 1.6;
}

/* Progress Line */
.line {
  height: 1px;
  background: linear-gradient(to right, #000 0%, #000 calc(var(--stop) - 20%), var(--grey-003) var(--stop), var(--grey-003) 100%);
  width: 100%;
  overflow: hidden;
  position: relative;
  overflow: hidden;
  margin-bottom:20px;

}

/* Animated fill bar */
.line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: black;
  transition: width 2.5s ease-in-out; /* SLOWER SPEED */
}

/* Fill forward */
.active.forward .line::before {
  width: 100%;
}

/* Fill backward (reverse) */
.active.backward .line::before {
  width: 0%;
  left: auto;
  right: 0;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .step-number {
        font-size: 32px;
        margin-bottom: 10px;
    }
    .step-item {
        padding: 20px 0;
    }
}


/* ================================
   Our Newsletter CSS
   ================================ */
/* /* Background */
.newsletter-section {
    background: #dff2ff; /* Light blue like UI */
    font-family: "Helvetica Neue", Arial, sans-serif;
}

/* Left title */
.newsletter-title {
    font-size: 30px;
    font-weight: 900;
    color: #000;
    line-height: 1.5;
}

/* Labels */
.email-label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

/* Email input */
.email-input {
    height: 45px;
    /* border-radius: 6px; */
    border-bottom: 1px solid #bbb;
    font-size: 15px;
}

input.form-control.email-input::placeholder {
    font-size: 16px;
    color: #111;   /* change to any color you want */
    opacity: 1;
}
/* Terms text */
.form-desc {
    font-size: 12px;
    color: #555;
}

.form-desc a {
    font-weight: 600;
    color: #0070ff;
    text-decoration: none;
}

.form-desc a:hover {
    text-decoration: underline;
}

/* Submit button */
.submit-btn {
    background: #0d0128;
    color: #fff;
    padding: 10px 25px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    border: none;
    height: 45px;
}

.submit-btn .arrow {
    font-size: 16px;
}

/* Arrow */
.submit-btn .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

/* Hover effects */
.submit-btn:hover {
    background: #1f8dc2;   /* Change hover color */
    color: #fff;           /* Text color */
    border-color: #1f8dc2;
}

.submit-btn:hover .arrow {
    transform: translateX(6px); /* Slide arrow */
}
/* Responsive spacing */
@media (max-width: 767px) {
    .newsletter-form {
        flex-direction: column;
    }
    .submit-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ================================
   Market-insightS CSS
   ================================ */
.market-insights
{
    margin: 10% 10%;
}
.blog-grid1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 50px;
    margin-bottom: 32px;
}
/* Title */
.insights-title {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 40px;
}
/* Read More */
.read-more {
    color: #000;
    font-weight: 700;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    transition: color .3s ease;
}
a.read-more:hover
{
    color:#3cd2b5 !important;
}

.read-more span {
    font-size: 16px;
    transition: transform .3s ease;
}

.read-more:hover span {
    transform: translateX(5px);
}
h3.insight-title
{
    font-size: 18px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 1.5;
    font-weight: 400;
    height: 60px;
}

h3.insight-title a:hover
 {
    color: #333;
}

/* Responsive CSS */
@media (max-width: 767px)
{
.hero {
    padding: 50px 0px 0px;
    text-align: center;
    max-width: 100%;
}
}

/* ================================
   TABLET RESPONSIVE (768px – 1024px)
   ================================ */
@media (max-width: 1024px) {
  .main-container {
    margin-top: 0;
    height: auto;
    padding: 40px 0;
    min-height:600px;
  }

  .main {
    width: 500px;
    height: 500px;
  }

  .center-logo img {
    max-width: 150px;
  }

  .icon-block {
    width: 55px;
    height: 55px;
  }

  .icon-block img {
    width: 80%;
  }

  .circle {
    width: 78%;
    height: 78%;
  }
  .blog-grid1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .simple-steps-desktop
  {
    display:none !important;
  }
  .simple-steps-mobile
  {
    display:block !important;
  }
  .steps-desc {
    width: 100%;
    margin: 5rem 0rem;
    color: #666;
    text-align: left;
    font-size: 18px;
    line-height: 1.5;
}
}

/* ================================
   LARGE MOBILE (480px – 767px)
   ================================ */
@media (max-width: 767px) {
    .hero {
    padding: 50px 0px 0px;
    text-align: center;
    max-width: 100%;
}
  .main-container {
    margin-top: 0;
    height: auto;
    padding: 40px 0;
    min-height:600px;
  }

  .main {
    width: 500px;
    height: 500px;
  }

  .center-logo img {
    max-width: 120px;
  }

  .icon-block {
    width: 48px;
    height: 48px;
  }

  .icon-block img {
    width: 75%;
  }

  .circle {
    width: 80%;
    height: 80%;
  }
  .blog-grid1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .simple-steps-desktop
  {
    display:none !important;
  }
  .simple-steps-mobile
  {
    display:block !important;
  }
  .steps-desc {
    width: 100%;
    margin: 5rem 0rem;
    color: #666;
    text-align: left;
    font-size: 18px;
    line-height: 1.5;
}
.read-more
{
    margin-top:0px;
}
h3.insight-title
{
    height:auto;
}
}

/* ================================
   SMALL MOBILE (max 480px)
   ================================ */
@media (max-width: 480px) {
  .main-container {
    margin-top: 0;
    height: auto;
    padding: 40px 0;
    min-height:300px;
  }
h4.footer-title {
    color: #333;
    margin-left: 0px;
}
ul, ol
{
    padding-left: 0px;
}
  .main {
    width: 300px;
    height: 300px;
  }
  .center-logo img {
    max-width: 90px;
  }

  .big-circle {
    border-width: 2px;
  }

  .circle {
    width: 82%;
    height: 82%;
    border-width: 2px;
  }

  .icon-block {
    width: 38px;
    height: 38px;
  }

  .icon-block img {
    width: 72%;
  }
  .blog-grid1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .simple-steps-desktop
  {
    display:none !important;
  }
  .simple-steps-mobile
  {
    display:block !important;
  }
  .steps-desc {
    width: 100%;
    margin: 5rem 0rem;
    color: #666;
    text-align: left;
    font-size: 18px;
    line-height: 1.5;
}
.read-more
{
    margin-top:0px;
}
h3.insight-title
{
    height:auto;
}
}
