.container {
  width: 100%;
  max-width: 100%;
}

.hero-section .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-section {
  padding-top: 0px;
  min-height: 100vh;
  display: flex;
  align-items: center; /* Vertically center */
}
.text-flip-wrapper {
  display: inline-block;
  height: 1.2em; /* Adjust as needed */
  overflow: hidden;
  vertical-align: bottom;
  position: relative;
}

.text-flip-wrapper .text-flip {
  display: block;
  animation: flipText 8s infinite;
}

@keyframes flipText {
  0% {
    transform: translateY(0%);
  }
  25% {
    transform: translateY(-140%);
  }
  50% {
    transform: translateY(-260%);
  }
  75% {
    transform: translateY(-380%);
  }
  100% {
    transform: translateY(0%);
  }
}
.fs-30 {
  font-size: 80px;
}
/* Floating image animation */
.floating-img {
  animation: float 4s ease-in-out infinite;
  width: 80%;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

.marquee-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
}

.marquee {
  display: flex;
  width: fit-content;
  animation: scroll-left 20s linear infinite;
}

.marquee.reverse {
  animation: scroll-right 20s linear infinite;
}

.logo-container {
  display: flex;
  gap: 40px;
}

.logo-container img {
  height: 50px;
  /*filter: brightness(0) invert(1); /* Makes logos white */
  object-fit: contain;
  padding: 10px;
  opacity: 0.8;
  transition: filter 0.8s, opacity 0.8s;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}

.logo-container img:hover {
  opacity: 1;
}

.gradient-text {
  color: linear-gradient(90deg, #7e5bef, #5f4b8b);
  -webkit-text-fill-color: transparent;
}

.blockquote-footer {
  display: flex;
  align-items: center;
}

.blockquote-footer img {
  width: 40px;
  height: 40px;
  object-fit: cover;
}

/*     */
.testimonial-section {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.left-static {
  flex: 1 1 300px;
}

.review-track {
  display: flex;
  animation: marquee 25s linear infinite;
  gap: 1.5rem;
}

.review-cards {
  display: flex;
  gap: 1.5rem;
}

.review-card {
  background: rgba(7, 103, 14, 0.258);
  border-radius: 20px;
  padding: 1.5rem;
  color: white;
  width: 280px;
  min-width: 250px;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* RESPONSIVE */
@media (max-width: 408px) {
  .testimonial-section {
    flex-direction: column;
    text-align: center;
  }

  .left-static video {
    max-width: 100%;
    height: auto;
  }

  .review-cards {
    gap: 1rem;
  }

  .review-card {
    width: 90%;
    margin: 0 auto;
  }

  .review-track {
    flex-direction: row;
    overflow-x: auto;
    animation: none;
    scroll-snap-type: x mandatory;
  }

  .review-card {
    scroll-snap-align: start;
  }
}

/**/

.services-list li {
  cursor: pointer;
  padding: 12px 0;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.services-list li.active,
.services-list li:hover {
  color: #c2c2c2;
  border-left: 3px solid #01d28e;
  font-weight: bold;
  padding-left: 20px;
}

.service-title {
  font-weight: 600;
  color: #ffffff;
}

.service-desc {
  font-style: italic;
}
.service-Para {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  font-size: 14px;
  color: #308d09;
  margin-top: 5px;
}

/* Show on hover */
.services-list li:hover .service-Para {
  display: block;
  opacity: 1;
}
.image-container {
  position: relative;
  height: auto;
  min-height: 400px; /* or set based on your image height */
}

.hover-image {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  width: 100%;
  height: auto;
  z-index: 0;
}

.hover-image.active {
  opacity: 1;
  transform: translateY(0);
  z-index: 1;
}
/* Intro Section */
.intro-section {
  position: relative;
  padding: 100px 0;
  background: url("Image/5026598.jpg") center/cover no-repeat;
}

.intro-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.intro-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 15px;
  border-radius: 50px;
  font-size: 14px;
  margin-bottom: 20px;
  backdrop-filter: blur(5px);
}

.intro-badge span {
  color: #11cb39;
}

/* Flip Button */
.btn-flip1 {
  background: linear-gradient(180deg, #11cb39, #05640b);
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  color: white;
  font-weight: 600;
}

/* Footer */
.footer {
  background: rgba(1, 9, 1, 0.258);
}

.footer h6 {
  font-weight: 700;
  margin-bottom: 15px;
}

.footer p,
.footer a {
  font-size: 14px;
  color: #ccc;
  text-decoration: none;
}

.footer a:hover {
  color: #11cb39;
}

.newsletter {
  display: flex;
  margin-top: 10px;
}

.newsletter input {
  flex: 1;
  padding: 10px;
  border-radius: 20px 0 0 20px;
  border: none;
  outline: none;
}

.newsletter button {
  background: transparent;
  border: solid 1px gray;
  padding: 10px 15px;
  border-radius: 0 20px 20px 0;
  color: white;
}

.footer-bottom {
  font-size: 13px;
  color: #777;
}

/*pricing*/
.gradient-btn {
  background: linear-gradient(to right, #11cb39, #05640b);
  color: white;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
}

.gradient-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  color: white;
}

.most-popular {
  border: 2px solid #11cb2d;
  background: linear-gradient(to right, #071c06, #003a08);
}

/*FAQ*/
/* Smooth dropdown animation */
.accordion-collapse {
  transition: all 0.4s ease-in-out;
}

/* Smooth expand + collapse */
.accordion-collapse.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease;
}

.accordion-collapse.collapse.show {
  transition: height 0.4s ease;
}

/* Accordion item hover glow */
.accordion-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.accordion-item:hover {
  transform: scale(1.02);
}

.accordion-button {
  box-shadow: none !important;
  font-size: 1.1rem;
  transition: background-color 0.3s, color 0.3s;
}

.accordion-button:not(.collapsed) {
  background-color: #1c1c1c;
  color: #00d974;
}

.accordion-body {
  font-size: 0.95rem;
}

.btn-dark {
  background-color: #1c1c1c;
  color: white;
  border-color: #444;
}

.btn-dark:hover {
  background-color: #2c2c2c;
}

/* review track*/
.review-track {
  display: flex;
  flex-wrap: nowrap;
  animation: scrollReviews 20s linear infinite;
}

@keyframes scrollReviews {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/*project display card*/
.marquee-wrapper {
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  animation: scroll 30s linear infinite;
}

.case-card {
  flex: 0 0 auto;
  width: 600px;
  background: #111;
  border-radius: 20px;
  padding: 30px;
  margin-right: 30px;
}

.case-card img {
  max-width: 120px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.stat-block {
  margin-top: 20px;
}

.stat-block h2 {
  font-size: 2.2rem;
  margin: 0;
}

.stat-block p {
  margin: 0;
  font-weight: 500;
}

.stat-block small {
  font-size: 0.85rem;
  color: #bbb;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media (max-width: 768px) {
  .case-card {
    width: 90vw;
  }
}
.case-study-card {
  position: relative;
  height: 100vh;
  background: url("Image/about.jpg") no-repeat center center/cover;
  color: white;
  display: flex;
  align-items: center;
  padding: 3rem;
}

.overlay {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0.9)
  );
  padding: 2rem;
  max-width: 500px;
  border-radius: 8px;
}

.overlay h6 {
  color: #ccc;
}

.overlay h3 {
  font-weight: bold;
  margin-top: 0.5rem;
  font-size: 1.8rem;
}

.overlay p {
  font-size: 1rem;
  margin-top: 1rem;
  line-height: 1.5;
}

.read-more {
  font-weight: bold;
  margin-top: 1.5rem;
  display: inline-block;
  color: white;
  text-decoration: none;
  border-bottom: 2px solid white;
}

.bottom-tags {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #aaa;
}

@media (max-width: 768px) {
  .case-study-card {
    padding: 1.5rem;
    height: auto;
  }

  .overlay h3 {
    font-size: 1.5rem;
  }
}

/* card-profile*/
.testimonial-card {
  background-color: #111;
  padding: 2rem;
  border-radius: 5px;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #ccc;
}

.testimonial-author {
  font-weight: bold;
  font-size: 1.1rem;
  margin-top: 1.5rem;
  color: #fff;
}

.testimonial-role {
  font-size: 0.9rem;
  color: #aaa;
}

.testimonial-img {
  width: 100%;
  height: auto;
  border-radius: 0;
  object-fit: cover;
}

@media (max-width: 768px) {
  .testimonial-text {
    font-size: 1rem;
  }
}

/* Keep desktop side-by-side, mobile stacked */
@media (max-width: 767px) {
  .case-card .d-flex {
    flex-direction: column !important;
  }
  .overlay {
    min-height: 200px;
  }
}

.header-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-style: normal;
}
.background-container {
  position: relative;
  min-height: 250px;
}

.background-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("Image/uppuveli-design-icon1.png") center center / cover
    no-repeat;
  opacity: 0.3; /* Adjust this to control transparency */
  z-index: 1;
}

/* Ensure content is above the background */
.background-container > * {
  position: relative;
  z-index: 2;
}
.background-container1 {
  position: relative;
  min-height: 250px;
}

.background-container1::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("Image/isso-prown.png") center center / cover no-repeat;
  opacity: 0.3; /* Adjust this to control transparency */
  z-index: 1;
}

/* Ensure content is above the background */
.background-container1 > * {
  position: relative;
  z-index: 2;
}
