/* hero-highlight.css */
.hero-title-emphasis {
  line-height: 1.3;
}

.hero-webdev-highlight {
  font-size: 3.2rem;
  font-weight: 800;
  color: #5a4ae3;
  text-shadow: 1px 2px 5px rgba(90, 74, 227, 0.3);
  display: inline-block;
}

@media (max-width: 992px) {
  .hero-webdev-highlight {
    font-size: 2.6rem;
  }
}

@media (max-width: 768px) {
  .hero-webdev-highlight {
    font-size: 2.2rem;
  }
}



.hover-shadow:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.transition {
  transition: all 0.3s ease-in-out;
}


/* Why Choose Us: Start */
/* WHY CHOOSE US: Card Glass + Gloss Hover */
.card.bg-dark {
  position: relative;
  overflow: hidden;
  backdrop-filter: none;
  background: rgba(30, 30, 30, 0.9);
  transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.card.bg-dark:hover {
  transform: translateY(-4px);
  backdrop-filter: blur(6px);
  background: rgba(40, 40, 40, 0.95);
}

/* Gloss streak on hover */
.card.bg-dark::before {
  content: "";
  position: absolute;
  top: -75%;
  left: -75%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0) 60%
  );
  transform: rotate(25deg);
  transition: all 0.6s ease-in-out;
  pointer-events: none;
  opacity: 0;
}

.card.bg-dark:hover::before {
  top: -50%;
  left: -50%;
  opacity: 1;
}

/* Glass overlay upper half */
.card.bg-dark::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 50%;
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(207, 37, 37, 0.08);
  pointer-events: none;
  z-index: 1;
}

/* Why Choose Us: Start */


/* Real customers reviews: End */
/* Pricing Toggle Buttons */
.duration-toggle {
  background-color: #fff;
  border: 2px solid #7367f0;
  color: #7367f0;
  padding: 8px 24px;
  font-weight: 500;
  border-radius: 30px;
  transition: 0.3s ease;
}

.duration-toggle.active,
.duration-toggle:hover {
  background-color: #7367f0;
  color: #fff;
}

/* Glassmorphism Pricing Cards */
.pricing-card {
  background: transparent;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  border: 1px solid rgba(115, 103, 240, 0.1);
  padding: 2.5rem 2rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.342);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}



/* Glass reflection effect */
.pricing-card::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -60%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg, rgba(255,255,255,0.3), transparent 70%);
  transform: rotate(25deg);
  opacity: 0;
  transition: all 0.6s ease-in-out;
  pointer-events: none;
}



/* Featured Plan */
.pricing-card.featured {
  background: linear-gradient(145deg, rgba(115, 103, 240, 0.08), rgba(255, 255, 255, 0.4));
  border: 2px solid #7367f0;
}

.pricing-card.featured .badge {
  background: #7367f0;
  color: #fff;
  font-size: 0.75rem;
  padding: 0.4em 0.6em;
  border-radius: 4px;
  margin-bottom: 0.8rem;
}

.pricing-card i{
  font-size: 70px;
}

/* Typography & Layout */


.pricing-card ul {
  padding: 0;
  list-style: disc;
  margin-bottom: 1.5rem;
}



/* Buttons inside cards */
.pricing-card .btn {
  font-weight: 500;
  border-radius: 8px;
  padding: 10px 16px;
}

.pricing-card .btn-outline-success {
  color: #28c76f;
  border-color: #28c76f;
}

.pricing-card .btn-outline-success:hover {
  background-color: #28c76f;
  color: #fff;
}

.pricing-card .btn-outline-primary {
  color: #7367f0;
  border-color: #7367f0;
}

.pricing-card .btn-outline-primary:hover {
  background-color: #7367f0;
  color: #fff;
}

.pricing-card .btn-primary {
  background-color: #7367f0;
  border-color: #7367f0;
  color: #fff;
}

.pricing-card .btn-primary:hover {
  background-color: #5e54e5;
  border-color: #5e54e5;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .pricing-card {
    padding: 2rem 1.5rem;
  }
}
/* Real customers reviews: End */




/*  Pricing Free Trial */
/* Pricing Free Trial: Modern Upgrade */
.pricing-free-trial {
  
  border-radius: 16px;
  padding: 4rem 0;
  overflow: hidden;
  position: relative;
}

/* Optional glow/shine effect background */

/* Inner container layout */
.pricing-free-trial .container {
  position: relative;
  z-index: 1;
}


/* Image area styling */
.pricing-free-trial img {
  max-width: 200px;
  transition: transform 0.4s ease;
}

.pricing-free-trial img:hover {
  transform: scale(1.05) rotate(-2deg);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .pricing-free-trial .text-center.text-lg-start {
    text-align: center !important;
  }
  .pricing-free-trial img {
    margin-top: 1.5rem;
  }
}

/*  Pricing Free Trial */

.pricing-card ul {
  padding-left: 1.2rem; /* adjust as needed */
}

.pricing-card ul li {
  padding-left: 0.8rem;
  position: relative;
}

#landingHero{
  overflow: hidden;
}