html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}
html {
  scroll-behavior: smooth;
}
/*----------------- Header ----------------*/
#header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  background: rgb(14, 58, 82);
  height: 60px;
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
}

#header .logo h1 a, #header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo h1 a span {
  color: #1acc8d;
}

/*----------- Navigation Menu --------------*/
.logo h1 {
  margin: 0;
  font-size: 2.5rem;
  line-height: 1.2;
}

.logo-img {
  height: 2.5rem;
  width: auto;
  vertical-align: middle;
}
/* Desktop */
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 3px;
  left: 30px;
  background-color: #1acc8d;
  visibility: hidden;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
  visibility: visible;
  width: 25px;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #fff;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: rgb(14, 58, 82);
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #1acc8d;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/* Mobile */
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(14, 58, 82,  0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 8px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: rgb(2, 5, 161);
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: rgb(63, 67, 253);
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: rgb(255, 255, 255);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #1acc8d;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*---------------- Hero Section ------------------*/
#hero {
  width: 100%;
  background: linear-gradient(45deg, rgba(14, 58, 82,  0.8), rgba(15, 169, 143, 0.9));
  background-size: cover;
  padding-top: 120px;
  padding-bottom: 60px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Hero Waves Animation */
.hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
}

.wave1 use {
  animation: wave-anim 9s infinite ease-in-out; 
  animation-delay: 1s;
}

.wave2 use {
  animation: wave-anim 11s infinite ease-in-out; 
  animation-delay: 0.8s;
}

.wave3 use {
  animation: wave-anim 14s infinite ease-in-out; 
  animation-delay: 0.6s;
}

@keyframes wave-anim {
  0% {
    transform: translateX(-90px);
  }
  100% {
    transform: translateX(85px);
  }
}

/* Animation for the  image floating effect */
.hero-img img.animated,
.services-img img.animated,
.contact-img img.animated {
  animation: float 4s ease-in-out infinite;
}

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

/* AOS Animation Enhancements */
[data-aos] {
  pointer-events: none; /* evita problemi di click durante l'animazione */
}
[data-aos].aos-animate {
  pointer-events: auto; /* ripristina i click quando l'animazione è completa */
}

/* Rallenta le animazioni zoom su desktop */
@media screen and (min-width: 992px) {
  [data-aos="zoom-out"] {
    transition-duration: 1200ms; /* durata più lunga per zoom-out */
  }
}

/* Effetto più fluido per le animazioni di fade */
[data-aos^="fade"][data-aos^="fade"] {
  opacity: 0;
  transition-property: opacity, transform;
}
[data-aos^="fade"][data-aos^="fade"].aos-animate {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Hero headline styling */
.hero-headline h1 {
  font-size: 5rem;
  letter-spacing: -1px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .hero-headline h1 {
    font-size: 3.5rem;
  }
}

.hero-headline .accent-text {
  color: #1acc8d;
  font-size: 120%;
}

.text-highlight {
  color: #1acc8d;
  border-bottom: 2px solid #1acc8d;
}

/* CTA Button enhancements */
.btn-get-started {
  background: #1acc8d;
  color: #fff;
  border-radius: 50px;
  padding: 15px 30px;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-get-started:hover {
  background: #fff;
  border-color: #1acc8d;
  color: #1acc8d;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Pulse animation for the CTA button */
.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(26, 204, 141, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(26, 204, 141, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(26, 204, 141, 0);
  }
}

/*--------- Services Section ------------*/
.services {
  padding: 80px 0;
  position: relative;
}

.section-bg {
  background-color: #f8f9fa;
}

.services .services-img {
  position: relative;
}

.services .services-img img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}

.services .services-img img:hover {
  transform: translateY(-10px);
}

.services h2 {
  font-size: 42px;
  font-weight: 700;
  color: rgb(14, 58, 82);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.services h2:after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #1acc8d;
  bottom: 0;
  left: 0;
}

.services p {
  margin-bottom: 30px;
  color: #444444;
  font-size: 18px;
  line-height: 1.6;
}


/* About Section Styling */
.section-bg-alt {
  background-color: #f6f9ff;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
  padding-bottom: 15px;
  position: relative;
  color: rgb(14, 58, 82);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #1acc8d;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  font-size: 18px;
  margin-bottom: 0;
  color: rgb(14, 58, 82);
}

.about {
  padding: 100px 0 60px;
}

.highlight-box {
  background: linear-gradient(135deg, rgb(14, 58, 82), #1acc8d);
  padding: 20px;
  border-radius: 10px;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 0 auto;
}

.highlight-text {
  font-weight: 700;
  font-size: 24px;
  margin: 0;
}

/*-------------- Process Timeline Styling ---------------*/
.process-timeline {
  position: relative;
  margin: 30px 0 60px;
}

.process-step {
  margin-bottom: 30px;
  position: relative;
  padding-left: 20px;
}

.process-icon {
  position: relative;
  margin-right: 25px;
  min-width: 70px;
  text-align: center;
}

.process-number {
  position: absolute;
  top: -10px;
  left: -10px;
  background: #1acc8d;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
}

.process-content {
  flex-grow: 1;
}

.process-content h4 {
  color: rgb(14, 58, 82);
  margin-bottom: 10px;
}

.process-content p {
  color: #444;
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .process-step {
    flex-direction: column;
  }
  
  .process-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

/* Team Cards */
.team-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.team-img {
  position: relative;
  overflow: hidden;
}

.team-img img {
  transition: transform 0.5s ease;
  width: 100%;
}

.team-card:hover .team-img img {
  transform: scale(1.1);
}

.team-info {
  padding: 25px 20px;
  text-align: center;
}

.team-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: rgb(14, 58, 82);
}

.team-info span {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: #1acc8d;
  margin-bottom: 15px;
}

.team-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 1.7;
  color: #4e4e4e;
  margin-bottom: 20px;
}

.team-info .social {
  margin-top: 15px;
}

.team-info .social a {
  font-size: 18px;
  display: inline-block;
  color: rgb(14, 58, 82);
  line-height: 1;
  margin: 0 8px;
  transition: all 0.3s ease;
}

.team-info .social a:hover {
  color: #1acc8d;
}

/*Team images hover effect only for tablet and bigger screen*/
@media (min-width: 768px) {
  .team-img {
    position: relative;
    overflow: hidden;
  }
  
  .team-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(14, 58, 82); 
    opacity: 0.5;
    z-index: 2;
    transition: opacity 0.6s ease;
  }
  
  .team-img img {
    transition: transform 0.5s ease;
    width: 100%;
    position: relative;
    z-index: 1;
  }
  
  /* Effetto hover - fade out overlay blue */
  .team-card:hover .team-img::before {
    opacity: 0;
  }

  /* Keep the image zoom effect */
  .team-card:hover .team-img img {
    transform: scale(1.1);
  }
}
/*---------------- Contact Section ------------------*/
.contact .info {
  width: 100%;
  background: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

.contact .info i {
  font-size: 32px;
  color: #1acc8d;
  float: left;
  line-height: 1;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: rgb(14, 58, 82);
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: rgb(14, 58, 82);
}

.contact .email-form {
  width: 100%;
  background: #fff;
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .email-form .form-group {
  padding-bottom: 8px;
}

.contact .email-form input, 
.contact .email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .email-form input {
  height: 44px;
}

.contact .email-form textarea {
  padding: 10px 12px;
}

.contact .email-form button[type="submit"] {
  background: #1acc8d;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .email-form button[type="submit"]:hover {
  background: rgb(14, 58, 82);
}

.contact .email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #1acc8d;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .email-form .sent-message {
  display: none;
  color: #fff;
  background: #1acc8d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*-------------- Footer ----------------*/
.logo-footer {
  height: 2rem;
  width: auto;
  vertical-align: middle;
}

/* ensure responsive logo in footer */
@media (max-width: 768px) {
  .logo-footer {
    height: 1.8rem;
  }
}

/* ensure alignment of logo text */
#footer .footer-info h3 {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

#footer {
  background: rgb(14, 58, 82);
  color: #fff;
  font-size: 14px;
  text-align: left;
  padding: 60px 0 30px;
  position: relative;
  margin-top: 60px;
}

.footer-top {
  padding-bottom: 30px;
}

#footer .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-info h3 span {
  color: #1acc8d;
}

#footer .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #1acc8d;
  color: #fff;
  text-decoration: none;
}

#footer .footer-links {
  margin-bottom: 30px;
  list-style-type: none;
  padding-left: 0;
}

#footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-links ul i {
  padding-right: 10px;
  color: #1acc8d;
  font-size: 16px;
  line-height: 0;
}

#footer .footer-links ul a {
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  text-decoration: none;
}

#footer .footer-links ul a:hover {
  color: #1acc8d;
  text-decoration: none;
}

/* Footer navigation links - White with green hover */
.footer-links li a {
  color: #ffffff !important;
  text-decoration: none !important;
  transition: color 0.3s ease;
}

.footer-links li a:hover {
  color: #1acc8d !important;
  text-decoration: none !important;
}

/* Remove underline in all states */
.footer-links li a:focus,
.footer-links li a:active,
.footer-links li a:visited {
  text-decoration: none !important;
} 

#footer .copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#footer .copyright span {
  color: #1acc8d;
}
/*--------- footer wawes ------------*/
.footer-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: absolute;
  top: -60px; 
  left: 0;
  z-index: 5;
}

.footer-waves .wave1 use {
  animation: wave-anim 9s infinite ease-in-out; 
  animation-delay: 1s;
}

.footer-waves .wave2 use {
  animation: wave-anim 11s infinite ease-in-out; 
  animation-delay: 0.8s;
}

.footer-waves .wave3 use {
  animation: wave-anim 14s infinite ease-in-out; 
  animation-delay: 0.6s;
}

/*--------- Portfolio ---------------*/
.portfolio {
  padding: 80px 0;
}

.portfolio-container {
  row-gap: 30px;
}

.portfolio-item {
  margin-bottom: 30px;
}

.portfolio-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  height: 100%;
  transition: all 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.portfolio-img {
  position: relative;
  overflow: hidden;
}

.portfolio-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-img img {
  transform: scale(1.1);
}

.portfolio-info {
  padding: 25px 20px;
}

.portfolio-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: rgb(14, 58, 82);
}

.portfolio-info .category {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #1acc8d;
  margin-bottom: 15px;
  padding: 5px 12px;
  background-color: rgba(26, 204, 141, 0.1);
  border-radius: 20px;
}

.portfolio-info p {
  font-size: 15px;
  line-height: 1.6;
  color: #444444;
  margin-bottom: 15px;
  min-height: 70px;
}

.portfolio-link {
  display: inline-flex;
  align-items: center;
  color: rgb(14, 58, 82);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.portfolio-link:hover {
  color: #1acc8d;
}

.portfolio-link i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.portfolio-link:hover i {
  transform: translateX(5px);
}

/*----------- plan pricing -----------*/
.pricing {
  padding: 80px 0;
}

.pricing .pricing-card {
  position: relative;
  background: #fff;
  border-radius: 15px;
  padding: 35px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
}

.pricing .pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing .pricing-card.featured {
  border: 2px solid #1acc8d;
  transform: scale(1.02);
  z-index: 1;
}

.pricing .pricing-card.featured:hover {
  transform: scale(1.02) translateY(-10px);
}

.pricing .pricing-header {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.pricing .pricing-card h3 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
  color: rgb(14, 58, 82);
}

.pricing .pricing-card h4 {
  font-size: 36px;
  color: rgb(14, 58, 82);
  font-weight: 700;
  margin-bottom: 0;
}

.pricing .pricing-card h4 sup {
  font-size: 18px;
  position: relative;
  top: -15px;
  margin-right: 5px;
  color: #6c757d;
}

.pricing .pricing-card .popular-badge {
  position: absolute;
  top: -12px;
  right: 50%;
  transform: translateX(50%);
  background: #1acc8d;
  color: white;
  padding: 5px 15px;
  font-size: 12px;
  border-radius: 30px;
  font-weight: 600;
  z-index: 2;
}

.pricing .pricing-card ul {
  padding: 0;
  list-style: none;
  text-align: left;
  margin-bottom: 20px;
}

.pricing .pricing-card ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #444;
}

.pricing .pricing-card ul li i {
  color: #1acc8d;
  margin-right: 10px;
  font-size: 18px;
}

.pricing .pricing-btn {
  padding-top: 15px;
}

.pricing .pricing-btn .btn-get-started {
  padding: 10px 25px;
  font-size: 16px;
}

.pricing .pricing-card.featured {
  border: 2px solid #1acc8d;
  transform: scale(1.02);
  z-index: 1;
}

.pricing .row.align-items-stretch {
  min-height: 550px;
}

.pricing .pricing-card.featured .pricing-header {
  padding-top: 15px;
}

.pricing .pricing-card.featured .btn-get-started {
  background-color: rgb(14, 58, 82);
}

.pricing .pricing-card.featured .btn-get-started:hover {
  background-color: #fff;
  border-color: rgb(14, 58, 82);
  color: rgb(14, 58, 82);
}

@media (max-width: 991px) {
  .pricing .pricing-card.featured {
    transform: scale(1);
    margin-top: 20px;
  }
  
  .pricing .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
}