
* {
    padding: 0;
    margin: 0;
    box-shadow: none;
  }
*,
  ::after,
  ::before {
      box-sizing: border-box
  }

html {
  scroll-behavior: smooth !important;
  visibility: hidden;
  opacity: 0;
}


body {
    position: relative;
    min-height: 100%;
    overflow-x: hidden;
    font-family: "Inter Tight", sans-serif !important;
    text-rendering: optimizeLegibility;
    scroll-snap-type: y mandatory;
}

.hero-section {
  background-image: url("../images/bannerbg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.manage-sec{
  background-image: url("../images/blackbg.webp");
  border-radius: 45px;
}
.layer-bg{
  background-image: url("../images/layerbg.webp");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
}
.leading-normal{line-height: normal !important;}
.gradient-before::before{
    content: '';
    position: absolute;
    background: #2F86C0;
    filter: blur(4000px);
    right: -450px;
    height: 64rem;
    width: 400px;
    z-index: 1;
    top: 800px;
}
.blue-bg{
  background-image: url("../images/pricingbg.webp");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
}

.input-field {
    transition: all 0.3s ease;
}

.input-field:focus {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.submit-btn {
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
}

.submit-btn:active {
    transform: translateY(0px);
}

.close-btn {
    transition: all 0.2s ease;
}

.close-btn:hover {
    transform: rotate(90deg) scale(1.1);
}

.contact-badge {
    transition: all 0.3s ease;
}

.contact-badge:hover {
    transform: scale(1.05);
}

.link-hover {
    transition: all 0.2s ease;
    position: relative;
}

.link-hover::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: currentColor;
    transition: width 0.3s ease;
}

.link-hover:hover::after {
    width: 100%;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}
        

footer{
  background-image: url("../images/footerbg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (min-width: 1600px) {
  .custom-h-1600 {height: 350px !important;}
  .aboout-banner{min-height: 95dvh !important;}
}