*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Segoe UI', sans-serif;
}
.gradient-text {
  background: linear-gradient(135deg, #2258c3, #15c1a4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* Navbar */
.navbar-bg{
    background-color: #dcdfe5;
    
}
.logo-img{
    width: 170px;
}
.navbar-logo-text{
    color: #2258c3 !important;
}
.navbar{
    padding: 16px 0 !important;
}

.brand-text{
    font-weight: 700;
    font-size: 22px;
}

.brand-text span{
    color: #15c1a4;
}

/* Hero Section */
.hero-section{
     background: linear-gradient(
    135deg,
    hsla(222, 72%, 10%, 0.95) 0%,
    hsla(215, 65%, 18%, 0.92) 50%,
    hsla(195, 60%, 32%, 0.88) 100%
  ),url('./images/hero-bg-DUndc1WP.jpg"');
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.hero-badge{
    display: inline-block;
    padding: 6px 18px;
    background: rgba(26, 188, 156, 0.15);
    color: #1abc9c;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 20px;
}

.hero-title{
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-title span{
    color: #15c1a4;
}

.hero-desc{
    max-width: 700px;
    margin: 25px auto;
    font-size: 18px;
    color: #dcdcdc;
}

.btn-custom{
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 500;
}

.btn-green-custom{
    text-decoration: none;
    background: #15c1a4;
    color: #fff;
    border: none;
}

.btn-custom:hover{
    background: #14d4b4;
}

.btn-secondary-custom{
    background: transparent;
    color: #fff;
    border: 1px solid ;
    text-decoration: none;
}
.btn-secondary-custom:hover{
     background-color: #2258c3;
     border: none;
}

@media (max-width:768px){
    .hero-title{
        font-size: 36px;
    }
}
/* about-section */
.section-padding{
    padding: 112px 0px;

}
.about-text{
    font-size: 18px;
}
/* services-section */
.services-pera{
    font-size: 14px;
}
/* footer-text */
.footer-text{
    color: rgba(247, 248, 249, 0.7);
}
.footer-logo-img{
    width: 240px;
}

/* pricing-page */

.pricing-card{
  border-radius:15px;
  padding:35px;
  background:#fff;
  border:1px solid #e5e5e5;
  transition:0.3s ease;
  height:100%;
}

.pricing-card:hover{
  transform:translateY(-5px);
}
.pricing-heading{
    font-size: 48px;
}
.popular-card{
  border:2px solid #2563eb;
  background:#f0f5ff;
}
.card-margin-bottom{
    margin-bottom: 80px;
}

.popular-badge{
  background:#2563eb;
  color:#fff;
  font-size:12px;
  padding:5px 12px;
  border-radius:50px;
  display:inline-block;
  margin-bottom:15px;
}

.price{
  font-size:32px;
  font-weight:700;
}

.feature-list li{
  margin-bottom:10px;
  color:#6c757d;
}

.check{
  color:#16a34a;
  font-weight:bold;
  margin-right:8px;
}

/*  */
.service-section{
  padding: 0px 0px 110px 0;
}

.service-card{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:15px;
  padding:30px 20px;
  text-align:center;
  transition:0.3s ease;
  height:100%;
}

.service-card:hover{
  transform:translateY(-5px);
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.service-title{
  font-weight:600;
  margin-bottom:10px;
}

.service-price{
  color:#2563eb;
  font-weight:600;
  font-size:18px;
}