/* Hero Section Styles */
/* Navbar Styles */
:root {
  --black-gradient: linear-gradient(
    90deg,
    #000000 0%,
    #333333 25%,
    #000000 50%,
    #333333 75%,
    #000000 100%
  );
}
nav {
  position: relative;
  background-color: #ffffff; /* Your white background */
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  box-shadow: none; /* Remove any shadow */
}

nav::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px; /* Slightly thinner for subtlety */
  background: var(--black-gradient);
}
.navbar {
  background-color: #ffffff;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  box-shadow: none; /* Remove shadow */
}

.navbar-brand {
  padding: 0;
}

.logo-nav {
  height: 80px;
  width: auto;
  transition: all 0.3s ease;
}

.navbar .nav-link {
  color: #333;
  font-weight: 500;
  margin: 0 6px;
  padding: 8px 12px;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 4px;
}

/* Replace underline with hover background */
.navbar .nav-link:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: #000;
}

.navbar .nav-link.active {
  background-color: rgba(0, 0, 0, 0.07);
  color: #000;
  font-weight: 600;
}

.navbar .nav-link.btn {
  padding: 8px 20px;
  border-radius: 4px;
  margin-left: 15px;
  background-color: #000;
  color: #fff;
}

.navbar .nav-link.btn:hover {
  background-color: #333;
  color: #fff;
  transform: translateY(-2px);
}

/* Fixed navbar toggler styles */
.navbar-toggler {
  border: none !important;
  padding: 0;
  width: 30px;
  height: 30px;
  position: relative;
  background: transparent !important;
  outline: none !important;
}

.navbar-toggler:focus,
.navbar-toggler:active {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Scrolled navbar style */
.navbar.scrolled {
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.98);
  /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); */
}

.navbar.scrolled .logo-nav {
  height: 50px;
}

/* Mobile navbar styles */
@media (max-width: 991px) {
  .navbar-collapse {
    padding: 20px;
    border-radius: 8px;

    margin-top: 15px;
  }

  .navbar .nav-link {
    margin: 8px 0;
    padding: 10px 15px;
  }

  .navbar .nav-link.btn {
    margin: 8px 0;
    display: inline-block;
  }
}
.dropdown-menu {
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 0.8rem 0;
  margin-top: 0.5rem;
}

.dropdown-item {
  padding: 0.6rem 1.5rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.dropdown-divider {
  margin: 0.5rem 0;
  opacity: 0.1;
}

/* Ensure dropdown toggle has the right styling */
.nav-link.dropdown-toggle::after {
  margin-left: 0.4rem;
  vertical-align: middle;
}

/* For dark mode or when navbar is scrolled */
/* .navbar.scrolled .dropdown-menu {
  background-color: #222;
  border: 1px solid #333;
} */

/* .navbar.scrolled .dropdown-item {
  color: white;
} */

.navbar.scrolled .dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .dropdown-divider {
  border-color: #444;
}
/* Footer Styles */
footer {
  background-color: white; /* Match navbar white background */
  color: #333; /* Dark text for contrast */
  padding-top: 50px;
  padding-bottom: 30px;
  position: relative; /* For the border positioning */
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px; /* Same as navbar */
  background: var(--black-gradient);
}

.footer-logo {
  max-width: 180px;
  height: auto;
}

.footer-heading {
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  display: inline-block;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #000;
}

.footer-link {
  color: #555;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #000;
}

.footer-link-small {
  color: #777;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.footer-link-small:hover {
  color: #000;
}

.social-icon-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #f8f9fa;
  color: #000;
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon-footer:hover {
  background-color: #000;
  color: #fff;
  transform: translateY(-3px);
}

.social-icon-footer i {
  font-size: 1.2rem;
}

@media (max-width: 767px) {
  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

.hero {
  position: relative;
  background-color: #f8f9fa;
}

.hero-bg-overlay {
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.01) 0%,
    rgba(0, 0, 0, 0.05) 100%
  );
  z-index: 1;
}

.hero-content {
  z-index: 2;
}

/* Logo animation */
.logo-animation {
  max-width: 300px;
  animation: fadeInDown 1s ease-out;
}

/* Text reveal animations */
.text-reveal {
  animation: fadeInUp 0.8s ease-out 0.3s both;
  opacity: 0;
}

.text-reveal-delayed {
  animation: fadeInUp 0.8s ease-out 0.6s both;
  opacity: 0;
}

/* Button styles */
.btn-hover-effect {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background-color: #000;
  border-color: #000;
}
.btn-primary:hover {
  background-color: #333;
  border-color: #333;
}

.btn-hover-effect:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero-buttons {
  animation: fadeInUp 0.8s ease-out 0.9s both;
  opacity: 0;
}

/* Animated shapes */
.shape {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.03);
  border-radius: 50%;
  z-index: 0;
}

.shape-1 {
  width: 500px;
  height: 500px;
  top: -250px;
  right: -100px;
  animation: floatAnimation 20s infinite alternate ease-in-out;
}

.shape-2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -50px;
  animation: floatAnimation 15s infinite alternate-reverse ease-in-out;
}

.shape-3 {
  width: 200px;
  height: 200px;
  top: 40%;
  right: 10%;
  animation: floatAnimation 12s infinite alternate ease-in-out;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatAnimation {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(20px, 20px) scale(1.05);
  }
  100% {
    transform: translate(-20px, -20px) scale(1);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .logo-animation {
    max-width: 220px;
  }
}
.purpose-title {
  position: relative;
  letter-spacing: -0.5px;
}

.title-underline {
  height: 4px;
  width: 60px;
  border-radius: 2px;
}

.section-badge {
  font-size: 0.8rem;
  letter-spacing: 1px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.purpose-image-container {
  position: relative;
  z-index: 1;
}

.purpose-image {
  position: relative;
  z-index: 2;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #000;
  color: #fff;
}

.purpose-features {
  margin-top: 2rem;
}

/* Services Section Styles */
.title-underline {
  height: 4px;
  width: 60px;
  border-radius: 2px;
}

.service-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  color: white;
  font-size: 24px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.service-icon i {
  font-size: 26px;
}
.feature-icon i {
  font-size: 26px !important;
  color: white !important;
}

@media (max-width: 768px) {
  .service-card {
    margin-bottom: 20px;
  }
}

/* THIS IS FOR FEATURES SECTION */
/* Features Section Styles */
.features-content {
  position: relative;
}

.features-image {
  position: relative;
}

.features-pattern {
  position: absolute;
  width: 200px;
  height: 200px;
  background-color: rgba(0, 0, 0, 0.05);
  bottom: -30px;
  left: -30px;
  z-index: -1;
  border-radius: 10px;
}

.feature-item {
  position: relative;
}

.feature-icon {
  flex-shrink: 0;
}

.icon-box {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  color: white;
  font-size: 24px !important;
  border-radius: 12px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .features-pattern {
    display: none;
  }

  .features-content {
    padding: 0 15px;
  }
}

/* THIS IS FOR THE TEAM SECTION */
/* Team Section Styles */
.team-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  padding: 15px;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.team-img-wrapper {
  margin-bottom: 15px;
}

.team-img {
  max-width: 80%;
  height: auto;
  border-radius: 10px;
  display: inline-block;
}

.team-content {
  padding: 0 15px 15px;
  text-align: center;
}

.team-position {
  color: #555;
  font-weight: 500;
  position: relative;
  display: inline-block;
}

.team-position:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: #000;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}

.team-bio {
  margin-top: 15px;
  color: #666;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #f8f9fa;
  color: #000;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: #000;
  color: #fff;
}
/* Projects Section Styles - Updated for aligned buttons */
.project-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.project-img-container {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.project-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-img-container img {
  transform: scale(1.05);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #fff;
  color: #000;
  border-radius: 50%;
  font-size: 24px;
  transition: all 0.3s ease;
}

.project-link:hover {
  background-color: #000;
  color: #fff;
}

.project-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-content h4 {
  margin-bottom: 15px;
  font-weight: 600;
}

.project-content p {
  margin-bottom: auto;
}

.project-content .btn {
  margin-top: 20px;
  align-self: flex-start;
}

.btn-dark {
  background-color: #000;
  border-color: #000;
  transition: all 0.3s ease;
}

.btn-dark:hover {
  background-color: #333;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 767px) {
  .project-img-container {
    height: 200px;
  }
}

/* Testimonials Section Styles */
.testimonial-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 40px;
  margin: 20px 10px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.testimonial-content {
  position: relative;
  z-index: 2;
}

.quote-icon {
  font-size: 60px;
  color: rgba(0, 0, 0, 0.06);
  position: absolute;
  top: -25px;
  left: -10px;
  z-index: -1;
}

.testimonial-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #333;
  line-height: 1.8;
  position: relative;
}

.testimonial-info {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.testimonial-author {
  text-align: center;
}

.testimonial-author h5 {
  font-weight: 600;
  margin-bottom: 5px;
}

.testimonial-author p {
  color: #666;
  margin-bottom: 5px;
}

.testimonial-rating {
  margin-top: 5px;
  color: #ffd700;
}

.testimonial-rating i {
  margin-right: 2px;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.carousel-control-prev,
.carousel-control-next {
  position: relative;
  width: 40px;
  height: 40px;
  background-color: #000;
  border-radius: 50%;
  opacity: 1;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
  margin: 0 5px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: #333;
}

.carousel-control-icon {
  color: white;
  font-size: 16px;
  line-height: 1;
}

.testimonial-indicators {
  position: relative;
  justify-content: center;
  margin-top: 20px;
  margin-right: 0;
  margin-left: 0;
  margin-bottom: 0;
}

.testimonial-indicators button {
  width: 12px;
  height: 12px;
  background-color: #ccc;
  border-radius: 50%;
  margin: 0 5px;
}

.testimonial-indicators button.active {
  background-color: #000;
}

@media (max-width: 767px) {
  .testimonial-card {
    padding: 30px 20px;
  }

  .testimonial-text {
    font-size: 1rem;
  }
}

/* Contact Form Styles */
.contact-form-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  padding: 40px;
  overflow: hidden;
}

.form-header {
  position: relative;
}

.form-header h3 {
  font-weight: 600;
  color: #000;
}

.modern-input {
  margin-bottom: 5px;
  position: relative;
}

.modern-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: #555;
}

.form-control {
  height: auto;
  padding: 12px 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: #f8f9fa;
}

.form-control:focus {
  border-color: #000;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

textarea.form-control {
  resize: none;
}

.modern-btn {
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 25px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.modern-btn:hover,
.modern-btn:focus {
  background-color: #333;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  color: #fff;
}

.modern-btn:active {
  transform: translateY(0);
}

.modern-btn i {
  font-size: 1.1rem;
  margin-left: 8px;
}

@media (max-width: 767px) {
  .contact-form-card {
    padding: 30px 20px;
  }
}

/* Product Section Styles */
.product-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.product-img-container {
  position: relative;
  overflow: hidden;
  height: auto; /* Changed from fixed height to auto */
  min-height: 200px; /* Set minimum height */
  max-height: 300px; /* Set maximum height */
}

.product-img-container img {
  width: 100%;
  height: auto; /* Changed from 100% to auto */
  object-fit: contain; /* Changed from cover to contain */
  transition: transform 0.5s ease;
  max-height: 300px; /* Set maximum height */
  display: block; /* Ensure proper display */
}
@media (max-width: 767px) {
  .product-img-container {
    min-height: 180px;
    max-height: 220px;
  }

  .product-img-container img {
    max-height: 220px;
  }
}
.product-card:hover .product-img-container img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #000;
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 15px;
  border-radius: 30px;
  z-index: 2;
}

.product-badge-special {
  background-color: #d63384;
}

.product-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-content h3 {
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.product-content h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: #000;
}

.product-features {
  margin-top: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.feature-item i {
  color: #000;
  font-size: 1rem;
}

.product-content .btn {
  margin-top: auto;
  align-self: flex-start;
  transition: all 0.3s ease;
}

.product-content .btn:hover {
  background-color: #333;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 767px) {
  .product-img-container {
    height: 220px;
  }

  .product-content {
    padding: 20px;
  }
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

/* Pricing Card Styles */
.pricing-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-header {
  background-color: #000;
  color: white;
  padding: 30px;
  text-align: center;
  position: relative;
}

.pricing-header h3 {
  font-weight: 700;
  margin-bottom: 20px;
}

.pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.price-period {
  font-size: 1rem;
  opacity: 0.8;
  margin-top: 5px;
}

.pricing-body {
  padding: 30px;
}

.feature-heading {
  font-weight: 600;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.feature-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.feature-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.feature-list li i {
  color: #000;
  margin-right: 10px;
  margin-top: 5px;
  font-size: 14px;
}

.pricing-extras {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
}

.extra-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.extra-feature i {
  font-size: 1.5rem;
  color: #000;
  margin-right: 15px;
  margin-top: 3px;
}

.extra-feature h6 {
  font-weight: 600;
  margin-bottom: 5px;
}

.extra-feature p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: #666;
}

.pricing-footer {
  text-align: center;
  padding: 30px;
  background-color: #f8f9fa;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-note {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0;
}

/* Feature Boxes */
.feature-box {
  background-color: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  color: #000;
  margin-bottom: 20px;
}

.feature-box h4 {
  font-weight: 600;
  margin-bottom: 15px;
}

.feature-box p {
  color: #666;
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .pricing-header {
    padding: 25px 15px;
  }

  .price-amount {
    font-size: 2.5rem;
  }

  .pricing-body {
    padding: 20px 15px;
  }

  .extra-feature {
    margin-bottom: 25px;
  }

  .feature-box {
    padding: 25px 15px;
  }
}
.pricing-options {
  margin-top: 10px;
}

.pricing-option-badge {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  display: inline-block;
}

/* For mobile responsiveness */
@media (max-width: 767px) {
  .pricing-option-badge {
    font-size: 0.8rem;
    padding: 5px 10px;
  }
}
