.new-hero-section {
    display: flex;
    align-items: center;
    height: auto;
    padding: 50px;
    margin:0 auto;
    margin-top: 50px;
    color: #fff;
    background: linear-gradient(to bottom right, #0c446f, #0f558c);
    position: relative;
}


.new-hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/index\ overlay2.png');
    background-size: cover; 
    background-position: center center; 
    opacity: 0.5; 
    mix-blend-mode: overlay; 
}
        
        
.content-columns-wrapper{
    max-width: 1400px;
    margin: 0 auto;
}

.h-left-content {
    flex: 1;
    padding-left: 50px;
}

.h-right-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.h-right-content img {
    width: 90%;
    height: auto;
    display: block;
    margin:0 auto;
}

.stph1 {
    font-size: 45px;  
    font-weight: bold;
    margin-bottom: 20px;
    font-family: "Inter", sans-serif;
    color: #ffffff;
}

.subheading {
    font-size: 1.1em;
    color: #ffffff;
    margin-bottom: 40px;
    font-family: "inter", sans-serif;
    font-weight: 500;
    line-height: 28px;
}

.h-features {
    display: flex;
}

.h-feature {
    display: flex;
    align-items: center;
    margin-right: 20px;
    margin-bottom: 20px;
}

.h-feature i {
    margin-right: 10px;
    font-size: 40px;
    color: #fff;
}

.h-feature span{
  font-family: 'inter',sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

.button {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}


.start-now {
    background-color: #e68e03;
    color: rgb(255, 255, 255);
    font-size: 16px;
    font-weight: 600;
    padding: 15px 30px;
    display: block;
    border-radius: 6px;
    text-decoration: none;
    max-width: max-content;
    margin-top: 30px;
}

.start-now:hover {
    background-color: #f7a21a;
    color: #fff;
}

.hero-bottom{
    font-size: 18px;
    text-align: center;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    width: 100%;
    line-height: 1.5;
    font-family: 'Montserrat',sans-serif;
    margin-top:-30px;
}

.highlight-button {
    display: inline-block;
    padding: 4px 15px; 
    margin: 0 5px; 
    background-color: transparent; 
    color: #edff00; 
    text-decoration: none; 
    border: 2px solid #edff00; 
    border-radius: 50px; 
    font-weight: bold; 
    cursor: pointer; 
    transition: box-shadow 0.3s ease; 


    box-shadow: 0 0 5px #edff00,
                0 0 5px #edff00, 
                0 0 5px #edff00; 
}


.highlight-button:hover {
    box-shadow: 0 0 5px #4c9bf1,
                0 0 5px #4c9bf1,
                0 0 5px #4c9bf1; 
    border-color: #4c9bf1;
    color: #4c9bf1;
}

.animated-image {
    position: relative; 
    animation: customMovement 10s ease-in-out infinite alternate;
}

@keyframes customMovement {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(10px, -15px); /* Move slightly right and up */
    }
    50% {
        transform: translate(-5px, 10px); /* Move slightly left and down */
    }
    75% {
        transform: translate(15px, 5px); /* Move right and slightly down */
    }
    100% {
        transform: translate(0, 0); /* Return to origin */
    }
}

.content-columns-wrapper {
            display: flex;
            flex-wrap: wrap; 
            align-items: center; 
            gap: 20px; 
            margin-bottom: 32px;
        }


@media (max-width: 768px) {
  .new-hero-section {
      flex-direction: column-reverse;
      padding: 30px;
      text-align: center;
      margin-top:80px !important;
      
  }

  .h-left-content,
  .h-right-content {
      flex: 1;
      padding-right: 0;
      padding-left: 0;
      width: 100%;
      box-sizing: border-box;
  }
  
  .h-right-content{
      display:none;
  }

  .h-right-content img {
      width: 70%;
      margin-left: auto;
      margin-right: auto;
  }

  .stph1 {
      font-size: 40px;
      text-align: center;
  }

  .subheading {
      font-size: 1em;
      margin-bottom: 20px;
      text-align: center;
  }

  .h-features {
      flex-direction: column;
      align-items: center;
  }

  .h-feature {
      margin: 15px 0;
  }

  .button {
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center;
  }

  .start-now {
      font-size: 14px;
      padding: 12px 24px;
  }
  
  .content-columns-wrapper{
      margin:0 auto;
  }
  
  .domain-pricing-items{
      justify-content:center !important;
  }
}

@media (max-width: 768px) {
    .hero-bottom {
        font-size: 20px; 
        margin-top: 40px !important;
        margin-bottom: 25px;
        padding: 0 15px; 
    }

    .highlight-button {
        padding: 7px 14px; 
        font-size: 18px; 
        box-shadow: 0 0 8px #edff00,
                    0 0 16px #edff00,
                    0 0 24px #edff00;
    }

    .highlight-button:hover {
        box-shadow: 0 0 12px #4c9bf1,
                    0 0 24px #4c9bf1,
                    0 0 36px #4c9bf1;
    }
}


@media (max-width: 576px) {
    .hero-bottom {
        font-size: 18px; 
        margin-top: 30px !important;
        margin-bottom: 20px;
        padding: 0 10px;
    }

    .highlight-button {
        padding: 6px 12px;
        font-size: 16px; 
        box-shadow: 0 0 5px #edff00,
                    0 0 10px #edff00,
                    0 0 15px #edff00;
        margin: 0 3px;
    }

    .highlight-button:hover {
        box-shadow: 0 0 8px #4c9bf1,
                    0 0 16px #4c9bf1,
                    0 0 24px #4c9bf1;
    }
    
    .h-right-content-img{
        display:none;
    }
    
    .domain-pricing-items{
      justify-content:center !important;
  }

    @media (max-width: 768px) {
            .content-columns-wrapper {
                flex-direction: column;
            }
}
}

@media (min-width: 1400px) {
    .h-left-content {
        flex: 1.1; 
        padding-left: 50px;
    }

    .h-right-content {
        flex: 1; 
    }

    .stph1 {
        font-size: 45px;
    }

    .subheading {
        font-size: 1.1em;
    }
}








