body {
  background-color: black;
  font-family: "Unbounded", "Unbounded Placeholder", sans-serif;
}


.contact-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.contact-card {
  background-color: transparent;
  padding: 15px;
  border-radius: 10px;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-card-link:hover .contact-card {
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}


.growth-btn {
  background-color: transparent;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.growth-btn:hover {
  background-color: #f58327;
  color: white;
  cursor: pointer;
}


.nav-waterdrop {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-waterdrop::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.12);
  /* faint white */
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.nav-waterdrop:hover::before,
.nav-waterdrop:focus::before {
  width: 120px;
  height: 120px;
}

.nav-waterdrop:hover,
.nav-waterdrop:focus {
  transform: scale(0.93);
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-waterdrop.active {
  color: #f58327 !important;
}

.nav-waterdrop.active::before {
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.12);
}

.digital-highlight {
  position: relative;
  display: inline-block;
  color: #111 !important;
  z-index: 1;
}

.digital-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #f58327;
  transform: rotate(3deg);
  z-index: -1;
}

/* Marquee Effect */
.marquee-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-text {
  display: inline-block;
  animation: marquee-scroll 20s linear infinite;
  white-space: nowrap;
}

.marquee-text span {
  display: inline-block;
  color: rgba(255, 255, 255, 0.1);
  font-size: 6rem;
  font-weight: 400;
  margin-right: 4rem;
  color: white;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-40%);
  }
}

.testimonial-card {
  left: 6rem;
  bottom: 0;
  position: absolute;
  padding: 0.8rem;
  border-radius: 1.5rem;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  color: #fff;
  padding: 1.5rem 1.5rem 1rem 1.5rem;
  z-index: 10;
  backdrop-filter: blur(5px);
}

.testimonial-title {
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.testimonial-divider {
  border: none;
  border-top: 1.5px solid white;
  margin: 0.5rem 0 1rem 0;
}

.testimonial-avatar {
  width: 49px;
  height: 49px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: -10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.testimonial-reviews {
  font-size: 0.75rem;
  font-weight: 300;
  color: #fff;
  margin-left: 0.5rem;
}

/* Services Section */
.services-section {
  background-color: #000;
  color: white;
  padding: 6rem 0;
}

.services-tag {
  display: inline-block;
  background-color: #222;
  color: #f58327;
  padding: 0.5rem 1.0rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.services-title {
  font-size: 2.5rem;
  font-weight: 400;
  color: white;
}

.service-card {
  background-color: #1a1a1a;
  border-radius: 15px;
  padding: 2.5rem;
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(245, 131, 39, 0.3);
}

.service-icon {
  width: 60px;
  height: 60px;
  border: 2px solid #f58327;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.0rem;
  font-size: 1.5rem;
  color: #f58327;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background-color: #f58327;
  color: white;
  transform: scale(1.1);
}

.service-card-title {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 3rem;
  color: white;
}

.service-description {
  color: #777;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 2rem;
  font-size: 0.8rem;
}

.service-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.service-link:hover {
  color: #f58327;
  transform: translateX(5px);
}

.service-link i {
  transition: transform 0.3s ease;
}

.service-link:hover i {
  transform: translateX(3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-blog-section {
    padding: 100px 40px 0px !important;
    background: #000;
    min-height: auto !important;
    display: flex
;
    align-items: center;
    justify-content: center;
}
  .services-title {
    font-size: 2rem;
  }
  .hero-blog-section {
    min-height: auto !important;
    padding: 100px 20px 0px !important;
}
.content-section{
  padding: 15px !important;
}
.blog-content {
  max-width: 100%;
  padding: 10px !important;
}
.blog-content h1 {
  font-size: 1.5rem !important;
}
.blog-content p {
  font-size: 1rem !important;
}
.content-heading {
  font-size: 1.2rem !important;}
  .btn {
    font-size: 0.8rem;
  }

  .service-card {
    padding: 2rem;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

/* Popup Modal */
.popup-overlay {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  transform: translateY(100px);
}

.popup-overlay.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.popup-modal {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  max-width: 400px;
  width: 100%;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #333;
  border: 2px solid white;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8rem;
  cursor: pointer;
  z-index: 1;
  transition: all 0.3s ease;
}

.popup-close:hover {
  background: #555;
  transform: scale(1.1);
}

.popup-content {
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
}

.popup-left {
  flex: 2;
}

.popup-right {
  flex: 1;
  color: #333;
}

.popup-right h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  line-height: 1.4;
  font-weight: 600;
}

.free-text {
  color: #f58327;
  font-weight: 700;
}

.remix-link {
  color: #333;
  text-decoration: none;
  font-weight: 600;
  display: block;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.remix-link:hover {
  color: #f58327;
  transform: translateX(5px);
}

.made-in {
  font-size: 0.8rem;
  color: #666;
  margin: 0;
}

/* Brands Section */
.brands-section {
  background-color: #000;
  color: white;
}

.brands-tag {
  display: inline-block;
  background-color: rgba(85, 85, 85, 0.5);
  color: #f58327;
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 1.0rem;
  margin-bottom: 1rem;
}

.brands-title {
  font-size: 2.5rem;
  font-weight: 400;
  color: white;
  margin-bottom: 3rem;
}

.brands-marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.brands-marquee {
  display: flex;
  animation: brands-scroll 30s linear infinite;
  white-space: nowrap;
}

.brand-item {
  background-color: #222;
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin-right: 1.5rem;
  min-width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.brand-item:hover {
  border-color: rgba(245, 131, 39, 0.3);
}

.brand-item span {
  color: white;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
}

.bg-image {
  background-image: url(images/trust-image.jpg);
  background-size: cover;
  background-position: center;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.overlay {
  background: radial-gradient(45.1% 44.7% at 52.6% 42.8%, #f58327 0%, rgb(0, 0, 0) 100%);
  bottom: 0;
  height: 100%;
  left: calc(50% - 100% / 2);
  mix-blend-mode: multiply;
  opacity: 0.91;
  overflow: hidden;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 1;
}

.metric-container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 2rem;
  margin-bottom: 10rem;
}

.metric-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  max-width: 200px;
  height: 200px;
  width: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 1rem;
}

.metric-item h2 {
  font-size: 3rem;
  font-weight: 300;
  margin: 0;
  line-height: 1;
}

.metric-item p {
  font-size: 0.7rem;
  font-weight: 300;
  margin: 0;
  margin-top: 0.5rem;
  opacity: 0.9;
  line-height: 1.2;
}

/* Features Section */
.features-container {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 0 10rem;
}

.feature-cards {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.feature-card {
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  width: 100%;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.feature-icon {
  width: 60px;
  height: 60px;
  border: 2px solid #f58327;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: #f58327;
  transition: all 0.3s ease;
}

.feature-card h3 {
  color: white;
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.feature-card p {
  color: #999;
  font-size: 0.75rem;
  line-height: 1.6;
  margin: 0;
  font-weight: 300;
}

.attribute-buttons {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.attribute-button {
  background: rgba(30, 30, 30, 0.6);
  border-radius: 25px;
  padding: 0.8rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-size: 0.8rem;
  font-weight: 400;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.attribute-button i {
  color: #f58327;
  font-size: 0.9rem;
}

.attribute-button span {
  white-space: nowrap;
}

@keyframes brands-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .popup-overlay {
    bottom: 1rem;
    right: 1rem;
  }

  .popup-content {
    flex-direction: column;
  }

  .popup-modal {
    max-width: 350px;
  }

  .brands-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  h1 {
    font-size: 2rem;
  }

  .service-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
  }

  .brand-item {
    min-width: 120px;
    padding: 1rem 1.5rem;
    margin-right: 1rem;
  }

  .brand-item span {
    font-size: 0.9rem;
  }

  .feature-cards {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .feature-card {
    max-width: 100%;
    padding: 1.5rem;
  }

  .attribute-buttons {
    gap: 1rem;
  }

  .attribute-button {
    padding: 0.6rem 1rem;
    font-size: 0.7rem;
  }

  .features-container {
    padding: 0 1rem;
  }

  .service-card-title {
    font-size: 1rem;

  }

  .display-3 {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.2;
  }
  .display-3 .digital-highlight {
    font-size: 1.75rem;
   
  }
  p {
    font-size: 0.8rem;
  }

  .marquee-text span {
    display: inline-block;
    color: rgba(255, 255, 255, 0.1);
    font-size: 2rem;
    font-weight: 400;
    margin-right: 4rem;
    color: white;
  }
}

.case-study-badge {
  background-color: rgb(60, 60, 60, 0.5);
  width: fit-content;
  color: #f58327;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.6rem;
  font-weight: 700;
}

.project-card {
  display: flex;
  gap: 0.5rem;
  margin: 0;
}

.project-content {
  padding: 1.8rem 1.5rem 1rem;
    margin: 0 1rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: rgba(30, 30, 30, 0.5);
    border-radius: 40px;
    border: 2px solid rgba(40, 40, 40, 0.5);
}
@media (max-width: 768px) {
  .footer-right {
  
   
    justify-content: start !important;
 padding-left: 25px;
}
  .contact-section{
    padding: 0 0px !important;
  }
  .contact-container{
    gap: 2rem !important;
  }
  .row{
    margin: 0 !important;
  }
  .project-image{
    padding: 0 0 20px 0;
  }
  .footer-section {
    padding: 2rem 0rem !important;
  }
  .contact-section {
min-height: auto !important;
 }
  .footer-container {
   
    padding: 1rem !important;
}
  .w-75 {
    width: 90% !important;
}
  .hero-section .hero-imm{
width: 90% !important;
  } 
  .min-vh-100 {
    min-height: auto !important;
  }
  .project-content {
    padding: 1rem 1rem 1rem;
    margin: 0 0 0rem;
  }
}
.project-content:hover {
  border-color: rgba(90, 90, 90, 0.5);
}

.content-top {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;

}

.content-top h6 {
  color: white;
  font-weight: 400;
}

.content-top p {
  color: white;
  font-size: 0.75rem;
  font-weight: 300;
}

.content-bottom {
  display: flex;
  gap: 0.5rem;
}

.content-bottom h1 {
  color: #f58327;
}

.content-bottom p {
  color: white;
  font-size: 0.75rem;
  font-weight: 300;
}

/* Contact Section */
.contact-section {
  background-color: #000;
  color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.contact-container {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: 100%;
}

.contact-left {
  flex: 1;
}

.contact-heading {
  font-size: 9rem;
  font-weight: 400;
  color: white;
  line-height: 0.7;
  margin: 0;
}

.contact-accent {
  color: #f58327;
}

.contact-right {
  flex: 1;
}

.contact-form-container {
  background: rgba(255, 255, 255, 0.075);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(5px);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  color: #ccc;
  font-size: 0.9rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 1rem;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #f58327;
  background: rgba(255, 255, 255, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background: #f58327;
  color: black;
  border: none;
  border-radius: 10px;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.submit-btn:hover {
  background: white;
  color: black;
}

/* Responsive adjustments for contact */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
  }

  .contact-heading {
    font-size: 2.5rem;
    text-align: center;
  }

  .contact-form-container {
    padding: 2rem;
  }
}

/* Footer Section */
.footer-section {
  background-color: #000;
  color: white;
  padding: 4rem 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  gap: 4rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Contact Cards */
.footer-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.075);
  border-radius: 40px;
  padding: 1.25rem 2rem;
  backdrop-filter: blur(5px);
}

.contact-card i {
  color: white;
  font-size: 1.2rem;
  width: 20px;
}

.contact-card span {
  color: white;
  font-size: 0.9rem;
  font-weight: 400;
}

/* Footer Links */
.footer-right {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 10rem;

}

.link-column h4 {
  color: #f58327;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.link-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.link-column li {
  margin-bottom: 0.8rem;
}

.link-column a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 300;
  transition: color 0.3s ease;
}

.link-column a:hover {
  color: #f58327;
}

/* Bottom Footer */
.footer-bottom {
  background-color: rgba(255, 255, 255, 0.075);
  border-radius: 40px;
  padding-top: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

/* Social Section */
.social-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.follow-text {
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
  background: #f58327;
  transform: translateY(-2px);
}

.social-icon i {
  font-size: 1rem;
}

/* Newsletter Section */
.newsletter-section {
  margin-bottom: 2rem;
}

.newsletter-container {
  display: flex;
  gap: 1rem;
  max-width: 500px;
}

.newsletter-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1rem;
  color: white;
  font-size: 0.9rem;
}

.newsletter-input::placeholder {
  color: #999;
}

.newsletter-input:focus {
  outline: none;
  border-color: #f58327;
}

.newsletter-btn {
  background: #f58327;
  color: black;
  border: none;
  border-radius: 10px;
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

/* Copyright */
.copyright {
  margin-top: 2rem;
  align-self: flex-end;
}

.copyright-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  margin-top: 2rem;
  margin-bottom: 0;
  width: 100%;
  align-self: center;
}

.copyright p {
  color: #999;
  font-size: 0.8rem;
  font-weight: 400;
  margin: 0;
}

/* Responsive adjustments for footer */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }

  .social-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .newsletter-container {
    flex-direction: column;
  }

  .newsletter-btn {
    width: 100%;
  }

  .footer-bottom {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.view-all-projects-btn {
  background-color: #f58327;
  color: black;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  width: fit-content;
  align-self: center;
  text-transform: uppercase;
  margin-top: 2rem;
}

/* Testimonials Section */
.testimonials-section {
  background-color: #000;
  color: white;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding-bottom: 5rem;
  margin-top: 50px;
}

.testimonials-container {

  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0px auto 0 auto;
}

.testimonials-title {
  font-size: 7rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 1;
  line-height: 0.8;
  margin: 1rem auto;
  white-space: nowrap;
  text-align: center;
  width: 100%;
  position: absolute;
  top: 1rem;
}

.testimonials-marquee-container {
  position: relative;
  z-index: 3;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  height: 800px;
  overflow: hidden;
}

/* Orange gradient effects */
.testimonials-orange-blur {
  position: absolute;
 
  left: calc(50% - 589px / 2);
  width: 589px;
  height: 148px;
  background-color: #f58327;
  border-radius: 210px;
  filter: blur(67px);
  -webkit-filter: blur(67px);
  z-index: 0;
  overflow: hidden;
  top: -7rem;
}

.testimonials-orange-gradient {
  position: absolute;
 
  left: calc(50% - 330px / 2);
  width: 330px;
  height: 105px;
  background: radial-gradient(69.3% 75% at 50% 0%, #f58327 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
  overflow: hidden;
  top: -3rem;
}

.testimonials-black-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 4;
  pointer-events: none;
}

.testimonials-marquee {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  animation: testimonials-scroll 30s linear infinite;
}

@keyframes testimonials-scroll {
  0% {
    transform: translateY(20%);
  }

  100% {
    transform: translateY(-80%);
  }
}

.testimonial-card-new {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  width: 100%;
  min-width: 600px;
}

.testimonial-stars {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 1rem;
}

.testimonial-stars i {
  color: #f58327;
  font-size: 1.2rem;
}

.testimonial-quote {
  font-size: 4rem;
  color: #f58327;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 1rem;
  font-family: serif;
}

.testimonial-text {
  color: white;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar-new {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.author-name {
  color: white;
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}

.author-company {
  color: #999;
  font-size: 0.8rem;
  font-weight: 300;
  margin: 0;
}

/* Responsive adjustments for testimonials */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }

  .testimonials-container {
    padding: 0 2rem;
  }

  .testimonials-orange-blur {
    width: 100%;
    height: auto;
    
  }
  .testimonials-orange-gradient {
    top: -2rem;
  }

  .testimonials-title {
    font-size: 2rem;
    top: 0rem;
    left: 0rem;
  }

  .pricing-title {
    font-size: 2rem !important;
  }

  .testimonial-card-new {
    padding: 2rem;
    min-width: 100%;
  }

  .metric-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 2rem;
    margin-bottom: 1rem;
  }
  .metric-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    max-width: 200px;
    height: auto;
    width: 41%;
    display: flex
;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 2rem;
    margin-bottom: 10px;
}
.metric-item h2 {
  font-size: 2rem;
  font-weight: 300;
  margin: 0;
  line-height: 1;
}
  .navbar-brand img {
   
    width: 165px !important;
  }
  .content-bottom h1 {
    font-size: 1.5rem !important;
}

  .pricing-btn.featured-btn {
    background-color: #f58327;
    color: black;
    border-color: #f58327;
    font-size: 0.8rem;
  }

  .col-lg-8 {
    padding: 0 !important;
  }

  .h5,
  h5 {
    font-size: 1rem !important;
  }

  .amount {
    font-size: 1.5rem !important;
    color: #f58327;
    font-weight: 700;
    line-height: 1;
  }

  .testimonial-quote {
    font-size: 3rem;
  }

  .testimonial-text {
    font-size: 0.9rem;
  }
}
.features-list li{
  margin-top: 20px;
}
/* Review Section */
.review-section {
  background-color: #000;
  color: white;
  padding: 8rem 0;
  position: relative;
}

.review-container {
  margin: 0 auto;
  padding: 0 4rem;
  position: relative;
}

.review-cards {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 6rem;
}

.video-testimonial-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 1rem;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  cursor: pointer;
  width: 100%;
}

.youtube-embed {
  width: 100%;
  height: 350px;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.youtube-embed iframe {
  border-radius: 15px;
  width: 100%;
  height: 100%;
}

.video-testimonial-info {
  text-align: center;
}

.video-testimonial-name {
  color: white;
  font-size: 1.0rem;
  font-weight: 500;
  margin: 0 0 0.8rem 0;
}

.video-testimonial-title {
  color: #999;
  font-size: 0.8rem;
  font-weight: 300;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.review-button-container {
  display: flex;
  justify-content: center;
}

.view-all-reviews-btn {
  background-color: #f58327;
  color: black;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Responsive adjustments for review section */
@media (max-width: 768px) {
  .review-section {
    padding: 4rem 0;
  }

  .review-container {
    padding: 0 2rem;
  }

  .review-cards {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
  }

  .video-testimonial-card {
    max-width: 100%;
    padding: 1.5rem;
  }

  .testimonial-video-img {
    height: 250px;
  }

  .play-button-overlay {
    width: 60px;
    height: 60px;
  }

  .play-icon {
    font-size: 1.2rem;
  }
}

/* Pricing Section */
.pricing-section {
  background-color: #000;
  color: white;
  padding: 6rem 0;
  position: relative;
}

.pricing-container {
  padding: 0 2rem;
}

.pricing-header {
  text-align: center;
  margin-bottom: 4rem;
}

.pricing-badge {
  display: inline-block;
  background-color: rgba(85, 85, 85, 0.5);
  color: #f58327;
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 1.0rem;
  margin-bottom: 1rem;
  border-radius: 25px;
}

.pricing-title {
  font-size: 2.5rem;
  font-weight: 400;
  color: white;
  margin: 0 0 1rem 0;
}

.pricing-savings {
  color: white;
  font-size: 0.9rem;
  font-weight: 300;
  margin-top: 1rem;
}

/* Pricing Toggle */
.pricing-toggle {
  display: flex;
  justify-content: center;
}

.toggle-container {
  position: relative;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 0.3rem;
  display: flex;
  gap: 0.2rem;
}

.toggle-btn {
  background: transparent;
  border: none;
  color: white;
  padding: 0.5rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.toggle-btn.active {
  color: black;
}

.toggle-slider {
  position: absolute;
  top: 0.3rem;
  left: 0.3rem;
  width: calc(50% - 0.1rem);
  height: calc(100% - 0.6rem);
  background-color: #f58327;
  border-radius: 20px;
  transition: transform 0.3s ease;
  z-index: 1;
}

.toggle-container[data-period="yearly"] .toggle-slider {
  transform: translateX(100%);
}

.pricing-cards {
  display: flex;
  gap: 1rem;
  flex-wrap: nowrap;
}

.pricing-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  width: 100%;
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
    justify-content: space-between;
}

.featured-badge {
  position: absolute;
  top: -10px;
  right: 30px;
  background-color: #f58327;
  color: black;
  font-size: 0.6rem;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  letter-spacing: 0.05em;
}

.pricing-card-header {
  text-align: left;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.plan-badge {
  display: inline-block;
  background-color: rgba(85, 85, 85, 0.5);
  color: white;
  font-size: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 400;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.8rem;
  margin-bottom: 1rem;
  border-radius: 15px;
  align-self: flex-start;
}

.plan-name {
  font-size: 1.5rem;
  font-weight: 500;
  color: white;
  margin: 0 0 1rem 0;
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 0.2rem;
}

.currency {
  font-size: 1.2rem;
  color: #f58327;
  font-weight: 400;
  margin-top: 0.5rem;
}

.amount {
  font-size: 3.5rem;
  color: #f58327;
  font-weight: 700;
  line-height: 1;
}

.period {
  font-size: 1rem;
  color: white;
  font-weight: 300;
}

.pricing-features {
  margin-bottom: 2rem;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  color: white;
  font-size: 0.9rem;
  font-weight: 300;
}

.features-list i {
  color: #f58327;
  font-size: 0.9rem;
  font-weight: 600;
}

.pricing-btn {
  width: 100%;
  background-color: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;
}

.pricing-btn:hover {
  background-color: #f58327;
  border-color: #f58327;
  color: black;
}

.pricing-btn.featured-btn {
  background-color: #f58327;
  color: black;
  border-color: #f58327;
}

/* Responsive adjustments for pricing */
@media (max-width: 768px) {
  .pricing-cards {
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
  }

  .pricing-card {
    max-width: 100%;
    padding: 2rem;
    width: 100%;
  }

  .pricing-card.featured {
    transform: none;
  }
}

/* Blog Section Styles */
.blog-card {
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.blog-image {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 16px;
}

.blog-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0.3) 70%, transparent 100%);
  pointer-events: none;
  border-radius: 0 0 16px 16px;
}

.blog-content {
  background-color: rgba(255, 255, 255, 0.075);
  border-radius: 16px;
  padding: 1rem;
}

.blog-meta-overlay {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
  z-index: 2;
}

.blog-meta-overlay span {
  font-size: 0.6rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(5px);
}

.blog-meta-overlay .featured {
  background: rgba(0, 0, 0, 0.3);
  color: rgba(255, 255, 255, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.blog-meta-overlay .date {
  background: rgba(0, 0, 0, 0.3);
  color: rgba(255, 255, 255, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.blog-meta-overlay .category {
  background: rgba(0, 0, 0, 0.3);
  color: rgba(255, 255, 255, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.blog-title {
  font-size: 0.9rem;
  font-weight: 300;
  color: white;
  margin: 0;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Responsive adjustments for blog cards */
@media (max-width: 768px) {
  .blog-card {
    margin-bottom: 1.5rem;
  }

  .blog-content {
    padding: 1rem;
  }

  .blog-title {
    font-size: 1rem;
  }

  .blog-meta-overlay {
    bottom: 0.75rem;
    left: 0.75rem;
    right: 0.75rem;
    gap: 0.5rem;
  }

  .blog-meta-overlay span {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
  }
}

/* FAQ Section Styles */
.faq-section {
  background-color: black;
}

.faq-badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.1);
  color: #f58327;
  padding: 0.5rem;
  border-radius: 25px;
  font-size: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.faq-title {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: white;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: rgba(255, 255, 255, 0.075);
  border-radius: 25px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question span {
  font-weight: 300;
  color: white;
  flex: 1;
  margin-right: 1rem;
}

.faq-toggle {
  background-color: #f58327;
  border: none;
  border-radius: 8px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-toggle i {
  color: black;
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

/* FAQ Answer Styles */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
  max-height: 200px;
  padding: 1rem 6rem;
}

.faq-answer p {
  color: #cccccc;
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
  font-weight: 300;
}

/* Responsive adjustments for FAQ */
@media (max-width: 768px) {
  .faq-title {
    font-size: 2rem;
  }

  .faq-question {
    padding: 1rem 1.5rem;
  }

  .faq-question span {
    font-size: 0.9rem;
  }

  .faq-toggle {
    width: 35px;
    height: 35px;
  }
}

/* Mobile Navigation Styles */
.mobile-menu-btn {
  background: none !important;
  border: none !important;
  padding: 8px !important;
  cursor: pointer !important;

  flex-direction: column !important;
  gap: 4px !important;
  z-index: 100 !important;
  outline: none !important;
  box-shadow: none !important;
  position: relative !important;
  min-width: 40px !important;
  min-height: 40px !important;
  align-items: center !important;
  justify-content: center !important;
}

.mobile-menu-btn:hover {
  background-color: rgba(255, 255, 255, 0.1) !important;
  border-radius: 8px !important;
}

.hamburger-line {
  width: 25px !important;
  height: 3px !important;
  background-color: white !important;
  border-radius: 2px !important;
  transition: all 0.3s ease !important;
  display: block !important;
  margin: 0 !important;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px) !important;
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0 !important;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px) !important;
}

.mobile-nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.mobile-nav-menu.active {
  visibility: visible;
  opacity: 1;
}

.mobile-nav-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
}

.mobile-nav-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 350px;
  height: 100%;
  background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.mobile-nav-menu.active .mobile-nav-content {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 0 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 30px;
}

.mobile-close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.mobile-close-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.mobile-nav-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  color: white;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-nav-link:hover {
  background-color: rgba(245, 131, 39, 0.1);
  color: #f58327;
  transform: translateX(10px);
}

.mobile-nav-link.active {
  background-color: rgba(245, 131, 39, 0.2);
  color: #f58327;
}

.mobile-nav-link i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

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

.mobile-nav-footer {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 20px;
}

.mobile-template-btn {
  width: 100%;
  padding: 15px 30px;
  background-color: #f58327;
  color: #111;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-template-btn:hover {
  background-color: #e6751f;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 131, 39, 0.3);
}

/* Responsive adjustments for mobile navigation */
@media (max-width: 768px) {
  .mobile-nav-content {
    max-width: 100%;
  }

  .mobile-nav-link {
    font-size: 18px;
    padding: 18px 20px;
  }

  .mobile-template-btn {
    padding: 18px 30px;
    font-size: 18px;
  }
}

/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
  overflow: hidden;
}

/* New Pricing Cards Section Styles */
.new-pricing-section {
  
  position: relative;
  overflow: hidden;
  color: #333;
}

.new-pricing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(13, 110, 253, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(13, 110, 253, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.new-pricing-card {
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  padding: 0;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: visible !important;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.new-pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f58327, #0a58ca);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.new-pricing-card:hover::before {
  transform: scaleX(1);
}

.new-pricing-card:hover {
  transform: translateY(-8px);
  border-color: #f58327;
  box-shadow: 0 20px 40px rgba(13, 110, 253, 0.15);
}

.new-pricing-card.featured {
  border-color: #f58327;
  background: #ffffff;
  transform: scale(1.02);
  box-shadow: 0 8px 30px rgba(13, 110, 253, 0.12);
}

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

.new-pricing-card.premium {
  border-color: #f58327;
  background: #ffffff;
  box-shadow: 0 8px 30px rgba(13, 110, 253, 0.15);
}

.new-pricing-card.premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(13, 110, 253, 0.2);
}

.new-pricing-card .featured-badge,
.new-pricing-card .premium-badge {
  position: absolute;
  top: -15px;
  right: 25px;
  background: linear-gradient(135deg, #f58327, #0a58ca);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
  z-index: 100;
  white-space: nowrap;
  min-width: 80px;
  text-align: center;
  line-height: 1.2;
}

.new-pricing-card .premium-badge {
  background: linear-gradient(135deg, #ffc107, #e0a800);
  color: #000;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
  min-width: 90px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
  padding: 30px 30px 0 30px;
}

.pricing-icon {
  width: 80px;
  height: 80px;
  background: #ffffff;
  border: 2px solid #000;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  color: #000;
  position: relative;
  transform: rotate(5deg);
}

.icon-number {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 20px;
  height: 20px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.pricing-accent-band {
  background: #f58327;
  color: #ffffff;
  padding: 20px;
  margin: 0 -30px;
  text-align: center;
}

.pricing-title {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

.pricing-price {
  text-align: center;
  margin: 25px 30px;
  position: relative;
  z-index: 2;
}

.price-main {
  color: #000;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-original {
  color: #6c757d;
  font-size: 14px;
  font-weight: 400;
  text-decoration: line-through;
}

.pricing-cta {
  text-align: center;
  margin: 0 30px 25px 30px;
  position: relative;
  z-index: 2;
}

.cta-button {
  background: #f58327;
  color: #ffffff;
  border: none;
  padding: 15px 30px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-bottom: 10px;
}

.cta-button:hover {
  background: #0a58ca;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(13, 110, 253, 0.4);
}

.cta-subtext {
  color: #6c757d;
  font-size: 12px;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
}

.pricing-features {
  flex: 1;
  position: relative;
  z-index: 2;
  padding: 0 30px 30px 30px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  padding: 8px 0;
}

.feature-item i {
  color: #000;
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.feature-item span {
  color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.feature-item strong {
  font-weight: 700;
  color: #000;
}

/* Responsive adjustments for new pricing cards */
@media (max-width: 768px) {
  .new-pricing-card {
    margin-bottom: 20px;
  }
  
  .new-pricing-card.featured {
    transform: none;
  }
  
  .new-pricing-card.featured:hover {
    transform: translateY(-5px);
  }
  
  .pricing-title {
    font-size: 18px;
  }
  
  .price-main {
    font-size: 24px;
  }
  
  .cta-button {
    padding: 12px 25px;
    font-size: 11px;
  }
  
  .feature-item {
    margin-bottom:0px;
  }
  .pricing-features{
    margin-bottom: 0px;
  }
  .feature-item span {
    font-size: 13px;
  }
  
  .pricing-header,
  .pricing-price,
  .pricing-cta,
  .pricing-features {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .pricing-accent-band {
    margin: 0 -20px;
  }
}

@media (max-width: 576px) {
  .new-pricing-section .container {
    padding: 0 15px;
  }
  
  .pricing-header,
  .pricing-price,
  .pricing-cta,
  .pricing-features {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .pricing-accent-band {
    margin: 0 -15px;
  }
  
  .pricing-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .icon-number {
    width: 16px;
    height: 16px;
    font-size: 10px;
    top: 6px;
    left: 6px;
  }
  
  .pricing-container .pricing-title {
    font-size: 18px !important;
  }
  .faq-answer.active

 {
    max-height: 200px;
    padding: 1rem 2rem;
}
  .price-main {
    font-size: 17px;
  }
}