/* ===============================
   HERO SECTION
================================= */
#hero {
  padding-top: 100px;
  margin-top: -100px;
}
.hero-section {
  background: linear-gradient(90deg, #0b1c2d 0%, #132b4d 100%);
  /* min-height: 100vh; */
  display: flex;
  align-items: center;
 
  padding-top: 100px ;
  padding-bottom: 100px;
}

.hero-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1px;
  margin: 20px 0;
}

.gradient-text{
  background: linear-gradient(90deg,#7c3aed,#4f46e5,#1ba7a7);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 6s linear infinite;
}

@keyframes gradientMove{
  0%{background-position:0%}
  100%{background-position:200%}
}

.business-line {
  font-size: 56px;
}

.hero-description {
  font-size: 18px;
  color: #cbd5e1;
  max-width: 550px;
}
.pill{
  padding-top: 30px;

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

.hero-buttons .btn:hover{
  transform: translateY(-3px);
}
.badge-pill {
  display: inline-block;
  background: rgba(27,167,167,0.15);
  color: #1ba7a7;
  padding: 6px 15px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}

.btn-teal {
  background: #1ba7a7;
  border-radius: 50px;
  padding: 8px 30px;
  font-weight: 600;
  color: white;
  border: none;
  box-shadow: 0 0 20px rgba(27,167,167,0.4);
  transition: 0.3s;
}

.btn-teal:hover {
  background: #149a9a;
  box-shadow: 0 0 40px rgba(27,167,167,0.6);
}
.hero-image {
  border-radius: 20px;
  box-shadow: 0 20px 80px rgba(27,167,167,0.35);
  animation: float 6s ease-in-out infinite;
  transition: transform 0.5s ease;
}

@media (min-width:992px){
.hero-image:hover{
  transform: scale(1.03);
}
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-features {
  font-size: 14px;
  color: #94a3b8;
  padding-top: 20px;
}

@media (min-width:768px) and (max-width:991px){
.hero-features {
  padding-bottom: 20px;
}
 

}
/* ===============================
   HERO MOBILE FIX
================================= */

@media (max-width:768px){

  .hero-title{
    font-size:36px;
    line-height:1.15;
    text-align: center;
  }

  .business-line{
    font-size:36px;
    max-width:100%;
   
  }

  .hero-description{
    font-size:16px;
    text-align: justify;
    
  }

  .badge-pill{
    font-size:12px;
    padding:5px 12px;
  }

  .hero-features{
    font-size:12px;
  }
  .hero-features {
  padding-bottom: 20px;
  text-align: center;
}
.pill{
  text-align: center;
}
.btn-teal{
  padding: 8px 40px;
  font-weight: 300;
  margin-bottom: 10px;

}
.hero-buttons {
 text-align: center;
}

}
/* ===============================
   HERO TABLET VIEW (768–991px)
================================= */

@media (min-width:768px) and (max-width:991px){

.hero-section{
  text-align:center;
  padding-top:120px;
  padding-bottom:80px;
}

.hero-title{
  font-size:44px;
  line-height:1.2;
}



.hero-description{
  max-width:650px;
  margin:auto;
  font-size:17px;
}

.hero-buttons{
  justify-content:center;
}

.hero-features{
  text-align:center;
}

.hero-image{
  margin-top:40px;
  max-width:85%;
}

.pill{
  text-align:center;
}

}
/* Hide line break on tablet */

@media (min-width:768px) and (max-width:991px){
.tablet-hide{
  display:none;
}
}
.hero-mobile-image{
margin-top:30px;
margin-bottom:30px;
}