#smooth-wrapper {
  height: 100%;
  overflow: hidden;
}
#smooth-content {
  will-change: transform;
}
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 99999;
    width: 55px;
    height: 55px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.whatsapp-float img {
    width: 30px;
    height: 30px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}
.btn-inline {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* Desktop only side-by-side */
@media (min-width: 992px) {
  .btn-inline {
    flex-direction: row;
  }
}

/* Mobile: stack buttons */
@media (max-width: 991px) {
  .btn-inline {
    flex-direction: column;
    width: 100%;
  }

  .btn-inline a {
    width: 100%;
    text-align: center;
  }
}

/* Features Cards Container */
.why-rovista .why-features-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

/* Individual Card */
/* Individual Card */
.why-rovista .feature-card {
    background-color: #fff;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    flex: 1 1 220px;
    max-width: 250px;

    /* Change from flex row to column */
    display: flex;
    flex-direction: column; /* stack icon and text vertically */
    align-items: center;    /* center-align content */
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Optional: center icon margin */
.why-rovista .feature-card i {
    font-size: 28px;
    color: #222;
    margin-top: 0; /* reset top margin */
}


/* Card Hover Effect */
.why-rovista .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0,0,0,0.12);
}

/* Icon Styling */
.why-rovista .feature-card i {
    font-size: 28px;
    color: #222; /* keep current color */
    flex-shrink: 0;
    margin-top: 4px; /* vertical alignment */
}

/* Text Block */
.why-rovista .feature-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 6px 0;
}

.why-rovista .feature-card p {
    font-size: 14px;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 991px) {
    .why-rovista .feature-card {
        max-width: 45%;
    }
}

@media (max-width: 575px) {
    .why-rovista .feature-card {
        max-width: 100%;
    }
}

.cta-btn {
  display: inline-block;
  background-color: #f6751f; /* Orange button color */
  color: #fff;
  padding: 10px 15px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background-color: #f6751f;
  transform: translateY(-3px);
}

.tp-certifications-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.tp-cert-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  max-width: 250px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.tp-cert-card .image img {
  max-width: 180px;
  margin-bottom: 20px;
}

.tp-cert-card .title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.tp-cert-card p {
  font-size: 14px;
  color: #555;
}



.about-layout {
  display: grid;
  grid-template-columns: 95% 45%; /* ⬅ image gets more space */
  align-items: stretch;
  gap: 60px;
}


/* LEFT IMAGE */
.about-image {
  width: 100%;
  height: 100%;
  margin-bottom: 30px;
}

.about-image img {
  width: 100%;
   height: 500px;
  object-fit: cover;
  border-radius: 28px;
}

/* RIGHT CONTENT */
.content-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 991px) {
  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-image {
    height: 300px;
  }
}
/* .about-image img {
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
} */

.services-hero {
  padding: 170px 0;
  background: #f9fafb;
  position: relative;
  overflow: hidden;
}

.services-hero-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.services-hero-content h1 {
  font-size: 52px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.services-hero-content p {
  max-width: 520px;
  font-size: 16px;
  color: #555;
  margin-bottom: 32px;
}

.services-hero-image {
  position: relative;
}

.services-hero-image img {
  width: 100%;
  border-radius: 20px;
  clip-path: polygon(
    8% 0%,
    100% 0%,
    92% 100%,
    0% 100%
  );
}

/* Decorative line (like reference design) */
.services-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 35%;
  width: 2px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--primary),
    transparent
  );
}

/* Responsive */
@media (max-width: 992px) {
  .services-hero-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .services-hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .services-hero-image img {
    clip-path: none;
    border-radius: 16px;
  }
}
.hero-cta {
  position: relative;
  padding: 14px 34px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--blue));
  border-radius: 50px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.25);
}



.carousel-cont {
  min-width: 100vw;
  min-height: 80vh;
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 1rem 0;
}
.carousel-cont .carousel-main-cont {
  padding: 0 5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 800px) {
  .carousel-cont .carousel-main-cont {
    padding: 2rem;
   
  }
}
@media screen and (max-width: 480px) {
  .carousel-cont .carousel-main-cont {
    position: static;
    padding-bottom: 10px;
    
  }
}
.carousel-cont .carousel-main-cont h1 {
  font-size: clamp(1.75em, 10vw, 3.5em);
  font-weight: normal;
  margin-bottom: 2rem;
  line-height: 1.2em;
  color: black;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .carousel-cont .carousel-main-cont h1 {
    margin-left: 0;
  }
}
.carousel-cont .carousel-main-cont .carousel {
  position: relative;
  width: 100%;
  flex: 1;
}
@media screen and (max-width: 480px) {
  .carousel-cont .carousel-main-cont .carousel {
    flex-direction: column;
  }
}
.carousel-cont .carousel-main-cont .carousel .carousel-btn {
  position: absolute;
  bottom: 50%;
  transform: translateY(-50%);
  z-index: 5;
}
@media screen and (max-width: 800px) {
  .carousel-cont .carousel-main-cont .carousel .carousel-btn {
    bottom: 0%;
  }
}
.carousel-cont .carousel-main-cont .carousel .carousel-btn button {
  background: none;
  border: none;
  cursor: pointer;
  color: #bababa;
  transition: color 0.3s ease;
  cursor: pointer;
}
.carousel-cont .carousel-main-cont .carousel .carousel-btn button:hover {
  color: black;
}
.carousel-cont .carousel-main-cont .carousel .carousel-btn.left {
  left: 0;
}
.carousel-cont .carousel-main-cont .carousel .carousel-btn.right {
  right: 0;
}
.carousel-cont .carousel-main-cont .carousel .carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 22rem;
  display: flex;
  justify-content: center;
  align-items: stretch;
}
.carousel-cont .carousel-main-cont .carousel .carousel-item .carousel-card {
  width: 25rem;
  overflow: hidden;
  background-color: #f4f4f4;
  display: flex;
  opacity: 0;
  flex-direction: column;
  padding: 1rem;
  border-radius: 12px;
  transition: all 0.5s ease;
  transform: translateX(0%) scale(1);
}
.carousel-cont .carousel-main-cont .carousel .carousel-item .carousel-card .content {
  flex: 1 0 0;
}
.carousel-cont .carousel-main-cont .carousel .carousel-item .carousel-card .content .quote {
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  .carousel-cont .carousel-main-cont .carousel .carousel-item .carousel-card .content .quote {
    height: auto;
  }
}
.carousel-cont .carousel-main-cont .carousel .carousel-item .carousel-card .content .quote p {
  padding-top: 2.5rem;
  font-size: 0.8em;
  font-weight: 300;
}
@media screen and (max-width: 800px) {
  .carousel-cont .carousel-main-cont .carousel .carousel-item .carousel-card .content .quote p {
    padding-top: 2rem;
  }
}
.carousel-cont .carousel-main-cont .carousel .carousel-item .carousel-card .content .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.carousel-cont .carousel-main-cont .carousel .carousel-item .carousel-card .content .header .user-info h2 {
  font-weight: 600;
  font-size: 1em;
}
.carousel-cont .carousel-main-cont .carousel .carousel-item .carousel-card .content .header .user-info h3 {
  font-weight: 200;
  font-size: 0.7em;
}
.carousel-cont .carousel-main-cont .carousel .carousel-item .carousel-card .content .header img {
  width: 4rem;
  height: 4rem;
  aspect-ratio: 1;
  border-radius: 100%;
  object-fit: cover;
}
.carousel-cont .carousel-main-cont .carousel .carousel-item.active {
  z-index: 2;
}
.carousel-cont .carousel-main-cont .carousel .carousel-item.active .carousel-card {
  opacity: 1;
  transform: translateX(0%) scale(1.1);
}
.carousel-cont .carousel-main-cont .carousel .carousel-item.prev {
  z-index: 1;
}
.carousel-cont .carousel-main-cont .carousel .carousel-item.prev .carousel-card {
  opacity: 0.5;
  transform: translateX(-60%) scale(0.8);
}
.carousel-cont .carousel-main-cont .carousel .carousel-item.next {
  z-index: 1;
}
.carousel-cont .carousel-main-cont .carousel .carousel-item.next .carousel-card {
  opacity: 0.5;
  transform: translateX(60%) scale(0.8);
}/*# sourceMappingURL=VideoCarousel.css.map */

/*  HIDE ARROWS ON MOBILE */
@media screen and (max-width: 768px) {
  .carousel-cont .carousel-main-cont .carousel .carousel-btn {
    display: none;
  }
}


.about-hero {
  background: #ffffff;
  color: #0f172a;
  padding: 120px 0;
  overflow: hidden;
}

.about-hero-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 80px;
}

.about-tag {
  display: inline-block;
  background: #eef2ff;
  color: #4338ca;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 20px;
}

.about-hero-content h1 {
  font-size: 52px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.about-hero-content p {
  color: #475569;
  max-width: 540px;
  margin-bottom: 40px;
}

.about-stats {
  display: flex;
  gap: 50px;
}

.stat h3 {
  font-size: 28px;
}

.stat span {
  font-size: 14px;
  color: #64748b;
}

/* SINGLE IMAGE STYLE */
.about-hero-image {
  position: relative;
}

.about-hero-image img {
  width: 100%;
  max-width: 880px;
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
  transform: rotate(-4deg);
}

/* Responsive */
@media (max-width: 991px) {
  .about-hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-hero-image img {
    transform: none;
    margin: 0 auto;
  }

  .about-stats {
    justify-content: center;
  }
}


.service-icon {
  width: 90px;
  height: 90px;
 margin-bottom: 40px;
  stroke-width: 2;
}
.cta-icon {
  width: 70px;
  height: 70px;
  color: #ff7a18; /* your orange */
  flex-shrink: 0;
}


.cta-call{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 18px;
  border:1px solid var(--white-3);
  border-radius:20px;
  white-space:nowrap;
  margin-top:40px;
}

.tp-service-inner-3{
  display:flex;
  flex-direction:column;
  align-items:center;   /* 🔥 centers the CTA horizontally */
}
/* GRID */
.tp-service-grid-3{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:30px;
  align-items:stretch;   /* 🔥 key */
}

/* CARD */
.tp-service-card-3{
  height:100%;
}

.tp-service-card-3 a{
  height:100%;                 /* 🔥 equal height */
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  padding:40px 30px;
  border-radius:20px;
}

/* ICON */
.tp-service-card-3 img{
  margin-bottom:20px;
}

/* TITLE */
.tp-service-card-3 .title{
  margin-bottom:12px;
}

/* TEXT — balances different lengths */
.tp-service-card-3 p{
  margin-top:auto;             /* 🔥 keeps cards same height */
}
@media(max-width:1200px){
  .tp-service-grid-3{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media(max-width:768px){
  .tp-service-grid-3{
    grid-template-columns:1fr;
  }
}


/* ================= PROJECT HERO ================= */
.project-hero{
  padding:120px 0 80px;
  background:#fff;
}

.project-hero-inner{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  align-items:center;
  gap:60px;
}

/* LEFT */
.project-hero-title{
  font-size:56px;
  line-height:1.15;
  font-weight:700;
  margin-bottom:20px;
}

.project-hero-desc{
  font-size:18px;
  line-height:1.7;
  max-width:520px;
  margin-bottom:35px;
  color:#555;
}

.project-hero-btn{
  display:inline-block;
  padding:14px 34px;
  border-radius:30px;
  font-weight:600;
  text-decoration:none;
}

/* RIGHT */
.project-hero-image img{
  width:100%;
  border-radius:24px;
  object-fit:cover;
}

/* ================= RESPONSIVE ================= */
@media(max-width:991px){
  .project-hero-inner{
    grid-template-columns:1fr;
    gap:40px;
  }

  .project-hero-title{
    font-size:40px;
  }

  .project-hero{
    padding:90px 0 60px;
  }
}

@media(max-width:576px){
  .project-hero-title{
    font-size:32px;
  }

  .project-hero-desc{
    font-size:16px;
  }
}


.tp-team-btn {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  
}

/* Use cases */
.usecase-intro {
  max-width: 700px;
  margin-bottom: 40px;
  color: #555;
}

.usecase-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.usecase-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 30px;
  border: 1px solid #e5e7eb;
  border-radius: 60px;
  background: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
}

.usecase-card:hover {
  border-color: #000;
  transform: translateY(-2px);
}

.usecase-text {
  font-size: 18px;
  font-weight: 500;
  color: #111;
}

.usecase-cta {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #000;
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-outcome-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 16px;
}

.service-outcome-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #ffffff;
  font-weight: 500;
  transition: all 0.3s ease;
}

.service-outcome-list li:hover {
  transform: translateY(-3px);
  border-color: #000;
}

.service-outcome-list .icon {
  width: 28px;
  height: 28px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.service-outcome-list .text {
  color: #111;
  font-size: 15px;
}
@media (max-width: 768px) {
  .service-outcome-list {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 768px) {
  .service-outcome-list {
    grid-template-columns: 1fr; /* One card per row */
  }

  .service-outcome-list li {
    padding: 14px 16px;
  }

  .service-outcome-list .text {
    font-size: 14px;
  }
}

.tech-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 30px;
  list-style: none;
  padding: 0;
}

.tech-list li {
  padding: 14px 18px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-weight: 500;
  background: #fff;
}
.hero-subtitle {
  margin-bottom: 40px;
  max-width: 620px;
  font-size: 35px;
  line-height: 1.7;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.3px;
}

.search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    z-index: 1000;
    display: none;
}

.search-dropdown div {
    padding: 10px 14px;
    cursor: pointer;
    font-size: 14px;
}

.search-dropdown div:hover {
    background: #f5f5f5;
}

.search-label {
    font-size: 11px;
    font-weight: 600;
    color: #888;
    padding: 8px 14px;
    cursor: default;
}

.tp-breadcrumb-area img {
    position: relative;
    z-index: 1;
}

header,
.tp-header-area,
.tp-watch-video,
footer {
    position: relative;
    z-index: 10;
    
}
.tp-blog-details img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 16px;
}

.tp-blog-details figure {
    margin: 40px auto;
    text-align: center;
}

.tp-blog-details figure img {
    margin: 0 auto;
}

.tp-blog-details p img {
    display: inline-block;
}

/* Service list styling */
.service-list {
  list-style: none;           /* remove default bullets */
  padding-left: 0;
  margin: 15px 0 20px;
}

.service-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.6;
  color: #000000; /* adjust if needed */
}

/* Custom round bullet */
.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background-color: currentColor; /* matches text color */
  border-radius: 50%;
}

.logoimg{
 max-width: 80px;
 
}

@media (max-width: 576px) {
  .hero-subtitle {
    font-size: 18px;       /* try 16–20px */
    line-height: 1.4;
    margin-bottom: 20px;
    max-width: 100%;
  }
}

/* ===============================
   CHALLENGE / SOLUTION / OUTCOME
================================ */

/* Wrapper → STACK ONE BY ONE */
.challange-part-wrap {
  display: flex;
  flex-direction: column;   /* ONE BY ONE */
  gap: 30px;
  margin-top: 50px;
}

/* Individual Card */
.challenge-part {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.challenge-part:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
}

/* Card Title */
.challenge-part .title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #111;
}

/* Title Colors */
.challenge-part:nth-child(1) .title {
  color: #dc3545; /* Challenge - red */
}

.challenge-part:nth-child(2) .title {
  color: #0d6efd; /* Solution - blue */
}

.challenge-part:nth-child(3) .title {
  color: #198754; /* Outcome - green */
}

/* Paragraph */
.challenge-part p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 16px;
}

/* ===============================
   LIST STYLE INSIDE CARD
================================ */
.challenge-part ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.challenge-part ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

/* Check icon */
.challenge-part ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 16px;
  font-weight: 700;
  color: #000;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .challenge-part {
    padding: 24px;
  }

  .challenge-part .title {
    font-size: 20px;
  }

  .challenge-part ul li {
    font-size: 15px;
  }
}

/* ===============================
   TECHNOLOGIES GRID
================================ */

/* Desktop */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* FORCE 4 PER ROW */
  gap: 24px;
  margin-top: 40px;
}

.tech-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 32px 26px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  text-align: left;
}

.tech-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.1);
}

.tech-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(13, 110, 253, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.tech-icon i {
  font-size: 22px;
  color: #000;
}

.tech-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #111;
}

.tech-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* ===============================
   RESPONSIVE BREAKPOINTS
================================ */

/* Tablet */
@media (max-width: 991px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 575px) {
  .tech-grid {
    grid-template-columns: 1fr;
  }

  .tech-card {
    padding: 26px 22px;
  }
}
.project-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.project-info-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.project-info-item span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
  margin-bottom: 6px;
}

.project-info-item p {
  font-size: 16px;
  font-weight: 500;
  color: #111;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .project-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .project-info-grid {
    grid-template-columns: 1fr;
  }
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 40px;
}

.screenshot-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.12);
}

.screenshot-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
width:200px;
  height: 360px;                 /* FIXED CARD HEIGHT */
  display: flex;
  align-items: center;
  justify-content: center;
}

.screenshot-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;           /* KEY FIX */
  border-radius: 14px;
}

@media (max-width: 991px) {
  .screenshots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .screenshots-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .screenshot-card {
    height: 300px;
  }
}

@media (max-width: 575px) {
  .screenshot-card {
    height: 260px;
  }
}

.tp-project-gallery-area{
  margin-bottom: -150px;
}

/* ===============================
   HORIZONTAL PREVIEW CARD
================================ */

.horizontal-preview-wrap {
  margin-top: 60px;
}

.horizontal-preview-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;

  height: 420px;                 /* CONTROL HEIGHT */
  display: flex;
  align-items: center;
  justify-content: center;
}

.horizontal-preview-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.12);
}

.horizontal-preview-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;           /* SHOW FULL IMAGE */
  border-radius: 14px;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 991px) {
  .horizontal-preview-card {
    height: 320px;
  }
}

@media (max-width: 575px) {
  .horizontal-preview-card {
    height: 240px;
  }
}
.footer-trust-badge {
  margin-top: 24px;
}

.footer-trust-badge img {
  height: 58px;
  width: auto;
  opacity: 0.95;
}

/* Mobile optimization */
@media (max-width: 576px) {
  .footer-trust-badge img {
    height: 44px;
  }
}


/* Logo + Badge wrapper */
.tp-main__logo.logo-with-badge {
  max-width: 100%;
}

/* Flex alignment */
.tp-main__logo .logo-link {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

/* Main logo sizing */
.tp-main__logo .main-logo {
  height: 42px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

/* Badge sizing */
.tp-main__logo .google-badge {
  height: 38px;
  width: auto;
  flex-shrink: 0;
  margin-left: 10px;
}

/* Tablet */
@media (max-width: 991px) {
  .tp-main__logo .main-logo {
    height: 36px;
    max-width: 120px;
  }

  .tp-main__logo .google-badge {
    height: 16px;
  }
}

/* Mobile – optional (recommended) */
@media (max-width: 576px) {
  .tp-main__logo .google-badge {
    display: none;
  }
}
.tp-blog-item {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 22px;
  background: #fff;
  transition: all 0.3s ease;
}
