* {
  font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', sans-serif;
}

.sticky-nav-bg {
    background-color: #f6f7f7 !important;
    transition: background-color 0.3s ease;
}

#topNavbar .nav-link{
    font-size: 0.9rem;
}

.start-free-trail-btn{
    background-color: #02aad3;
    color: #f4f4f4;
    padding: 9px 20px;
    font-size: 0.9rem;
}

#heroSection{
    padding-top: 8rem;
    padding-bottom: 7rem;
    background: linear-gradient(149deg, #036178 0%, #057c99 60%, #1b1b1b 100%);
}

#heroSection .badge-text{
    background: #177fee;
    color: #f0f0f0;
}

#heroSection .description{
    color: rgb(230 230 230) !important;
    font-size: 1.1rem;
    font-weight: normal;
}

#heroSection .benefits-text{
    color: rgb(187 187 187) !important;
    font-size: 0.9rem;
    font-weight: 500;
}

#heroSection .benefits-text svg{
    background: #60abfc;
    border-radius: 15px;
}

#heroSection .buttons-row{
    padding-top: 30px;
    margin-top: 25px !important;
    border-top: 1px solid #007da9;
}

#heroSection .buttons-row .btn{
    font-size: 0.9rem;
    background: #202020;
    color: #f4f4f4;
    padding: 10px 22px;
}

#heroSection .buttons-row .btn:last-child{
    border: 2px solid #eeeeee;
    color: #eeeeee;
    font-weight: 500;
}

#heroSection .video-overlay {
  background-color: rgb(0 0 0 / 62%);
  pointer-events: none;
}

.rotate-3d-hover { transform: rotate(1.5deg); transition: transform .3s ease; }
.rotate-3d-hover:hover { transform: rotate(0); }
.stat-card-1 {
    position: absolute; 
    left: 20px;
    bottom: -30px;
    background: #2d7deb; 
    color: #fff;
    padding: .75rem 1rem; 
    border-radius: .75rem; 
    box-shadow: 0 10px 30px rgba(13,110,253,.3);
    text-align: center
}
.stat-card-2 {
    position: absolute; 
    right: 85px;
    top: -45px;
    background: #2d7deb; 
    color: #fff;
    padding: .75rem 1rem; 
    border-radius: .75rem; 
    box-shadow: 0 10px 30px rgba(13,110,253,.3);
    text-align: center
}

.icon-bubble {
    width: 48px; height: 48px; border-radius: .75rem;
    display: inline-flex; align-items: center; justify-content: center;
}

.icon-circle {
    width: 64px; height: 64px; border-radius: 999px;
    display: inline-flex; align-items: center; justify-content: center;
}

.icon-circle.primary { background: rgba(13,110,253,.15); color: #0d6efd; }
.icon-circle.success { background: rgba(25,135,84,.15); color: #198754; }
.icon-circle.purple { background: rgba(111,66,193,.15); color: #6f42c1; }
.icon-circle.warning { background: rgba(255,193,7,.2); color: #ffc107; }

/*** Pricing ***/
#pricingPlans {
    position: relative;
    padding: 55px;
}
#pricingPlans .pricing-plan-heading::after{
    display: block;
    content: '';
    border-bottom: 5px solid #00b9c9;
    width: 260px;
    margin: auto;
    margin-bottom: 10px;
    padding-bottom: 10px;
}
#pricingPlans::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('assets/images/pricing-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.6;
  z-index: 0
}
#pricingPlans .monthly-pricing{
    color: #0babd2;
}

#pricingPlans .yearly-pricing{
    color: #505152
}

#pricingPlans .sticker{
    position: absolute;
    top: -15px;
    left: -15px;
    width: fit-content;
    background: #0380dc;
    color: white;
    padding: 10px 25px;
    font-size: 15px;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.pricing-card{
    border: 1px solid #dcdcdc;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .06);
    padding: 50px;
    background: #f5f5f5;
}

#pricingPlans .package-name{
    font-size: 32px;
    font-weight: 900;
}

.pricing-card .icon i{
    color: #02aad3;
}

.pricing-card .btn{
    background-color: #1f1f1f;
    color: #f4f4f4;
    padding: 9px 20px;
    font-size: 0.9rem;
}

/* Feature list */
.feature{
    display: flex; gap: .6rem; align-items: flex-start;
    font-size: .95rem;
}
.check-dot{
    width: 18px; height: 18px; border-radius: 999px;
    background: rgba(16,185,129,.12);
    display: grid; place-items: center; flex: 0 0 18px;
    margin-top: .15rem;
}
.check-dot svg{ width: 12px; height: 12px; color: var(--success); }

/* Fine print */
.fine{ color: var(--muted); font-size: .85rem; }
.linkish{ color: #0ea5e9; text-decoration: underline; }