@font-face {
  font-family: "Test Sohne";
  src: url("/wp-content/uploads/fonts/TestSöhne-Regular.otf") format("otf"),
       url("/wp-content/uploads/fonts/TestSöhne-Regular.otf") format("otf");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Test Sohne";
  src: url("/wp-content/uploads/fonts/TestSöhne-Bold.otf") format("otf"),
       url("/wp-content/uploads/fonts/TestSöhne-Bold.otf") format("otf");
  font-weight: 700;
  font-style: normal;
}

/* example usage */
body {
  font-family: "Test Sohne", sans-serif;
}

#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:#fdfdfdfc;
}
section.hero-section2.py-5 {
    padding-bottom: 7rem !important;
    padding-top:7rem !important;
}
.text-heading
{
    font-size:38px;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
margin-top: 10px;
}
.sub-heading1
{
    font-size:20px;
    font-weight:400;
    line-height:1.5;
    margin: 25px 0px;
    width:90%;
     font-family: "Test Sohne", sans-serif;

}
.solutions-text
{
    font-size:16px;
    font-weight:400;
    line-height:1.5;
    margin: 20px 0px 0px 0px;
   font-family: "Test Sohne", sans-serif;

   width:80%;
   color:#7d7c7c;
}

.main-container {
  /* min-height: 100vh; */
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  height: 490px;
  overflow: hidden;
  /* margin-top:-12%; */
}
.main {
  margin: 0px auto;
  width: 460px;
  height: 460px;
  position: relative;
}
.big-circle {
    height: 100%;
    width: 100%;
    position: relative;
    border: 1px solid #BABABA99;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: Rotate 20s linear infinite;
    
}
 
.icon-block {
    width: 100px;
    height: 100px;
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
   
    
}
 
.icon-block img {
    margin: 0 auto;
    width: 100%;
    animation: Rotate-reverse 20s linear infinite;
}
 
.circle .icon-block img {
    animation: Rotate-reverse-circle 20s linear infinite;
}
 
.icon-block:first-child {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}
 
.icon-block:nth-child(2) {
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
}
 
.icon-block:nth-child(3) {
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
}
 
.icon-block:nth-child(4) {
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
}
 
.circle {
    animation: circle-rotate-reverse 20s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 60%;
    height: 60%;
    border: 1px solid #BABABA99;
    border-radius: 50%;
    
}
 
.circle .icon-block img {
    animation: img-rotate-reverse 20s linear infinite;
}
 
.circle-1
{
   animation: circle-rotate-reverse 20s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 50%;
    height: 50%;
    border: 1px solid #BABABA99;
    border-radius: 50%;
}
.circle-1 .icon-block img {
    animation: img-rotate-reverse 20s linear infinite;
}
.center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
 
@keyframes Rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
 
@keyframes Rotate-reverse {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
    }
}
 
@keyframes Rotate-reverse-circle {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
    }
}
 
@keyframes circle-rotate {
    from {
        transform: translate(-50%, -50%) rotate(45deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(405deg);
    }
}
 
@keyframes circle-rotate-reverse {
    from {
        transform: translate(-50%, -50%) rotate(405deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(45deg);
    }
}
 
@keyframes img-rotate {
    from {
        transform: rotate(-45deg);
    }
    to {
        transform: rotate(-405deg);
    }
}
 
@keyframes img-rotate-reverse {
    from {
        transform: rotate(-405deg);
    }
    to {
        transform: 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 {
    position: relative;
    overflow: hidden;
    color: #fff;
   
}
.hero-section .row.align-items-center
{
    margin:5% 0px;
}
/* Background Video Layer */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;    /* video at the back */
}

/* Blue Overlay */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* BLUE OVERLAY COLOR */
    background: rgba(30, 19, 110, 0.9); 
    /*    R   G   B   Opacity */

    z-index: -1;    /* overlay above video, below content */
}



.hero-title {
    font-size: 75px;
    font-weight: 500;
    line-height: 1.2;
}

.hero-subtext {
    font-size: 22px;
    margin-top: 10px;
    opacity: 0.9;
    line-height: 1.5;
     font-family: "Test Sohne", sans-serif;
     max-width: 350px;

}

a.btn-download {
    margin: 0 160px;
}
/* Download Button */
.btn-download {
    background: #ffffff;
    color: #333333;
    padding: 12px 26px;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    transition: 0.3s;
    float: right;
}

.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);
}
/* allow arrow animation */
.btn-download i,
.btn-download .icono-arrow1-left-up,
.btn-download [class*="icono-arrow1"] {
    display: inline-block;
    transform: rotate(45deg);        /* keep original arrow direction */
    transform-origin: center;
    transition: transform 0.28s ease, color 0.28s ease;
}

/* hover animation – move arrow */
.btn-download:hover i,
.btn-download:hover .icono-arrow1-left-up,
.btn-download:hover [class*="icono-arrow1"] {
    transform:translate(6px, 0px); /* SAME animation as button */
    color: #fff;
}

/* ================================
   How BizVersion works CSS
   ================================ */
section.hero-section3.py-5 {
    padding-top: 7rem !important;
    padding-bottom:7rem !important;
}
.hero-section3 {
    position: relative;
}
.bizversions-works
{
    margin:5% 0px;
}
/* Make left content sticky */
.simple-steps-desktop {
    position: sticky;
    top: 120px;
}

/* Right wrapper */
.steps-wrapper {
    /* height: 100vh; */
    overflow: hidden;
    position: relative;
}

/* Container holding all steps */
.steps-container {
    position: relative;
}

/* Each step full screen */
.step-item {
    /* height: 100vh; */
    display: flex;
    align-items: center;
}

/* Optional smooth spacing */
.step-number {
    font-size: 36px;
    font-weight: bold;
}
 .text-right.simple-steps-desktop.mb-4
 {
    margin-right: 80px;
 }
.simple-steps-mobile
{
display:none;
}
.hero-section1
{
    background-color:#f4f4f4;
}
.steps-title {
    font-size: 44px;
    font-weight: 600;
    line-height: 1.5;
}

.steps-desc {
	width: 100%;
    font-size:18px;
	margin:3rem 0 0 0rem;
    color: #666;
    /*text-align: right;
	width: 100%;
	margin: 3rem 0 0 0rem;
    font-size: 22px; */
    line-height: 1.5;
}

/* Container spacing */
.steps-list {
    font-family: "Helvetica Neue", Arial, sans-serif;
}

/* Step box layout */
.step-item {
    padding: 40px 0px;
    align-items: flex-start;
    border-bottom: 1px solid #555;
}

/* Step number style */
.step-number {
    font-size: 60px;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
    margin-top: -20px;
}

/* Step title */
.step-title {
    font-size: 27px;
    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 {
  position: relative;
  overflow: hidden;
  color: #000; /* default text color */
  z-index: 2;
}

/* Hover overlay */
/* .step:before {
  content: "";
  position: absolute;
  top: 0;               
  left: 0;
  width: 100%;
  height: 0;
  background: #000000;
  transition: height 0.5s ease-out;
  z-index: 1; 
} */

/* Overlay animation */
/* .step:hover:before {
  height: 100%;
} */

/* Text inside step should appear above overlay */
.step * {
  position: relative;
  z-index: 2; /* bring text in front */
}

/* Change text color on hover */
/* .step:hover,
.step:hover .step-number,
.step:hover .step-desc {
  color: #ffffff !important;
} */

/* Number, Title */
.step-number {
 font-size: 60px;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
    margin-top: -20px;
}

.step-title {
  font-size: 27px;
  font-weight: bold;
  margin-bottom: 8px;
}

.step-desc {
  color: #555;
 line-height: 1.5;
    font-size: 20px;
    margin-top: 20px;
}

/* 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;
  display: none !important;

}

/* 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;
    height: 100vh;
     padding: 7rem 0px;
}
.newsletter-section .row.align-items-center {
    padding: 0px 5%;
}

/* Left title */
.newsletter-title {
    font-size: 30px;
    font-weight: 600;
    color: #000;
    line-height: 1.5;
}

.newsletter-form .email-input {
    border: none;
    border-bottom: 1px solid #b3c7d340;
    border-radius: 0;
    padding: 0 0 10px 0;
    background: transparent;
    font-size: 16px;
    width: 100%;
}
form.newsletter-form.d-flex.gap-3.flex-wrap {
    position: absolute;
    margin-top: -15px;
}
/* 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: 14px;
    color: #111;   /* change to any color you want */
    opacity: 0.7;
     font-family: "Test Sohne", sans-serif;

}
/* Terms text */
.form-desc {
   font-size: 12px;
    color: #111;
    opacity: 0.8;
}

.form-desc a {
    font-weight: 600;
    color: #059cfc;
    text-decoration: none;
}

.form-desc a:hover {
    text-decoration: underline;
}

/* Submit button */
.submit-btn {
    background: #0d0128;
    color: #fff;
    padding: 10px 35px;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 500;
    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 */
}


/* ensure the icon can be transformed */
.submit-btn i,
.submit-btn .icono-arrow1-left-up,
.submit-btn [class*="icono-arrow1"] {
  display: inline-block;           /* allow transforms */
  transform: rotate(45deg);        /* keep base rotation (arrow shape) */
  transform-origin: center;        /* nice pivot */
  transition: transform 0.28s ease, color 0.28s ease;
}

/* move the arrow on hover while keeping the rotation */
.submit-btn:hover i,
.submit-btn:hover .icono-arrow1-left-up,
.submit-btn:hover [class*="icono-arrow1"] {
  transform: translate(6px, 0px); /* combined transform = rotate + move up-right */
  color: #fff !important;                        /* keep color white */
}
/* 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%;
} */
 section.hero-section1.py-5 {
    padding-bottom: 4rem !important;
    padding-top: 7rem !important;
}
.blog-grid1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 50px;
    margin-bottom: 0px;
    margin-top: 7rem;
}
/* Title */
.insights-title {
    text-align: center;
    font-size: 38px;
    font-weight: 500;
    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: "Test Sohne", sans-serif;
    line-height: 1.8;
    font-weight: 400;
    height: 60px;
}

h3.insight-title a:hover
 {
    color: #333333;
    
}
/* When image is hovered → animate CTA text color */
.blog-card .card-image-link:hover ~ .card-content .read-more {
    color:#3cd2b5 !important;
}

/* When image is hovered → animate arrow movement */
.blog-card .card-image-link:hover ~ .card-content .read-more span {
    transform: translateX(5px);
}

/* Title hover → animate CTA color */
.blog-card h3.insight-title a:hover ~ .read-more,
.blog-card h3.insight-title:hover ~ .read-more {
    color: #3cd2b5 !important;
}

/* Title hover → animate arrow movement */
.blog-card h3.insight-title a:hover ~ .read-more span,
.blog-card h3.insight-title:hover ~ .read-more span {
    transform: translateX(5px);
     color: #3cd2b5 !important;
}

/* Image hover → move arrow */
.blog-card .card-image-link:hover ~ .card-content .read-more i {
    transform: translate(6px, 0px);
     color: #3cd2b5 !important;
}

/* Title hover → move arrow */
.blog-card h3.insight-title a:hover ~ .read-more i,
.blog-card h3.insight-title:hover ~ .read-more i {
    transform: translate(6px, 0px);
     color: #3cd2b5 !important;
}

.read-more i.icono-arrow1-left-up
{
	margin-left:10px;
}
/* allow arrow animation */
.read-more i,
.read-more .icono-arrow1-left-up,
.read-more [class*="icono-arrow1"] {
    display: inline-block;
    transform: rotate(45deg);        /* keep original arrow direction */
    transform-origin: center;
    transition: transform 0.28s ease, color 0.28s ease;
}

/* hover animation – move arrow */
.read-more:hover i,
.read-more:hover .icono-arrow1-left-up,
.read-more:hover [class*="icono-arrow1"] {
    transform:translate(6px, 0px); /* SAME animation as button */
    color: #3cd2b5;
}

/* Responsive CSS */

/* ================================
   TABLET RESPONSIVE (768px – 1024px)
   ================================ */

     @media (max-width: 991px) {

        /* .home-main {
    min-height: 100%;
        } */
       
 .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;
}
a.btn-download
  {
    float:left !important;
    margin: 0px 128px 0px 0px !important;
  }
     }


     @media (max-width: 768px)
     {
  .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(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;
}
.read-more
{
    margin-top:0px;
}
h3.insight-title
{
    height:auto;
}

     }

     @media (max-width: 600px)
     {

        .hero {
    padding: 50px 0px 0px;
    text-align: center;
    max-width: 100%;
}
.main-container {
    margin-top: 0;
    height: auto;
    padding: 40px 0;
    min-height:300px;
  }

ul, ol
{
    padding-left: 0px;
}
  .main {
    width: 300px;
    height: 300px;
  }
  .center-logo img {
    max-width: 90px;
  }

  .big-circle {
    border-width: 2px;
  }

  .circle {
    width: 75%;
    height: 75%;
    border-width: 2px;
  }

  .icon-block {
    width: 60px;
    height: 60px;
  }

  .icon-block img {
    width: 100%;
  }
  .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;
}
a.btn-download
  {
    float:left !important;
    margin: 0px!important;
  }
  form.newsletter-form.d-flex.gap-3.flex-wrap
  {
    position: relative;
  }
}



