/* New Agency Design Seema Jan 2026 */

 /* Banner Owl Slider - matches screenshot design */
 .banner-slider-section { position: relative; }
/* Height from content only – no blank space below */
.banner-slider-section .owl-banner .owl-stage-outer,
.banner-slider-section .owl-banner .owl-stage {
  height: auto !important;
}
.banner-slider-section .owl-banner .owl-item {
  height: auto;
  min-height: 520px;
}
@media (min-width: 768px) {
  .banner-slider-section .owl-banner .owl-item { min-height: 580px; }
}
@media (min-width: 992px) {
  .banner-slider-section .owl-banner .owl-item { min-height: 640px; }
}
 
 .banner-slide-item {
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
   min-height: 520px;
   display: flex;
   align-items: center;
   position: relative;
 }
 @media (min-width: 768px) { .banner-slide-item { min-height: 580px; } }
 @media (min-width: 992px) { .banner-slide-item { min-height: 640px; } }
 .banner-slide-overlay {
   width: 100%;
   min-height: inherit;
   display: flex;
   align-items: center;
   background: linear-gradient(to right, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
   padding: 4rem 0;
 }

/* Dark background text treatment */
.banner-slider-section,
.ai-home-hero {
  color: #fff;
}
.banner-slider-section h1,
.banner-slider-section h2,
.banner-slider-section h3,
.banner-slider-section h4,
.banner-slider-section h5,
.banner-slider-section h6,
.ai-home-hero h1,
.ai-home-hero h2,
.ai-home-hero h3,
.ai-home-hero h4,
.ai-home-hero h5,
.ai-home-hero h6 {
  color: #fff;
}
 
/* Content base state */
 .banner-slide-subtitle {
   color: #fff;
   font-size: 1.2rem;
   letter-spacing: 0.09em;
   text-transform: uppercase;
   margin-bottom: 0.75rem;
   opacity: 0;
  transform: translateY(40px);
 }
 .banner-slide-title {
   color: #fff;
  font-size: clamp(4rem, 6vw, 7.5rem);
  line-height: 1.05;
   margin-bottom: 1.75rem;
   opacity: 0;
  transform: translateY(40px);
  font-weight: 800;
 }
 .banner-slide-buttons {
   display: flex;
   flex-wrap: wrap;
   gap: 1rem;
   margin-top: 1rem;
   opacity: 0;
  transform: translateY(40px);
 }

/* Run animations only when slide is active */
.owl-banner .owl-item.active .banner-slide-subtitle {
  animation: bannerSlideUp 0.8s ease-out 0.3s forwards;
}
.owl-banner .owl-item.active .banner-slide-title {
  animation: bannerSlideUp 0.8s ease-out 0.5s forwards;
}
.owl-banner .owl-item.active .banner-slide-buttons {
  animation: bannerSlideUp 0.8s ease-out 0.7s forwards;
}
 
 /* Button transitions */
 html body .btn.btn-banner-outline {
   display: inline-block;
   padding: 1.5rem 2.5rem 1.35rem;
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
  background-image: none;
   text-decoration: none;
   border-radius: 0;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
   position: relative;
   overflow: hidden;
 }
 .btn-banner-outline::before {
   content: '';
   position: absolute;
   top: 0;
   left: -100%;
   width: 100%;
   height: 100%;
   background: #fff;
   transition: left 0.3s ease;
   z-index: -1;
 }
.btn-banner-outline:hover {
  background: #fff;
  color: #1a1a1a;
  border-color: #fff;
}
 .btn-banner-outline:hover::before { left: 0; }
 .btn-banner-primary {
   display: inline-block;
   padding: 1.5rem 2.5rem 1.35rem;
   border: 2px solid #FF7114;
   color: #fff;
  background: #FF7114;
  background-image: linear-gradient(90deg, #ffffff 0%, #ffffff 50%, #FF7114 50%, #FF7114 100%);
  background-size: 200% 100%;
  background-position: 100% 0;
   text-decoration: none;
   border-radius: 0;
  transition: background-position 0.3s ease, color 0.3s ease, border-color 0.3s ease;
   position: relative;
   overflow: hidden;
 }

 
.btn-banner-primary:hover {
  color: #FF7114;
  border-color: #fff;
  background-position: 0 0;
}

html body header .navbar.megamenu .dropdown-menu.megamenu-content .mega-bgs .btn-transparent.trans-white-btn {
  transition: none !important;
}
html body header .navbar.megamenu{
    padding-top:0px!important;
      padding-bottom:0px!important;
}

html body header .navbar.megamenu .dropdown-menu.megamenu-content .mega-bgs .btn-transparent.trans-white-btn:hover {
  transition: none !important;
}

.btn-banner-black {
  display: inline-block;
  padding: 1.5rem 2.5rem 1.35rem;
  border: 0;
  color: #fff;
  background: #111;
  background-image: linear-gradient(90deg, #FF7114 0%, #FF7114 50%, #111 50%, #111 100%);
  background-size: 200% 100%;
  background-position: 100% 0;
  text-decoration: none;
  border-radius: 0;
  transition: background-position 0.3s ease, color 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.btn-banner-black:hover {
  color: #fff;
  background-position: 0 0;
}

.about-contact-form .form-control {
  border-radius: 0;
  border: 0;
  background: #F4F5F8;
  padding: 1.5rem 2rem;
  box-shadow: none;
}
.about-contact-form textarea.form-control {
  min-height: 140px;
  resize: none;
}
.about-contact-form .btn-banner-black {
  border-radius: 0;
  border: 0;
}
 
/* Keyframes for slide-up animation */
@keyframes bannerSlideUp {
   from {
     opacity: 0;
    transform: translateY(40px);
   }
   to {
     opacity: 1;
    transform: translateY(0);
   }
 }
 
 
/* Navigation arrows - circular on right side, inside content width */
 .banner-slider-section .owl-banner .owl-nav {
   position: absolute;
  right: calc((100% - 1280px) / 2);
   top: 50%;
   transform: translateY(-50%);
   display: flex;
   flex-direction: column;
   gap: 1rem;
   z-index: 10;
 }
 @media (max-width: 1280px) {
    .banner-slider-section .owl-banner .owl-nav {
     right: 6%;
    }
  }
 @media (max-width: 768px) {
   .banner-slider-section .owl-banner .owl-nav {
    right: 4%;
     gap: 0.75rem;
   }
 }
 .banner-slider-section .owl-banner .owl-nav button {
   width: 50px;
   height: 50px;
   border-radius: 50%;
   background: transparent;
   border: 2px solid rgba(255, 255, 255, 0.5);
   color: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: all 0.3s ease;
   backdrop-filter: blur(5px);
   cursor: pointer;
   outline: none;
 }
 @media (max-width: 768px) {
   .banner-slider-section .owl-banner .owl-nav button {
     width: 40px;
     height: 40px;
     font-size: 1rem;
   }
 }
 .banner-slider-section .owl-banner .owl-nav button:hover,
 .banner-slider-section .owl-banner .owl-nav button:hover span {
   border-color: #fff;
   opacity: 1;
 }
 .banner-slider-section .owl-banner .owl-nav button.owl-prev,
 .banner-slider-section .owl-banner .owl-nav button.owl-next {
   margin: 0;
 }
 .banner-slider-section .owl-banner .owl-nav button span {
   line-height: 1;
   display: block;
   color: #fff;
   opacity:0.5;
 }
 
 /* Dots styling */
 .banner-slider-section .owl-banner .owl-dots { position: absolute; bottom: 1.5rem; left: 0; right: 0; text-align: center; }
 .banner-slider-section .owl-banner .owl-dots .owl-dot span { background: rgba(255,255,255,0.6); }
 .banner-slider-section .owl-banner .owl-dots .owl-dot.active span { background: #fff; }
 
/* Ensure non-active slides stay hidden */
.banner-slider-section .owl-banner .owl-item:not(.active) .banner-slide-subtitle,
.banner-slider-section .owl-banner .owl-item:not(.active) .banner-slide-title,
.banner-slider-section .owl-banner .owl-item:not(.active) .banner-slide-buttons {
  opacity: 0;
  transform: translateY(40px);
}

/* AI Section */
.ai-home-section {
  background: #fff;
  padding-bottom: 10rem;
  padding-top: 0;
}
.ai-home-hero {
  background: #101826 url("../images/ai-home-bg.png") center center / cover no-repeat;
  padding: 10rem 0 14rem;
  color: #fff;
  text-align: center;
}
.ai-home-hero h2 {
  margin-bottom: 0.75rem;
}
.ai-home-hero p {
  max-width: 680px;
  margin: 0 auto 1.5rem;
  opacity: 1;
  color: #fff;
}
.btn-ai-cta {
  display: inline-block;
  background: #ff7a18;
  color: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.btn-ai-cta:hover { background: #e86b10; color: #fff; }

.ai-home-card {
  background: #fff;
  margin-top: -6rem;
  padding: 4rem;
  box-shadow: none;
  padding-top: 6rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}
.ai-home-img {
  max-width: 100%;
}
.ai-home-badge {
  color: #ff7a18;
  margin-bottom: 0.3rem;
}
.ai-heading-content {
  margin-bottom: 6rem;
}
.ai-details-content {
  gap: 3rem 0rem;
}
.ai-home-card h3 {
  margin-bottom: 1.2rem;
}
.ai-home-feature {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
.ai-home-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 60px;
  font-size: 2rem;
}
.ai-home-feature h6 {
  margin-bottom: 0.5rem;
}
.ai-home-feature p {
  color: #666;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .ai-home-card { padding: 2rem; }
  .ai-home-hero { padding: 4rem 0 6rem; }
}
@media (max-width: 575px) {
  .ai-home-card { padding: 1.5rem; }
  .ai-home-hero { padding: 3.5rem 0 5rem; }
}

/* New design sections */
.section-tag {
  display: inline-block;
  color: #ff7a18;
  text-transform: uppercase;
  font-size: 1.2rem;
  letter-spacing: 0.09em;
  margin-bottom: 0.35rem;
  font-weight: 600;
}
.section-title {
  margin-bottom: 6rem;
}

.idea-section {
  padding: 10rem 0;
  background: #fff;
}
@media (min-width: 1400px) {
.about-container {
  max-width: calc((100% - 1320px) / 2 + 1320px);
  margin-right:0;
}
}
.idea-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.idea-stat h4 {
  margin-bottom: 0.2rem;
}
.idea-stat span {
  font-size: 0.9rem;
}
.idea-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin: 3.5rem 0 3rem;
  width: 80%;
}
.idea-feature {
  display: flex;
  gap: 1.8rem;
  align-items: center;
}
.idea-feature img {
  width: 50px;
  height: auto;
}
.idea-feature h6 { margin: 0; }
.idea-short { margin-top: 0.5rem; }
.idea-reviews {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 3rem;
}
.review-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-direction: column;
}
.review-logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0px 40px rgba(0, 0, 0, 0.15);
}
.review-rating {
  margin-top: 1.5rem;
  margin-left: 1.5rem;
}
.review-logo.star {
  background: #f5f5f5;
  color: #0fb36b;
}
.review-rating .stars {
  color: #f3b600;
  margin-bottom: 0.2rem;
}
.review-rating span {
  color: #000;
    font-weight: 500;
}
.accolades {
  margin-top: 3rem;
}
.idea-highlight {
  background: #f7f8fb;
  padding: 2rem;
  border-radius: 8px;
}
.idea-highlight-card {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.idea-media {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.idea-section .row { align-items: flex-start; }

@media (max-width: 991px) {
  .idea-section .col-lg-5 { order: 1; }
  .idea-section .col-lg-6 { order: 2; }
  .idea-section .col-lg-6.offset-lg-1 { margin-left: 0; }
}
@media (max-width: 767px) {
  .idea-section .col-lg-5 { order: 1; }
  .idea-section .col-lg-6 { order: 2; }
}
.work-culture-card {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.work-culture-thumb {
  position: relative;
  width: 160px;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
  flex: 0 0 160px;
}
.work-culture-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ff7a18;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.work-culture-text h5 {
  margin: 0;
}
.accolades {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 4rem;
  align-items: center;
}
.accolades img {
  max-height: 80px;
  width: auto;
  object-fit: contain;
}
.idea-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  align-items: center;
  margin-top: 2.5rem;
  opacity: 0.8;
}
.idea-logos img { max-height: 36px; object-fit: contain; width: 100%; }

.core-services-section {
  padding: 10rem;
  background: var(--new-bg-light, #EDF1F4);
}
.core-services-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.service-card {
  background: #fff;
  padding: 25px;
  height: 100%;
  text-align: center;
  border-top: 6px solid #FF7114;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.07);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #111;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
  z-index: 0;
}
.service-card > * { position: relative; z-index: 1; }
.service-col { display: block; }

@media (max-width: 1199px) {
  .core-services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
  .core-services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 575px) {
  .core-services-grid { grid-template-columns: 1fr; }
}
.service-card .icon-box {
  width: 100px;
  height: 100px;
  padding: 20px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  background: #F4F5F8;
  margin-inline: auto;
}
.service-card:hover {
  color: #fff;
  border-top-color: #FF7114;
  transform: translateY(-6px);
}
.service-card:hover h6 {
  color: rgba(255,255,255,1);

}
.service-card:hover p {
  color: rgba(255,255,255,0.7);
}
.service-card:hover::before {
  transform: scaleY(1);
}
.service-card:hover .icon-box {
  background: #fff;
}

.testimonial-section {
  padding: 10rem 0 8rem;
  background: #f7f8fb url("../images/testimonial-bg.png") center center / cover no-repeat;
  position: relative;
}
.testimonial-section .section-tag { margin-bottom: 0.4rem; }
.testimonial-section h2 { margin-bottom: 2rem; }
.testimonial-slide {
  background: transparent;
}
.testimonial-slide { display: none; min-height: 400px; }
.testimonial-slide.active { display: block; }
.testimonial-slide.active .col-lg-6 {
  animation: testimonialTextFade 0.6s ease both;
}
.testimonial-slide.active .testimonial-main {
  animation: testimonialImageSlide 0.7s ease both;
}
.quote-stars {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1rem;
}
.quote-icon {
  font-size: 4rem;
  color: #FF7114;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.testimonial-section .stars {
  color: #FBBC05;
  margin-bottom: 1rem;
  letter-spacing: 0.2em;
}
.testimonial-meta {
  margin-top: 1.2rem;
}
.testimonial-meta strong {
  font-size: 2rem;
  font-weight: 600;
  color: #000;
}
.testimonial-meta span { display: block; color: #808287; text-transform: uppercase; font-size: 1.4rem; }

.testimonial-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.testimonial-visual-col {
  margin-top:-8rem;
}
.testimonial-main {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 24px solid #fff;
  overflow: hidden;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.05);
}
.testimonial-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-avatars .avatar {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border:0;
  object-fit: cover;
  /* box-shadow: 0 8px 20px rgba(0,0,0,0.15); */
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 2;
}
.testimonial-avatars .avatar.active {
  border: 8px solid #fff;
  outline: 4px solid #000;
}
.avatar-top { top: 0; right: 50%; transform: translate(-10%, -10%); }
.avatar-left { right: 50%; top: 50%; transform: translate(-90%, -50%); }
.avatar-bottom { right: 50%; bottom: 0; transform: translate(-10%, -10%);}

.swiper-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  position: absolute;
  left: 50%;
  transform: translateX(-100%);
}
.swiper-pagination .dot {
  width: 36px;
  height: 3px;
  background: #ddd;
  display: inline-block;
  cursor: pointer;
  transition: background 0.2s ease;
  z-index: 2;
}
.swiper-pagination .dot.active { background:#000; }

@keyframes testimonialTextFade {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes testimonialImageSlide {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 991px) {
  .testimonial-visual { margin-top: 2rem; }
  .testimonial-main { width: 200px; height: 200px; }
}
@media (max-width: 575px) {
  .testimonial-main { width: 180px; height: 180px; }
  .avatar-top { right: 15px; }
}

.passionate-section {
  padding: 10rem 0;
  background: #fff;
}
.passionate-list {
  list-style: none;
  padding: 0;
  margin: 6rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.passionate-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}
.passionate-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #ff7a18;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex: 0 0 60px;
  margin-top: 0.2rem;
}
.passionate-text h6 {
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.passionate-text p {
  margin: 0;
  color: #666;
}
.stats-strip {
  background: #1d1f26 url("../images/stats-bg.png") center center / cover no-repeat;
  padding: 0rem 0 20rem;
  position: relative;
}
.stats-strip-item {
  padding-block:8rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.stats-strip-item:last-child {
  border-right: none;
}
.stats-strip h3,
.stats-strip p {
  color: #fff;
}
.stats-strip p {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.2rem;
}
.stats-strip h3 {
  font-size: 4.8rem;
  font-weight: 700;
}

.ceo-message-section {
  transform: translateY(-50%);
  position: relative;
  z-index: 2;
  padding-bottom: 0;
}
.ceo-card {
  background: #fff;
  display: flex;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}
.ceo-photo {
  flex: 0 0 220px;
  width: 220px;
}
.ceo-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ceo-content {
  padding: 4rem 5rem;
}
.ceo-quote {
  color: #7a7d85;
  margin-bottom: 1.4rem;
}
.ceo-meta strong {
  display: block;
  font-weight: 700;
  color: #000;
}
.ceo-meta span {
  display: block;
  color: #808287;
  font-size: 1.8rem;
  font-weight: 600;
}

.stories-section {
  padding: 9rem 0;
  background: #fff url("../images/case-study-bg.png") left center / 50% 100% no-repeat;
  position: relative;
  overflow: hidden;
}
.stories-section .container { 
  position: relative; 
  z-index: 1;   
}

@media (min-width: 1200px) {
  .stories-section .container { 
    max-width: calc((100% - 1140px) / 2 + 1140px); 
    margin-right: 0;
  }
}

@media (min-width: 1400px) {
  .stories-section .container { 
    max-width: calc((100% - 1320px) / 2 + 1320px); 
    margin-right: 0;
  }
}
.stories-intro {
  padding-right: 4rem;
  padding-top: 1rem;
}
.stories-carousel-col {
  padding: 80px;
  padding-top: 0;
}
.stories-intro h2 { margin-bottom: 1rem; }
.stories-intro p { color: #666; margin-bottom: 2rem; }
.story-card {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.07);
  -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.07);
}
.story-card .story-thumb {
  /* height: calc(100% - 80px); */
  overflow: hidden;
}
.story-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: all 400ms ease;
}
.owl-carousel .owl-item .story-card img:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  transition: all 400ms ease;
}
.story-card::after {
  background: rgba(255, 255, 255, 0.3);
  bottom: 0;
  content: "";
  left: 50%;
  position: absolute;
  right: 51%;
  top: 0;
  opacity: 1;
  pointer-events: none;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}
.story-card:hover::after {
  left: 0;
  opacity: 0;
  right: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}
.story-content {
  padding: 1.25rem;
}
.story-content h5 { margin-bottom: 0.3rem; }
.story-content p { margin: 0; color: #666; font-size: 1.6rem; }

.owl-case-stories .owl-stage-outer .owl-item {
  padding:10px;
  padding-bottom: 20px;
}
.owl-case-stories .owl-nav {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-right:10px;
}
.owl-case-stories .owl-nav button.owl-prev, .owl-case-stories .owl-nav button.owl-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #ff7a18;
  color: #ff7a18;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;  
  transition: all 0.2s ease;
  opacity:0.5;
}
.owl-case-stories .owl-nav button span {
  color: #ff7a18;
}
.owl-case-stories .owl-nav button:hover {
  opacity:1;
}

.trusted-section {
  padding: 10rem 0;
  background: #fff;
}
.trusted-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8rem 6rem;
  align-items: center;
  padding-block: 8rem;
}
.trusted-logos img {
  max-height: 60px;
  width: 100%;
  object-fit: contain;
  transition: filter 0.2s ease, opacity 0.2s ease;
}

.cta-section {
  padding: 8rem 0;
  background: #EDF1F4;
}
.cta-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  text-align: left;
}
.cta-text h2 { margin-bottom: 0.6rem; }
.cta-text p { margin: 0; color: #666; }
.cta-row { gap: 2rem 0; }
.cta-section .contactbg {
  background: none;
  padding: 0;
}
.cta-section .contactbg .container {
  padding: 0;
}
.cta-section .contactbg .main-content {
  margin: 0;
}
.cta-section .contactbg .contact {
  display: none;
}
.cta-section .contactbg .congtact-lead {
  padding: 0;
}
.cta-section .contactbg .row {
  margin: 0;
}
.cta-section .contactbg .congtact-lead {
  flex: 0 0 100%;
  max-width: 100%;
}


@media (max-width: 1399px) {
  .stories-carousel-col {padding: 50px; padding-top: 0;}
  .avatar-top {right: 60%;}
  .avatar-left { right: 60% }
  .avatar-bottom { right: 60%;}  
.passionate-list {
  margin: 3rem 0 0;
  gap: 2rem;
}
}
@media (max-width: 1199px) {
  .ai-details-content {
    gap: 0rem 0rem;
}
.stories-carousel-col {
  padding: 40px;
  padding-top: 0;
}
.ai-heading-content {
  margin-bottom: 5rem;
}
.ai-home-icon, .passionate-icon {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  font-size: 1.8rem;
}
.ai-home-feature, .passionate-item {
  gap: 1.5rem;
}
.avatar-top {right: 70%;}
.avatar-left { right: 68% }
.avatar-bottom { right: 70%;}
.testimonial-main {
    width: 360px;
    height: 360px;
    border-width:12px;
}
.testimonial-avatars .avatar {
  width: 80px;
    height: 80px;
}
.testimonial-avatars .avatar.active {
  border-width: 4px;
  outline: 3px solid #000;
}
.stats-strip h3 {
  font-size: 4.2rem;
}
}

@media (max-width: 991px) {
  .ai-heading-content {
    margin-bottom: 4rem;
}
.ai-details-content {
  gap: 0rem 0rem;
}
.stories-carousel-col {
  padding: 30px;
  padding-top: 0;
}
.testimonial-main {
  width: 300px;
  height: 300px;
  border-width:12px;
}
.testimonial-visual-col {
  margin-top: 0rem;
}
.avatar-top {right: 60%;}
.avatar-left { right: 58% }
.avatar-bottom { right: 60%;}

.passionate-section h2 br, .stories-section h2 br {
  display: none;
}
.passionate-list {
  margin: 3rem 0 0;
}
.passionate-list {
  gap: 2rem;
}
.stats-strip h3 {
  font-size: 3.2rem;
}
}
@media (max-width: 767px) {
  .ai-home-icon, .passionate-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    font-size: 1.6rem;
  }
  .ai-home-feature, .passionate-item {
    gap: 1rem;
  }
  .testimonial-main {
    width: 240px;
    height: 240px;
    border-width:8px;
}
.testimonial-visual-col {
  margin-top: 4rem;
}
.testimonial-visual {
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.testimonial-avatars .avatar {
  width: 60px;
  height: 60px;
}
.swiper-pagination {
  display: none;
}
.testimonial-avatars {
  display: inline-flex;
    gap: 1rem;
}
.testimonial-avatars .avatar {
  width: 60px;
  height: 60px;
  top: 100%;
  right: auto;
  transform: none;
  position: relative;
}
.passionate-list {
  margin: 2rem 0 0;
  gap: 2rem;
}
.testimonial-section h2 br {
  display: none;
}
.stats-strip-item {
  padding-block: 4rem 1rem;
  border-right: none;
}
.stats-strip-item:last-child {
  border-right: none;
}
}
@media (max-width: 575px) {

  .testimonial-main {
    width: 200px;
    height: auto;
  }
  .testimonial-visual-col {
    margin-top: 4rem;
}
}

@media (max-width: 991px) {
  .ai-home-section { padding-bottom: 8rem; }
  .ai-home-hero { padding: 8rem 0 14rem; }
  .idea-section { padding: 8rem 0; }
  .core-services-section { padding: 8rem; }
  .testimonial-section { padding: 8rem 0 8rem; }
  .passionate-section { padding: 8rem 0; }
  .trusted-section { padding: 8rem 0; }
  .pb10 { padding-bottom: 8rem; }
}
@media (max-width: 575px) {
  .ai-home-section { padding-bottom: 6rem; }
  .ai-home-hero { padding: 6rem 0 14rem; }
  .idea-section { padding: 6rem 0; }
  .core-services-section { padding: 6rem; }
  .testimonial-section { padding: 6rem 0 8rem; }
  .passionate-section { padding: 6rem 0; }
  .trusted-section { padding: 6rem 0; }
  .pb10 { padding-bottom: 6rem; }
}

.portfolio-section {
  padding: 4rem 0 6rem;
  background: #111;
}
.portfolio-section h2,
.portfolio-section p {
  color: #fff;
}
.portfolio-section p { opacity: 0.6; }
.portfolio-card {
  background: #1c1c1c;
  border-radius: 8px;
  overflow: hidden;
}
.portfolio-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.portfolio-content {
  padding: 1.2rem;
}
.portfolio-content h5,
.portfolio-content p {
  color: #fff;
}
.portfolio-content p { opacity: 0.6; }

.white-new-bg {
  background: #fff url("../images/contct-about-bg.png") right bottom / 220px auto no-repeat;
  padding: 4rem;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1);
}
.white-new-bg .section-tag {
  color: #ff7a18;
  text-transform: uppercase;
  font-size: 1.2rem;
  letter-spacing: 0.09em;
  margin-bottom: 0.35rem;
  font-weight: 600;
}
.white-new-bg h3 {
  margin-bottom: 4rem;
}
.white-new-bg p {
  color: #666;
  font-size: 1.6rem;
  margin-bottom: 2rem;
}

.hire-developers {
  padding: 10rem 0 4rem;
  background: #fff;
}
.hire-developers .section-tag { margin-bottom: 0.4rem; }
.hire-developers h2 { margin-bottom: 1.2rem; }
.hire-developers p { color: #666; }
.hire-card {
  background: #fff url(../images/icon-lines-3.png) top left /contain no-repeat;
  padding: 4rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: background 0.25s ease, color 0.25s ease;
  height: 100%;
}
.hire-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #111 url("../images/shape-1.jpg") center center / cover no-repeat;
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 0;
}

.hire-card > * { position: relative; z-index: 2; }
.hire-card-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 5rem;
  font-weight: 500;
  color: rgba(0,0,0,0.08);
}
.hire-card h6 { margin-bottom: 0.6rem; }
.hire-card p { margin: 0; color: #666; }
.hire-card:hover {
  color: #fff;
}
.hire-card:hover::before { opacity: 1; }
.hire-card:hover::after { opacity: 0.28; }

.hire-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #ff7a18;
  margin-bottom: 3rem;
  padding: 20px;
}
.hire-card-icon i { color:#fff; font-size: 2.4rem; }
.hire-card:hover .hire-card-icon { background: #ff7a18; }
.hire-card:hover p { color: rgba(255,255,255,0.8); }
.hire-card:hover h6 { color: #fff; }
.hire-card:hover .hire-card-number { color: rgba(255,255,255,0.35); }
.hire-content-block {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 4rem;
  background: #fff;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
.hire-card-col { display: flex; }
.hire-card-col .hire-card { flex: 1; }
.hire-content-block p { margin: 0; color: #666; }

@media (max-width: 991px) {
  .hire-content-block { align-items: flex-start; text-align: left; }
}
@media (max-width: 575px) {
  .hire-content-block { padding: 2rem; }
}
@media (max-width: 1399px) {
  .idea-features {
    width:100%;
  }
}


@media (max-width: 991px) {  
  .idea-features {width:60%;}
  .idea-logos { grid-template-columns: repeat(3, 1fr); }
  .trusted-logos { grid-template-columns: repeat(3, 1fr); }
  .work-culture-card { flex-direction: column; align-items: flex-start; }
  .work-culture-thumb { width: 100%; height: 160px; flex: 0 0 auto; }
  .ceo-message-section { margin-top: -40px; }
  .ceo-photo { width: 100%; aspect-ratio: 1 / 1; height: auto; }
  .stories-section { background-size: 100% 100%; }
  .stories-carousel-col { margin-right: 0; }
  .stats-strip-item {
    padding-block: 5rem 1rem;
  }
  .ceo-message-section {
    transform: translateY(-40%);
  }
}
@media (max-width: 767px) {
  .idea-features {width:80%;} 
  .ceo-card { flex-direction: column; }  
  .ceo-message-section {
    transform: translateY(-15%);
  }

  .owl-case-stories .owl-nav {
    justify-content: flex-start;
    margin-left: 10px;
  }
  .stories-section>.container>.row {
    row-gap: 3rem;
  }
  .white-new-bg {
    padding: 3rem;
  }
}
@media (max-width: 575px) {
  .idea-features {width:100%;}
  .idea-logos, .trusted-logos { grid-template-columns: repeat(2, 1fr); }
  .testimonial-card img { width: 120px; height: 120px; }
  .accolades img { max-height: 40px; }
  .ceo-message-section .container {
    width: 90%;
  }  
  .white-new-bg {
    padding: 2rem;
  }
}



* ------------------------Ramranjan css------------------- */



/* ==========================================
   BASE STYLES (Desktop & General)
   ========================================== */

   .wa-services-section { padding: 60px 0; background-color: #ffffff; }
   .wa-services-title { font-weight: 800; font-size: 36px; color: #000000; margin-bottom: 20px; line-height: 1.2; }
   .wa-services-description { font-size: 18px; color: #666666; line-height: 1.6; max-width: 850px; margin: 0 auto; }
   
   .wam-main-wrapper { padding: 80px 0; background-color: #ffffff; }
   .wam-header-block { margin-bottom: 60px; }
   .wam-main-title { font-size: 38px; font-weight: 800; color: #000; margin-bottom: 20px; }
   .wam-main-subtitle { font-size: 18px; color: #666; max-width: 800px; margin: 0 auto; line-height: 1.6; }
   
   .wam-service-card { background: #fff; border: 1px solid #f2f2f2; transition: all 0.3s ease; height: 100%; }
   .wam-service-card:hover { box-shadow: 0 15px 45px rgba(0,0,0,0.07); transform: translateY(-5px); }
   .wam-img-container { position: relative; padding: 15px 15px 0 15px; }
   .wam-feature-img { width: 100%; height: auto; display: block; }
   
   .wam-icon-sticker-wrap { position: absolute; bottom: -12px; left: 35px; z-index: 5; }
   .wam-icon-sticker-box { background-color: #ff6a00; width: 70px; height: 70px; display: flex; align-items: center; justify-content: center; position: relative; z-index: 2; }
   .wam-icon-sticker-box img { width: 35px; filter: brightness(0) invert(1); }
   .wam-ribbon-tail-l { position: absolute; left: -12px; bottom: 0; border-top: 12px solid #d45900; border-left: 12px solid transparent; }
   .wam-ribbon-tail-r { position: absolute; right: -12px; bottom: 0; border-top: 12px solid #d45900; border-right: 12px solid transparent; }
   
   .wam-card-content { padding: 50px 25px 30px; }
   .wam-item-title { font-size: 20px; font-weight: 700; color: #222; margin-bottom: 12px; }
   .wam-item-desc { font-size: 15px; color: #777; line-height: 1.5; margin-bottom: 0; }
   .wam-grid-block { background-color: #ffffff; padding-bottom: 100px; }
   
   .wam-tabs-section { padding: 80px 0; background-image: url(../images/rec-backing.png) !important; background-size: cover; background-repeat: no-repeat; padding-bottom: 100px; }
   .wam-tabs-main-title { font-size: 32px; font-weight: 800; color: #1a1a1a; }
   .wam-tabs-main-subtitle { color: #666; font-size: 18px; }
   .wam-tabs-nav { display: flex; background: #e9ecef; border-radius: 12px; overflow: hidden; margin-bottom: 50px; max-width: 1100px; margin-left: auto; margin-right: auto; }
   .wam-tab-btn { flex: 1; border: none; outline: none; padding: 35px 25px; cursor: pointer; font-weight: 700; font-size: 16px; transition: 0.3s; background: transparent; color: #333; }
   .wam-tab-btn.active { background: #ff6a00; color: #fff; }
   
   .wam-tab-content { display: none; animation: wamFadeIn 0.5s ease; }
   .wam-tab-content.active { display: block; }
   .wam-tech-icons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 20px; }
   .wam-tech-icons img { width: 60px; height: auto; }
   .wam-tab-description { font-size: 18px; line-height: 1.8; color: #444; }
   
   .wam-faq-wrapper { padding: 60px 0; background-color: #fff; }
   .wam-faq-main-title { font-size: 32px; font-weight: 800; margin-bottom: 40px; color: #000; }
   .wam-faq-container { max-width: 900px; margin: 0 auto; }
   .wam-faq-item { margin-bottom: 15px; border: 1px solid #eee; box-shadow: 0 2px 10px rgba(0,0,0,0.05); transition: all 0.3s ease; }
   .wam-faq-header { padding: 18px 25px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; background-color: #fff; transition: background 0.3s; }
   .wam-faq-question { font-weight: 700; font-size: 16px; color: #000; }
   .wam-faq-icon { position: relative; width: 20px; height: 20px; }
   .wam-faq-icon::before, .wam-faq-icon::after { content: ''; position: absolute; background-color: #000; transition: transform 0.3s; }
   .wam-faq-icon::before { width: 14px; height: 2px; top: 9px; left: 3px; }
   .wam-faq-icon::after { width: 2px; height: 14px; top: 3px; left: 9px; }
   
   .wam-faq-item.active { border-color: #ff6a00; }
   .wam-faq-item.active .wam-faq-header { background-color: #ff6a00; }
   .wam-faq-item.active .wam-faq-question { color: #fff; }
   .wam-faq-item.active .wam-faq-icon::before, .wam-faq-item.active .wam-faq-icon::after { background-color: #fff; }
   .wam-faq-item.active .wam-faq-icon::after { transform: rotate(90deg); opacity: 0; }
   .wam-faq-body { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0, 1, 0, 1); background-color: #fff; }
   .wam-faq-item.active .wam-faq-body { max-height: 1000px; transition: max-height 0.4s ease-in-out; }
   .wam-faq-content { padding: 25px; color: #555; line-height: 1.8; }
   .wam-faq-content ul { margin-top: 15px; list-style: none; padding-left: 0; }
   .wam-faq-content li { position: relative; padding-left: 20px; margin-bottom: 8px; }
   .wam-faq-content li::before { content: "•"; position: absolute; left: 0; color: #999; }
   
   .ui-process-section { padding: 100px 20px; background: #fff; }
   .ui-process-container { max-width: 1200px; margin: auto; display: flex; gap: 10px; flex-wrap: wrap; }
   .ui-process-card { width: 220px; height: 160px; background-image: url('../images/pattern.png'); position: relative; display: flex; align-items: center; justify-content: center; flex-direction: column; box-shadow: 0 5px 10px rgba(0,0,0,0.10); cursor: pointer; transition: .4s; }
   .ui-process-icon-box { position: absolute; top: -40px; width: 90px; height: 90px; background: #e8e8e8; display: flex; align-items: center; justify-content: center; transition: .4s; }
   .ui-process-icon-box img { width: 40px; position: absolute; transition: .3s; }
   .ui-icon-normal { opacity: 1; }
   .ui-icon-hover { opacity: 0; }
   .ui-process-card:hover .ui-icon-normal { opacity: 0; }
   .ui-process-card:hover .ui-icon-hover { opacity: 1; }
   .ui-process-card:hover .ui-process-icon-box { border-radius: 50%; background: #ff6a00; }
   .ui-process-title { font-size: 20px; font-weight: 600; color: #111; transition: .3s; }
   .ui-process-card::after { content: ""; position: absolute; bottom: 0; left: 0; width: 100%; height: 0; background: #000; transition: .4s; z-index: 0; }
   .ui-process-card:hover::after { height: 100%; }
   .ui-process-card * { position: relative; z-index: 2; }
   .ui-process-card:hover .ui-process-title { color: #fff; }
   
   .wamx-resource-section { padding: 100px 20px; background: linear-gradient(135deg,#f8fafc,#eef2ff); }
   .wamx-resource-wrapper { max-width: 1200px; margin: auto; display: flex; gap: 40px; flex-wrap: wrap; justify-content: center; }
   .wamx-resource-card { width: 500px; padding: 40px; border-radius: 20px; background: rgba(255,255,255,0.7); backdrop-filter: blur(12px); box-shadow: 0 15px 35px rgba(0,0,0,0.08); transition: .4s; border: 1px solid rgba(255,255,255,0.4); position: relative; overflow: hidden; }
   .wamx-resource-card:hover { transform: translateY(-10px); box-shadow: 0 25px 60px rgba(0,0,0,0.15); }
   .wamx-resource-card::before { content: ""; position: absolute; width: 300px; height: 300px; background: radial-gradient(circle,#ff6a00,transparent); top: -120px; right: -120px; opacity: .15; transition: .4s; }
   .wamx-resource-card:hover::before { opacity: .3; }
  .wamx-resource-icon { font-size: 34px; background: linear-gradient(135deg,#ff6a00,#ff6a00); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 15px; }
   .wamx-resource-card h3 { font-size: 22px; margin-bottom: 12px; color: #1e293b; }
   .wamx-resource-card p { color: #64748b; line-height: 1.6; margin-bottom: 20px; min-height: 210px; }
   .wamx-feature-list { list-style: none; padding: 0; }
   .wamx-feature-list li { padding-left: 30px; position: relative; margin-bottom: 12px; color: #1e293b; }
   .wamx-feature-list li::before { content: "✔"; position: absolute; left: 0; top: 0; width: 20px; height: 20px; border-radius: 50%; background: linear-gradient(135deg,#ff6a00,#ff6a00); color: white; font-size: 12px; display: flex; align-items: center; justify-content: center; }
   
   .core-services-grid.servies-grid-core { grid-template-columns: repeat(4, minmax(0, 1fr)); }
   
   .expertise-section { padding: 60px 20px !important; background-color: #ffffff; text-align: center; }
   .expertise-container { max-width: 900px; margin: 0 auto; }
   .expertise-subtitle { display: block; color: #FF7A00; font-size: 16px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 15px; }
   .expertise-title { color: #000000; font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
   .expertise-section .section-tag { margin-bottom: 0.35rem; }
   .expertise-section .expertise-description { color: #6c757d; font-size: 18px; line-height: 1.6; font-weight: 400; margin: 0 auto; max-width: 700px; }
   
   .app-services-section { padding: 0px 15px 80px 15px; background-color: #fcfcfc; }
  /* Desktop: 3 cards per row */
  html body .app-services-section .app-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
  }
   .app-service-card { background: #ffffff; position: relative; border-radius: 4px; padding: 50px 35px; box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08); transition: all 0.4s ease; overflow: hidden; }
   .app-service-card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: linear-gradient(45deg, #f8f8f8 25%, transparent 25%), linear-gradient(-45deg, #f8f8f8 25%, transparent 25%); background-size: 40px 40px; opacity: 0.4; z-index: 0; }
   .app-service-inner { position: relative; z-index: 1; }
   .app-service-icon-wrapper { width: 75px; height: 75px; background-color: #FF6A00; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 25px; box-shadow: 0 8px 20px rgba(255, 106, 0, 0.3); }
   .app-service-icon-wrapper svg { width: 35px; height: 35px; }
   .app-service-title { font-weight: 700; color: #111; margin-bottom: 18px; }
   .app-service-text { line-height: 1.7; color: #555; margin: 0; }
   .app-service-card:hover { transform: translateY(-12px); box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12); }
   
   .dev-tabs-section { padding: 80px 20px; background-color: #EDF1F4; }
   .dev-tabs-container { max-width: 1140px; margin: 0 auto; }
   .dev-tabs-header { text-align: center; margin-bottom: 40px; }
   .dev-tabs-header .section-tag { display: block; margin-bottom: 0.35rem; }
   .dev-tabs-subtitle { color: #ff7a00; font-size: 16px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
   .dev-tabs-main-title { font-weight: 800; color: #000; line-height: 1.2; margin-top: 10px; }
   .dev-tabs-nav { display: flex; background: #fff; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border-radius: 12px; margin-bottom: 60px; overflow: hidden; border: 1px solid #f0f0f0; }
   .dev-tab-trigger { flex: 1; padding: 40px 15px; border: none; background: transparent; font-size: 17px; font-weight: 700; color: #333; cursor: pointer; transition: all 0.3s ease; }
   .dev-tab-trigger.active { background-color: #ff7a00; color: #fff; }
   .dev-tab-trigger:active { transform: scale(0.98); background-color: #ff7a00; color: #fff; }
   .dev-tab-panel { display: none; animation: slideIn 0.4s ease-out; }
   .dev-tab-panel.active { display: block; }
   .dev-tab-grid { display: flex; align-items: center; gap: 60px; }
   .dev-tab-img-box, .dev-tab-text-box { flex: 1; }
   .dev-resp-img { width: 100%; height: auto; aspect-ratio: 900 / 640; object-fit: cover; box-shadow: 0 20px 40px rgba(0,0,0,0.1); display: block; }
   .dev-panel-title { font-weight: 800; color: #000; margin-bottom: 20px; }
   .dev-panel-desc { line-height: 1.8; color: #666; margin-bottom: 30px; }
   .dev-tech-stack { display: flex; flex-wrap: wrap; gap: 24px 16px; align-items: center; justify-content: flex-start; }
   .dev-tech-stack--five-per-row, .dev-tech-stack--six-per-row { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 24px 16px; justify-items: center; align-items: center; max-width: 100%; }
   .dev-tech-stack img { height: 40px; width: auto; filter: grayscale(0.2); transition: transform 0.3s; }
   .dev-tech-stack .dev-tech-icon-svg { display: inline-flex; align-items: center; justify-content: center; height: 40px; vertical-align: middle; transition: transform 0.3s; }
   .dev-tech-stack .dev-tech-icon-svg svg { display: block; height: 40px; width: auto; }
   .dev-tech-stack img:hover, .dev-tech-stack .dev-tech-icon-svg:hover { transform: translateY(-5px); filter: grayscale(0); }
   
   .impact-section { position: relative; background-color: #f8f9fa; padding-bottom: 100px; padding-top: 0; }
   .impact-dark-bg { background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url('https://via.placeholder.com/1920x800'); background-size: cover; background-position: center; padding: 100px 20px 250px 20px; text-align: center; color: #fff; }
   .impact-container { max-width: 1200px; margin: 0 auto; }
   .impact-subtitle { color: #fff; font-weight: 600; font-size: 16px; letter-spacing: 1px; }
   .impact-section .section-tag.section-tag--light { color: #fff; margin-bottom: 0.35rem; display: block; }
   .impact-title { color: #f2f2f2; font-weight: 800; margin: 15px 0 50px; line-height: 1.3; }
   .impact-features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; }
   .impact-feature-item { position: relative; text-align: center; }
   .impact-icon-flip { width: 100px; height: 100px; perspective: 280px; border: 1px solid #555; border-radius: 100px; padding: 5px; }
   .impact-icon-flip-inner { position: relative; width: 100%; height: 100%; transition: transform 0.6s ease; transform-style: preserve-3d; }
   .impact-feature-item:hover .impact-icon-flip-inner { transform: rotateY(180deg); }
   .impact-icon-front, .impact-icon-back { position: absolute; width: 100%; height: 100%; border-radius: 50%; display: flex; align-items: center; justify-content: center; backface-visibility: hidden; }
  .impact-icon-front { background: #fff; color: #FF7A00; }
  .impact-icon-front svg { width: 30px; height: 30px; stroke: currentColor; }
  .impact-icon-front svg * { stroke: currentColor; }
  .impact-icon-back { background: #FF7A00; border: 2px solid #FF7A00; transform: rotateY(180deg); color: #fff; }
  .impact-icon-back svg { width: 30px; height: 30px; stroke: currentColor; }
  .impact-icon-back svg * { stroke: currentColor; }
   .impact-feature-item h4, .impact-feature-item h6.impact-feature-title { margin-bottom: 10px; color: #fff; margin-top: 30px; text-align: left; font-weight: 600; text-transform: capitalize; }
   .impact-feature-item p {  font-size: 17px; font-weight: 400; line-height: 32px; letter-spacing: 0.18px; color: #fff; text-align: left; opacity: 0.9; }
   .impact-white-box-container { max-width: 1320px; margin: -150px auto 0; padding: 0 10px; position: relative; z-index: 10; }
   html body .impact-skill-info span:first-child { color: #000 !important; font-weight: 800; }
   .impact-white-card { background: #fff; padding: 60px; box-shadow: 0 20px 60px rgba(0,0,0,0.15); border-radius: 4px; }
   .impact-card-flex { display: flex; gap: 50px; }
   .impact-card-left, .impact-card-right { flex: 1; }
   .impact-orange-label { color: #FF7A00; font-weight: 700; font-size: 16px; }
   .impact-card-title { font-weight: 800; margin: 15px 0; color: #111; }
   .impact-card-desc { font-size: 18px; color: #777; line-height: 32px; margin-bottom: 30px; }
   .impact-skill { margin-bottom: 20px; }
   .impact-skill-info { display: flex; justify-content: space-between; font-weight: 700; font-size: 14px; margin-bottom: 8px; }
   .impact-progress-bg { background: #eee; height: 8px; border-radius: 4px; }
   .impact-progress-fill { background: #FF7A00; height: 100%; border-radius: 4px; transition: width 1.2s ease-out; }
   .impact-info-block { background: #F4F5F8; padding: 20px; margin-bottom: 15px; }
   .impact-info-block h5 { font-size: 24px; margin-bottom: 8px; font-weight: 700; }
   .impact-info-block p { color: #666; margin: 0; line-height: 28px; font-weight: 400; }
   
   .cta-mobile-section { position: relative; background-color: #fff; padding-bottom: 0px; }
   .about-hero.about-page.about-main-con { background: url('../images/mobile-app banner.png'); background-repeat: no-repeat; background-size: cover; }
   .cta-hero-bg { background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url('../images/bussiness-r.png'); background-size: cover; background-position: center; padding: 120px 20px 200px; text-align: center; color: #fff; }
   .cta-main-title { font-weight: 800; margin-bottom: 20px; letter-spacing: -0.5px; color: #fff; }

/* Professional highlight animation for "WebAppMate" */
.cta-hero-bg.hero-hire-inner .cta-main-title i {
  font-style: normal;
  position: relative;
  display: inline-block;
  padding: 0 6px;
  border-radius: 8px;
}

.cta-hero-bg.hero-hire-inner .cta-main-title i::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: -0.18em;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 122, 24, 1) 50%, transparent 100%);
  transform: translateX(-120%);
  opacity: 0.0;
  animation: rjWebAppMateUnderline 2.4s ease-in-out infinite;
}

.cta-hero-bg.hero-hire-inner .cta-main-title i {
  text-shadow: 0 0 0 rgba(255, 122, 24, 0);
  animation: rjWebAppMateGlow 2.4s ease-in-out infinite;
}

@keyframes rjWebAppMateUnderline {
  0% { opacity: 0; transform: translateX(-120%); }
  20% { opacity: 1; }
  55% { opacity: 1; transform: translateX(0%); }
  100% { opacity: 0; transform: translateX(120%); }
}

@keyframes rjWebAppMateGlow {
  0% { text-shadow: 0 0 0 rgba(255, 122, 24, 0); }
  35% { text-shadow: 0 0 18px rgba(255, 122, 24, 0.35); }
  70% { text-shadow: 0 0 28px rgba(255, 122, 24, 0.18); }
  100% { text-shadow: 0 0 0 rgba(255, 122, 24, 0); }
}

/* Optional: shimmer gradient on text (only if supported) */
@supports (-webkit-background-clip: text) {
  .cta-hero-bg.hero-hire-inner .cta-main-title i {
    color: transparent;
    background-image: linear-gradient(
      90deg,
      #ffffff 0%,
      rgba(255, 255, 255, 1) 25%,
      #ff7a18 50%,
      rgba(255, 255, 255, 1) 75%,
      #ffffff 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    animation: rjWebAppMateShimmer 2.4s linear infinite;
  }
}

@keyframes rjWebAppMateShimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

   .cta-description { line-height: 32px; margin-bottom: 35px; color: #fff; }
   .cta-btn-primary { display: inline-block; background-color: #FF7A00; color: #fff; padding: 16px 35px; font-size: 14px; font-weight: 700; text-decoration: none; transition: background 0.3s ease; }
   .cta-btn-primary:hover { background-color: #e66e00; color: #fff; }
   .cta-cards-container { max-width: 1320px; margin: -100px auto 0; position: relative; z-index: 5; }
   .cta-cards-flex { display: flex; gap: 30px; }
   .cta-feature-card { flex: 1; background: #fff; padding: 35px; box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15); }
   .cta-card-inner { background: #000; background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)), url('../images/mobile-repp.jpg'); background-size: cover; padding: 30px; display: flex; align-items: center; gap: 20px; color: #fff; }
   .card-inner-cta.cta-card-inner { background-image: url('../images/mobile-erp.png'); }
   .cta-icon-box { perspective: 200px; }
   .cta-icon-box svg { width: 45px; height: 45px; transition: transform 0.4s ease, stroke 0.3s ease; transform-style: preserve-3d; }
   .cta-feature-card:hover .cta-icon-box svg { transform: rotateY(180deg); }
  /* Ensure every SVG element turns fully white on hover (paths + circles, etc.) */
  .cta-feature-card:hover .cta-icon-box svg { stroke: #fff; }
  .cta-feature-card:hover .cta-icon-box svg * { stroke: inherit; }
   .cta-card-text h4, .cta-card-text h6.cta-card-heading { font-size: 21px; font-weight: 700; margin-bottom: 8px; color: #fff; }
   .cta-card-text p { font-size: 15px; line-height: 1.5; margin: 0; color: #fff; }

  /* --------------------------------------------
     CTA mobile cards animation (Left/Right slide)
     -------------------------------------------- */
  .cta-mobile-section .cta-cards-flex .cta-feature-card {
    opacity: 0;
    will-change: transform, opacity;
  }

  /* Initial state (no animation). JS will add .cta-inview-left/right on scroll. */
  .cta-mobile-section .cta-cards-flex .cta-feature-card:nth-child(1) {
    transform: translateX(-70px) scale(0.99);
  }

  .cta-mobile-section .cta-cards-flex .cta-feature-card:nth-child(2) {
    transform: translateX(70px) scale(0.99);
  }

  .cta-mobile-section .cta-cards-flex .cta-feature-card.cta-inview-left {
    opacity: 1;
    animation: ctaCardSlideInLeft 900ms cubic-bezier(0.22, 1, 0.36, 1) 0.05s both;
  }

  .cta-mobile-section .cta-cards-flex .cta-feature-card.cta-inview-right {
    opacity: 1;
    animation: ctaCardSlideInRight 900ms cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
  }

  @keyframes ctaCardSlideInLeft {
    0% { opacity: 0; transform: translateX(-70px) scale(0.99); }
    60% { opacity: 1; transform: translateX(10px) scale(1); }
    100% { opacity: 1; transform: translateX(0) scale(1); }
  }

  @keyframes ctaCardSlideInRight {
    0% { opacity: 0; transform: translateX(70px) scale(0.99); }
    60% { opacity: 1; transform: translateX(-10px) scale(1); }
    100% { opacity: 1; transform: translateX(0) scale(1); }
  }

  @keyframes ctaCardSlideInUp {
    0% { opacity: 0; transform: translateY(30px) scale(0.99); }
    70% { opacity: 1; transform: translateY(-8px) scale(1); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
  }

  @media (prefers-reduced-motion: reduce) {
    .cta-mobile-section .cta-cards-flex .cta-feature-card {
      animation: none !important;
      opacity: 1 !important;
      transform: none !important;
    }
  }
   
  .faq-custom-section { padding: 80px 20px; background-color: #ffffff; overflow-anchor: none; }
   .faq-header { text-align: center; margin-bottom: 40px; }
   .faq-subtitle { color: #FF7A00; font-size: 16px; font-weight: 700; letter-spacing: 1.5px; }
   .faq-main-title { font-weight: 800; margin-top: 10px; color: #000; }
  .faq-wrapper { display: flex; flex-direction: column; gap: 15px; overflow-anchor: none; max-width: 100%; }
   .faq-item { background: #fff; box-shadow: 0 4px 15px rgba(0,0,0,0.06); border-radius: 4px; overflow: hidden; transition: all 0.3s ease; max-width: 100%; }
   .faq-question { padding: 22px 50px 22px 30px; font-size: 20px; font-weight: 700; cursor: pointer; color: #000; border-bottom: 1px solid #FF7114; background: #FFF; box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.10); position: relative; min-height: 0; word-wrap: break-word; }
   .faq-toggle-icon { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font-size: 25px; font-weight: 600; color: #000; flex-shrink: 0; }
   .faq-toggle-icon::before { content: '+'; }
   .faq-item.active .faq-toggle-icon::before { content: '−'; }
   .faq-item.active .faq-question { background: #FF7A00; color: #fff; }
   .faq-item.active .faq-question .faq-toggle-icon { color: #fff; }
 .faq-answer {
   display: none;
   max-height: 0;
   overflow: hidden;
   transition: max-height 0.35s ease;
   will-change: max-height;
 }
 /* Active state uses display:block (JS controls max-height for smooth animation) */
 .faq-item.active .faq-answer { display: block; }
   .faq-answer-inner { padding: 25px 30px; font-size: 16px; line-height: 1.6; color: #777; background: #fff; }
   
   @keyframes wamFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
   @keyframes slideIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
   
   
   /* ==========================================
      MEDIA QUERY: 1200px (Desktop Large)
      ========================================== */
   @media (min-width: 1200px) {
       /* Add specific 1200px styles here if needed */
   }
   
   
   /* ==========================================
      MEDIA QUERY: 991px (Tablets / Small Laptops)
      ========================================== */
   @media (max-width: 991px) {
       .wa-services-title { font-size: 30px; }
       .wa-services-description { font-size: 16px; }
   
       /* Tablet: 2 columns for services grid */
       html body .app-services-section .app-services-grid {
         grid-template-columns: repeat(2, minmax(0, 1fr));
         gap: 24px;
       }
   
       .dev-tab-grid { flex-direction: column; gap: 40px; }
       .dev-tabs-main-title { font-size: 32px; }
       .dev-panel-title { font-size: 28px; }
   
       .impact-card-flex { flex-direction: column; }
       .impact-white-card { padding: 40px 25px; }
   
       .cta-main-title { font-size: 36px; }
       .cta-cards-flex { flex-direction: column; }
       .cta-hero-bg { padding-bottom: 150px; }

  /* When cards stack, switch to slide-up via classes added by JS. */
  .cta-mobile-section .cta-cards-flex .cta-feature-card {
    opacity: 0;
    transform: translateY(30px) scale(0.99);
  }

  .cta-mobile-section .cta-cards-flex .cta-feature-card.cta-inview-left {
    animation: ctaCardSlideInUp 850ms cubic-bezier(0.22, 1, 0.36, 1) 0.05s both;
    opacity: 1;
  }

  .cta-mobile-section .cta-cards-flex .cta-feature-card.cta-inview-right {
    animation: ctaCardSlideInUp 850ms cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
    opacity: 1;
  }
   
       .wamx-resource-wrapper { flex-direction: column; }
       .wamx-resource-card { width: 100%; }
       .faq-custom-section { padding: 60px 20px; }
       .faq-main-title { font-size: 28px; }
   }
   
   
   /* ==========================================
      MEDIA QUERY: 768px / 767px (Tablets / Mobile)
      ========================================== */
   @media (max-width: 768px) {
       .wa-services-section { padding: 40px 15px; }
       .wa-services-title { font-size: 26px; }
       .wa-services-description { font-size: 15px; line-height: 1.5; }
   
       .wam-main-title { font-size: 28px; }
       .wam-main-subtitle { font-size: 16px; }
       .wam-icon-sticker-box { width: 60px; height: 60px; }
   
       .wam-tabs-nav { flex-direction: column; }
       .wam-tab-btn { border-bottom: 1px solid #ddd; }
       .wam-tech-icons { justify-items: center; margin-bottom: 30px; }
       .wam-tab-description { text-align: center; font-size: 16px; }
   
       .wam-faq-main-title { font-size: 26px; }
       .wam-faq-question { font-size: 14px; }
   
       .ui-process-card { width: 45%; }
   
       .app-services-section { padding: 50px 20px; }
       /* Mobile: 1 column, full width cards */
       html body .app-services-section .app-services-grid {
         grid-template-columns: 1fr;
         gap: 20px;
       }
       .app-service-card { padding: 40px 25px; }
       .app-service-title { font-size: 22px; }
   
       .dev-tabs-nav { flex-direction: column; }
       .dev-tab-trigger { border-bottom: 1px solid #f0f0f0; padding: 20px; }
   
       .impact-title { font-size: 28px; }
       .impact-dark-bg { padding-bottom: 200px; }
       .impact-white-box-container { margin-top: -100px; }
   
       .cta-main-title { font-size: 28px; }
       .cta-cards-container { margin-top: -80px; }
       .cta-card-inner { flex-direction: column; text-align: center; }
   
       .faq-custom-section { padding: 50px 15px; }
       .faq-header { margin-bottom: 28px; }
       .faq-main-title { font-size: 26px; line-height: 1.3; }
       .faq-question { padding: 16px 48px 16px 18px; font-size: 15px; line-height: 1.4; }
       .faq-toggle-icon { right: 14px; font-size: 22px; }
       .faq-answer-inner { padding: 18px 18px; font-size: 15px; }
   }
   
   
   /* ==========================================
      MEDIA QUERY: 576px (Small Mobile)
      ========================================== */
   @media (max-width: 576px) {
       .dev-tech-stack--five-per-row, 
       .dev-tech-stack--six-per-row { 
           grid-template-columns: repeat(3, minmax(0, 1fr)); 
           gap: 18px 12px; 
       }
       .app-services-section { padding: 40px 15px; }
       html body .app-services-section .app-services-grid { gap: 16px; }
       .app-services-section .app-service-card { padding: 28px 20px !important; }
       .app-services-section .app-service-icon-wrapper { width: 60px !important; height: 60px !important; margin-bottom: 18px !important; padding: 14px !important; }
       .app-services-section .app-service-icon-wrapper svg { width: 28px !important; height: 28px !important; }
       .app-services-section .app-service-title { font-size: 18px; }
       .app-services-section .app-service-text { font-size: 14px; }
       .faq-custom-section { padding: 40px 12px; }
       .faq-wrapper { gap: 12px; }
       .faq-main-title { font-size: 22px; }
       .faq-question { padding: 14px 44px 14px 14px; font-size: 14px; }
       .faq-toggle-icon { right: 12px; font-size: 20px; }
       .faq-answer-inner { padding: 14px; font-size: 14px; line-height: 1.5; }
   }
   
   
   /* ==========================================
      MEDIA QUERY: 480px (Extra Small Mobile)
      ========================================== */
   @media (max-width: 480px) {
       .ui-process-card { width: 100%; }
   }






   /* ----------------Hire Developer CSS------------------------ */

/* Container and Layout */
.wp-custom-section {
  padding: 80px 5%;
  background-color: #F3F4F7;
}

.wp-custom-container {
  max-width: 1305px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

/* Left Image Styling */
.wp-custom-image-col {
  flex: 1;
}

.wp-custom-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Right Content Styling */
.wp-custom-content-col {
  flex: 1.2;
}

.wp-custom-subtitle {
  color: #ff6a00;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 15px;
}

.wp-custom-title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
  color: #000;
}

.wp-custom-description {
  color: #777;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 90%;
}

/* Features and Side Card Grid */
.wp-custom-features-area {
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  gap: 30px;
  align-items: center;
}

.wp-custom-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.wp-custom-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.wp-custom-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.wp-custom-text h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.wp-custom-text p {
  font-size: 13px;
  color: #888;
}

/* Side Card Component */
.wp-custom-side-card {
  padding: 30px 20px;
  position: relative;
  background: #F4F5F8;
  box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.10);
  overflow: hidden; /* Needed for ::before slide-in */
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.wp-custom-side-card:hover {
  transform: translateY(-8px);
  background: #ffffff;
  box-shadow: none;
}

/* Hover Image Slide-In (matches the lower hire-card effect) */
.wp-custom-side-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #111 url("../images/shape-1.jpg") center center / cover no-repeat;
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.45s ease, opacity 0.45s ease;
  z-index: 0;
}

.wp-custom-card-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #ff6a00;
  transition: filter 0.25s ease, background-position 0.25s ease;
  z-index: 2;
}

.wp-custom-side-card h4,
.wp-custom-side-card .wp-custom-more {
  position: relative;
  z-index: 2;
}

.wp-custom-side-card:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.wp-custom-side-card h4 {
  font-size: 15px;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 15px;
  transition: color 0.25s ease, transform 0.25s ease;
}

.wp-custom-side-card:hover h4 {
  color: #fff;
  transform: translateY(-2px);
}

.wp-custom-more {
  color: #ff6a00;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  display: inline-block;
  position: relative;
  padding-right: 2px;
  transition: color 0.25s ease, transform 0.25s ease;
}

.wp-custom-more::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff6a00 0%, #ff7114 55%, #ff6a00 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.wp-custom-side-card:hover .wp-custom-more::after {
  transform: scaleX(1);
}

.wp-custom-more:hover {
  color: #000;
  transform: translateX(4px);
}

/* Keep link readable over hover image */
.wp-custom-side-card:hover .wp-custom-more {
  color: #fff;
}
.wp-custom-side-card:hover .wp-custom-more:hover {
  color: #fff;
}

.wp-custom-side-card:hover .wp-custom-card-border {
  background: linear-gradient(90deg, #ff6a00 0%, #ff7114 50%, #ff6a00 100%);
  background-size: 200% 100%;
  animation: wpCustomBorderSweep 0.55s ease-in-out;
}

@keyframes wpCustomBorderSweep {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Button */
.wp-custom-btn {
  display: inline-block;
  background: #111;
  color: #fff;
  border: 0;
  padding: 16px 35px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  background-image: linear-gradient(90deg, #FF7114 0%, #FF7114 50%, #111 50%, #111 100%);
  background-size: 200% 100%;
  background-position: 100% 0;
  transition: background-position 0.3s ease, color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.wp-custom-btn:hover {
  color: #fff;
  background-position: 0 0;
}

/* Desktop megamenu: hover open — scoped so touch/mobile use Bootstrap click toggles only */
@media (min-width: 992px) and (hover: hover) and (pointer: fine) {
  html body header.main-header .navbar .nav-item.dropdown:hover > .dropdown-menu {
    display: block !important;
  }
}

/* --- Base Setup --- */
.wp-hire-section {
  padding: 100px 5%;
  background-color: #fff;
  color: #333;
}

.wp-hire-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Header Styling --- */
.wp-hire-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 40px;
}

.wp-hire-title-col {
  flex: 1;
}

.wp-hire-desc-col {
  flex: 1;
}

.wp-hire-badge {
  color: #ff6a00;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 15px;
}

.wp-hire-main-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  color: #000;
}

.wp-hire-desc-col p {
  font-size: 15px;
  color: #888;
  line-height: 1.7;
  margin-bottom: 10px;
}

/* --- Grid & Card Styling --- */
.wp-hire-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.wp-hire-card {
  background: #fff url(../images/icon-lines-3.png) top left / contain no-repeat;
  padding: 40px 30px;
  border-radius: 0;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  transition: background 0.45s ease, color 0.45s ease, box-shadow 0.45s ease, transform 0.45s ease;
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.wp-hire-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #111 url("../images/shape-1.jpg") center center / cover no-repeat;
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.45s ease, opacity 0.45s ease;
  z-index: 0;
}

.wp-hire-card > * {
  position: relative;
  z-index: 2;
}

.wp-hire-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 55px rgba(0,0,0,0.1);
  color: #fff;
  transition-delay: 0.15s;
}

.wp-hire-card:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.wp-hire-card:hover h3 {
  color: #fff;
}

.wp-hire-card:hover p {
  color: rgba(255, 255, 255, 0.8);
}

.wp-hire-card-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.wp-hire-icon-box {
  width: 70px;
  height: 70px;
  background-color: #ff6a00;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wp-hire-icon-box svg {
  width: 32px;
  height: 32px;
}

.wp-hire-icon-box i {
  font-size: 32px;
  color: #fff;
  line-height: 1;
}

.wp-hire-card h3 {
  color: #000;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}

.wp-hire-card p {
  font-size: 14px;
  color: #777;
  line-height: 1.8;
}

/* Unique Wrapper Styling */
.rj-dev-wrapper {
  padding: 80px 20px;
  background-color: #f4f7f9;
  background-image: url('../images/sear-glass.png'); 
  background-size: cover;
  background-repeat: no-repeat;
}

.rj-dev-container {
  max-width: 1140px;
  margin: 0 auto;
}

/* Header Styling */
.rj-dev-header {
  text-align: center;
  margin-bottom: 60px;
}

.rj-dev-sub-badge {
  color: #ff7d32;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 10px;
}

.rj-dev-main-title {
  font-size: 42px;
  font-weight: 800;
  color: #000;
  margin: 0;
}

/* Grid System */
.rj-dev-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
}

/* Individual Item */
.rj-dev-item {
  display: flex;
  align-items: flex-start;
}

.rj-dev-num-circle {
  background-color: #000;
  color: #fff;
  width: 65px;
  height: 65px;
  min-width: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  margin-right: 25px;
  transition: background-color 0.35s ease, transform 0.35s ease;
}

/* Hover: circle turns orange with subtle animation */
.rj-dev-item:hover .rj-dev-num-circle {
  background-color: #ff7a18;
  transform: translateY(-2px) scale(1.06);
  animation:  0.6s ease both;
}

@keyframes rjCircleOrangePulse {
  0% { box-shadow: 0 0 0 rgba(255, 122, 24, 0.0); }
  40% { box-shadow: 0 10px 25px rgba(255, 122, 24, 0.35); }
  100% { box-shadow: 0 0 0 rgba(255, 122, 24, 0.0); }
}

.rj-dev-item-title {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin: 0 0 10px 0;
  transition: color 0.35s ease, transform 0.35s ease, opacity 0.35s ease;
}

/* Title text animation on hover */
.rj-dev-item:hover .rj-dev-item-title {
  color: #ff7a18;
  transform: translateY(-3px);
  animation: rjTitleRise 0.45s ease both;
}

@keyframes rjTitleRise {
  from { opacity: 0.65; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(-3px); }
}

.rj-dev-item-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.cta-cards-container.hire-contaner {
  max-width: 1305px;
  margin: 0px auto 0;
  position: relative;
  z-index: 5;
  top: 50px;
}

.cta-hero-bg.hero-hire-inner {
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url(../images/stock-web.png);
  background-size: cover;
  background-position: center;
  padding: 120px 20px 100px;
  text-align: center;
  color: #fff;
}

/* ============================================================
   2. MEDIA QUERIES (In Sequence)
   ============================================================ */

/* --- 480px --- */
@media (max-width: 480px) {
  .rj-dev-item {
      flex-direction: row; 
  }
  .rj-dev-num-circle {
      width: 50px;
      height: 50px;
      min-width: 50px;
      font-size: 16px;
      margin-right: 15px;
  }
  .rj-dev-item-title {
      font-size: 18px;
  }
}

/* --- 768px --- */
@media (max-width: 768px) {
  .wp-custom-container { flex-direction: column; }
  .wp-custom-features-area { grid-template-columns: 1fr; }
  .wp-custom-side-card { max-width: 300px; }

  .wp-hire-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
  }
  .wp-hire-grid { grid-template-columns: 1fr !important; }
  .wp-hire-main-title { font-size: 32px; }
}

/* --- 991px --- */
@media (max-width: 991px) {
  .rj-dev-grid {
      grid-template-columns: 1fr; 
      gap: 30px;
  }
  .rj-dev-main-title {
      font-size: 32px;
  }
}

/* --- 1200px --- */
@media (max-width: 1200px) {
  .wp-custom-container { gap: 30px; }
  .wp-custom-title { font-size: 34px; }
  
  .wp-hire-main-title { font-size: 40px; }
  .wp-hire-grid { grid-template-columns: repeat(2, 1fr); }
}


/* -----------------Case Studies----------------- */



.portfolio-section-wrapper {
    /* Top half light grey, bottom half white like the screenshot */
    background: linear-gradient(to bottom, #f1f5f9 30%, #ffffff 30%);
    padding: 100px 0;
}

.portfolio-section-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.portfolio-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.portfolio-section-badge {
    color: #ff5c26;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.portfolio-section-main-title {
    font-size: 48px;
    font-weight: 800;
    color: #000;
    margin: 0;
    letter-spacing: -1px;
}

/* Grid matching the 3x2 layout */
.portfolio-section-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.portfolio-section-card {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.portfolio-section-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.portfolio-section-img-container {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.portfolio-section-img-container img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    transition: transform 0.6s ease;
}

.portfolio-section-card:hover .portfolio-section-img-container img {
    transform: scale(1.05);
}

.portfolio-section-info {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    gap: 18px;
    transition: background-color 0.35s ease;
}

.portfolio-section-card:hover .portfolio-section-info {
    background: #f1f5f9;
}

.portfolio-section-text-group {
    /* Prevent long titles/subtitles from forcing overflow in flex row */
    min-width: 0;
    flex: 1;
}

.portfolio-section-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 6px 0;
    transition: font-size 0.35s ease, color 0.35s ease;
}

.portfolio-section-card:hover .portfolio-section-card-title {
    font-size: 24px;
    color: #0f172a;
}

.portfolio-section-card-sub {
    font-size: 15px;
    color: #64748b;
    margin: 0;
    font-weight: 500;
    transition: color 0.35s ease;
    min-height: 50px;
}

.portfolio-section-card:hover .portfolio-section-card-sub {
    color: #475569;
}

/* Arrow Button Styling */
.portfolio-section-arrow-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

a.portfolio-section-arrow-btn {
    text-decoration: none;
    color: inherit;
    flex-shrink: 0;
}

.portfolio-section-arrow-btn span {
    font-size: 22px;
    color: #ff5c26;
    line-height: 1;
    display: inline-block;
    transition:
        transform 0.35s ease,
        color 0.35s ease;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .portfolio-section-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .portfolio-section-main-title {
        font-size: 38px;
    }
    .portfolio-section-info {
        padding: 20px 22px;
    }
    .portfolio-section-card-title {
        font-size: 20px;
    }
    .portfolio-section-card:hover .portfolio-section-card-title {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .portfolio-section-grid {
        grid-template-columns: 1fr;
    }
    .portfolio-section-wrapper {
        background: #f1f5f9; /* Flat background for mobile */
        padding: 60px 0;
    }
    .portfolio-section-main-title {
        font-size: 32px;
    }
    .portfolio-section-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 18px 18px;
    }
    .portfolio-section-arrow-btn {
        align-self: flex-end;
    }
    .portfolio-section-card-title {
        font-size: 20px;
    }
    .portfolio-section-card:hover .portfolio-section-card-title {
        font-size: 21px;
    }
    .portfolio-section-card-sub {
        font-size: 14px;
    }
}

/* -------- case-studies1.php: scroll animations (Intersection Observer + classes) -------- */
/* Progressive enhancement: hide-before-animation only when html.wam-js is set (tiny inline script on page). */
html.wam-js .case-studies-anim-page .cs-animate--header-stagger:not(.cs-animate--inview) .portfolio-section-badge,
html.wam-js .case-studies-anim-page .cs-animate--header-stagger:not(.cs-animate--inview) .portfolio-section-main-title {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
}

html.wam-js .case-studies-anim-page .cs-animate--header-stagger.cs-animate--inview .portfolio-section-badge {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition:
        opacity 0.8s ease-in-out,
        transform 0.8s ease-in-out;
}

html.wam-js .case-studies-anim-page .cs-animate--header-stagger.cs-animate--inview .portfolio-section-main-title {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition:
        opacity 0.85s ease-in-out,
        transform 0.85s ease-in-out;
    transition-delay: 0.12s;
}

/* Portfolio cards: staggered fade-up; images zoom from slightly enlarged to 1 */
html.wam-js .case-studies-anim-page .cs-animate--card-stagger:not(.cs-animate--inview) .portfolio-section-card {
    opacity: 0;
    transform: translate3d(0, 32px, 0);
}

html.wam-js .case-studies-anim-page .cs-animate--card-stagger:not(.cs-animate--inview) .portfolio-section-img-container img {
    transform: scale(1.07);
}

html.wam-js .case-studies-anim-page .cs-animate--card-stagger.cs-animate--inview .portfolio-section-card {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition:
        opacity 0.8s ease-in-out,
        transform 0.8s ease-in-out;
}

html.wam-js .case-studies-anim-page .cs-animate--card-stagger.cs-animate--inview .portfolio-section-card:nth-child(1) {
    transition-delay: 0ms;
}
html.wam-js .case-studies-anim-page .cs-animate--card-stagger.cs-animate--inview .portfolio-section-card:nth-child(2) {
    transition-delay: 75ms;
}
html.wam-js .case-studies-anim-page .cs-animate--card-stagger.cs-animate--inview .portfolio-section-card:nth-child(3) {
    transition-delay: 150ms;
}
html.wam-js .case-studies-anim-page .cs-animate--card-stagger.cs-animate--inview .portfolio-section-card:nth-child(4) {
    transition-delay: 225ms;
}
html.wam-js .case-studies-anim-page .cs-animate--card-stagger.cs-animate--inview .portfolio-section-card:nth-child(5) {
    transition-delay: 300ms;
}
html.wam-js .case-studies-anim-page .cs-animate--card-stagger.cs-animate--inview .portfolio-section-card:nth-child(6) {
    transition-delay: 375ms;
}

html.wam-js .case-studies-anim-page .cs-animate--card-stagger.cs-animate--inview .portfolio-section-img-container img {
    transform: scale(1);
    transition: transform 0.95s ease-in-out;
}

html.wam-js .case-studies-anim-page .cs-animate--card-stagger.cs-animate--inview .portfolio-section-card:nth-child(1) .portfolio-section-img-container img {
    transition-delay: 0ms;
}
html.wam-js .case-studies-anim-page .cs-animate--card-stagger.cs-animate--inview .portfolio-section-card:nth-child(2) .portfolio-section-img-container img {
    transition-delay: 75ms;
}
html.wam-js .case-studies-anim-page .cs-animate--card-stagger.cs-animate--inview .portfolio-section-card:nth-child(3) .portfolio-section-img-container img {
    transition-delay: 150ms;
}
html.wam-js .case-studies-anim-page .cs-animate--card-stagger.cs-animate--inview .portfolio-section-card:nth-child(4) .portfolio-section-img-container img {
    transition-delay: 225ms;
}
html.wam-js .case-studies-anim-page .cs-animate--card-stagger.cs-animate--inview .portfolio-section-card:nth-child(5) .portfolio-section-img-container img {
    transition-delay: 300ms;
}
html.wam-js .case-studies-anim-page .cs-animate--card-stagger.cs-animate--inview .portfolio-section-card:nth-child(6) .portfolio-section-img-container img {
    transition-delay: 375ms;
}

/* CTA block: staggered headline, copy, button */
html.wam-js .case-studies-anim-page .cs-animate--cta-stagger:not(.cs-animate--inview) .cta-text h3,
html.wam-js .case-studies-anim-page .cs-animate--cta-stagger:not(.cs-animate--inview) .cta-text p,
html.wam-js .case-studies-anim-page .cs-animate--cta-stagger:not(.cs-animate--inview) .btn-banner-primary {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
}

html.wam-js .case-studies-anim-page .cs-animate--cta-stagger.cs-animate--inview .cta-text h3 {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition:
        opacity 0.8s ease-in-out,
        transform 0.8s ease-in-out;
}

html.wam-js .case-studies-anim-page .cs-animate--cta-stagger.cs-animate--inview .cta-text p {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition:
        opacity 0.8s ease-in-out,
        transform 0.8s ease-in-out;
    transition-delay: 0.1s;
}

html.wam-js .case-studies-anim-page .cs-animate--cta-stagger.cs-animate--inview .btn-banner-primary {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition:
        opacity 0.75s ease-in-out,
        transform 0.75s ease-in-out,
        background-position 0.35s ease-in-out,
        color 0.35s ease-in-out,
        border-color 0.35s ease-in-out;
    transition-delay: 0.2s;
}

/* CTA primary: hover scale + smooth color (extends global .btn-banner-primary) */
.case-studies-anim-page .case-studies-cta .btn-banner-primary:hover {
    transform: scale(1.04);
    transition:
        transform 0.35s ease-in-out,
        background-position 0.35s ease-in-out,
        color 0.35s ease-in-out,
        border-color 0.35s ease-in-out;
}

/* All cards: rest = gray circle + orange arrow; hover = orange circle + white arrow (same as reference) */
.case-studies-anim-page .portfolio-section-card:hover .portfolio-section-arrow-btn {
    transform: scale(1.08);
    background-color: #ff5c26;
}

.case-studies-anim-page .portfolio-section-card:hover .portfolio-section-arrow-btn span {
    color: #fff;
    transform: translateX(4px);
}

.case-studies-anim-page .portfolio-section-arrow-btn {
    transition:
        transform 0.35s ease-in-out,
        background-color 0.35s ease-in-out,
        box-shadow 0.35s ease-in-out;
}

/* Restore grid card hover lift (in-view transform rule is higher-specificity than base :hover) */
.case-studies-anim-page .cs-animate--card-stagger.cs-animate--inview .portfolio-section-card:hover {
    transform: translate3d(0, -8px, 0);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Optional: any block with .cs-animate--scroll.cs-animate--fade-up (single element) */
html.wam-js .case-studies-anim-page .cs-animate--fade-up:not(.cs-animate--header-stagger):not(.cs-animate--card-stagger):not(.cs-animate--cta-stagger):not(.cs-animate--inview) {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
}

html.wam-js .case-studies-anim-page .cs-animate--fade-up.cs-animate--inview:not(.cs-animate--header-stagger):not(.cs-animate--card-stagger):not(.cs-animate--cta-stagger) {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition:
        opacity 0.85s ease-in-out,
        transform 0.85s ease-in-out;
}

/*
 * Generic image zoom reveal: add to a wrapper, include cs-animate--scroll:
 * <div class="image-container cs-animate--scroll cs-animate--image-zoom">...</div>
 */
html.wam-js .case-studies-anim-page .cs-animate--image-zoom:not(.cs-animate--inview) img {
    transform: scale(1.07);
}

html.wam-js .case-studies-anim-page .cs-animate--image-zoom.cs-animate--inview img {
    transform: scale(1);
    transition: transform 0.9s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    html.wam-js .case-studies-anim-page .cs-animate--header-stagger .portfolio-section-badge,
    html.wam-js .case-studies-anim-page .cs-animate--header-stagger .portfolio-section-main-title,
    html.wam-js .case-studies-anim-page .cs-animate--card-stagger .portfolio-section-card,
    html.wam-js .case-studies-anim-page .cs-animate--card-stagger .portfolio-section-img-container img,
    html.wam-js .case-studies-anim-page .cs-animate--cta-stagger .cta-text h3,
    html.wam-js .case-studies-anim-page .cs-animate--cta-stagger .cta-text p,
    html.wam-js .case-studies-anim-page .cs-animate--cta-stagger .btn-banner-primary,
    html.wam-js .case-studies-anim-page .cs-animate--fade-up,
    html.wam-js .case-studies-anim-page .cs-animate--image-zoom img {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* =============================================================================
   Global responsive layer (mobile / tablet / desktop)
   Breakpoints: ~480–767 mobile, 768–991 tablet, 1200+ large desktop
   ============================================================================= */

body.newhomepage,
body.wam-anim-page {
  overflow-x: hidden;
}

.newhomepage :where(img, video),
.wam-anim-page :where(img, video) {
  max-width: 100%;
  height: auto;
}
.newhomepage iframe,
.wam-anim-page iframe {
  max-width: 100%;
}

/* Fluid section rhythm */
@media (max-width: 767.98px) {
  .newhomepage .section-tag {
    font-size: clamp(0.8rem, 2.8vw, 1.05rem);
  }
  .newhomepage .idea-section h2,
  .newhomepage .testimonial-section h2,
  .newhomepage .passionate-section h2 {
    font-size: clamp(1.65rem, 5.5vw, 2.25rem);
    line-height: 1.2;
  }
  .newhomepage .idea-features {
    width: 100%;
  }
  .newhomepage .idea-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
  .newhomepage .trusted-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem 1.5rem;
    padding-block: 3rem;
  }
  .newhomepage .stats-strip {
    padding: 0 0 clamp(8rem, 22vw, 14rem);
  }
  .newhomepage .stats-strip h3 {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }
  .newhomepage .stats-strip p {
    font-size: clamp(0.85rem, 2.8vw, 1rem);
  }
  .newhomepage .banner-slide-overlay {
    padding: clamp(2.5rem, 8vw, 4rem) 0;
  }
  .newhomepage .banner-slide-subtitle {
    font-size: clamp(0.7rem, 2.5vw, 1rem);
  }
  .newhomepage .ceo-card {
    flex-direction: column;
  }
  .newhomepage .ceo-photo {
    flex: none;
    width: 100%;
    max-width: 100%;
    min-height: 220px;
  }
  .newhomepage .ceo-content {
    padding: clamp(1.75rem, 5vw, 3rem);
  }
  .newhomepage .cta-inline {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .newhomepage .work-culture-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .newhomepage .work-culture-thumb {
    width: 100%;
    max-width: 280px;
    flex: 0 0 auto;
  }
  .newhomepage .white-new-bg {
    padding: clamp(1.5rem, 5vw, 2.5rem);
  }
  .newhomepage .btn-banner-outline,
  .newhomepage .btn-banner-primary,
  .newhomepage .btn-banner-black {
    padding: clamp(0.9rem, 3vw, 1.25rem) clamp(1.25rem, 5vw, 2rem);
    font-size: clamp(0.75rem, 2.4vw, 0.9rem);
    text-align: center;
  }
  .newhomepage .quote-icon {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }
  .newhomepage .testimonial-meta strong {
    font-size: clamp(1.35rem, 4.5vw, 2rem);
  }
  .newhomepage .testimonial-meta span {
    font-size: clamp(0.95rem, 3vw, 1.25rem);
  }
}

@media (min-width: 480px) and (max-width: 767.98px) {
  .newhomepage .idea-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Tablet: 768–991px */
@media (min-width: 768px) and (max-width: 991.98px) {
  .newhomepage .idea-logos {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .newhomepage .trusted-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 3rem 2rem;
    padding-block: 5rem;
  }
  .newhomepage .stories-section {
    background-size: cover;
    background-position: center top;
  }
  .newhomepage .section-title {
    margin-bottom: clamp(2.5rem, 6vw, 4rem);
  }
}

/* Large desktop alignment (1200px+) */
@media (min-width: 1200px) {
  .newhomepage .portfolio-section-container,
  .newhomepage .wp-hire-container,
  .newhomepage .wp-custom-container {
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }
}

/* -------- Site-wide: horizontal scroll + header logo swap -------- */
/* Use 100% not 100vw: vw includes scrollbar width and causes a few px horizontal scroll on many mobile browsers. */
html {
  overflow-x: hidden;
  max-width: 100%;
}
body {
  overflow-x: hidden;
  max-width: 100%;
}
header.main-header:not(.fixed) .navbar-brand .fixedlogo {
  display: none !important;
}
header.main-header.fixed .navbar-brand .fixedlogo {
  display: inline-block !important;
}
header.main-header.fixed .navbar-brand .normallogo {
  display: none !important;
}

/* -------- Navigation: tablet + mobile (single block — collapse stays in document flow) -------- */
@media (max-width: 991.98px) {
  html body .row > [class*="col-"] {
    min-width: 0;
  }
  html body header.main-header .navbar.navbar-expand-lg.megamenu {
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    z-index: 1030;
    overflow: visible;
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
  }
  html body header.main-header .navbar.megamenu > .container {
    flex-wrap: wrap;
    max-width: 100%;
    padding-left: max(0.75rem, env(safe-area-inset-left));
    padding-right: max(0.75rem, env(safe-area-inset-right));
  }
  html body header.main-header .navbar.megamenu .navbar-toggler {
    border: 0;
    padding: 0.35rem 0.5rem;
    font-size: 1.35rem;
    margin-left: auto;
  }
  html body header.main-header .navbar.megamenu .navbar-collapse {
    position: static !important;
    flex-basis: 100%;
    width: 100%;
    max-width: 100%;
    max-height: min(80vh, 680px);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 0.5rem;
    padding: 0.5rem 0.75rem 1rem !important;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  }
  html body header.main-header .navbar .navbar-nav {
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100%;
    padding-right: 0 !important;
    margin-bottom: 0.25rem;
  }
  html body header.main-header .navbar .navbar-nav .nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
  html body header.main-header .navbar .navbar-nav .nav-item:last-of-type {
    border-bottom: 0;
  }
  html body header.main-header .navbar .navbar-nav .nav-item .nav-link {
    text-align: left !important;
    width: 100%;
    padding: 0.85rem 0.35rem !important;
    white-space: normal;
    line-height: 1.35 !important;
    font-size: 1rem !important;
  }
  html body header.main-header .navbar.megamenu .collapse form.float-end {
    float: none !important;
    width: 100%;
    max-width: 100%;
    margin: 0 !important;
    padding: 0.35rem 0 0.25rem;
  }
  html body header.main-header .navbar.megamenu .collapse .my-btn {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 0.25rem;
    white-space: normal;
    padding: 0.9rem 1rem !important;
  }
  html body header.main-header .navbar.megamenu .dropdown-menu.megamenu-content {
    position: static !important;
    inset: auto !important;
    transform: none !important;
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 0 0 0.35rem;
    border: 0;
    border-radius: 6px;
    box-shadow: none;
    background: #f0f2f5;
  }
  html body header.main-header .navbar.megamenu .dropdown-menu.megamenu-content .links-section {
    min-height: 0;
    padding-left: 0;
    padding-right: 0;
  }
  html body header.main-header .navbar.megamenu .dropdown-menu.megamenu-content .mega-bgs {
    min-height: 0 !important;
    padding: 1.25rem !important;
    background-size: cover !important;
  }
  html body header.main-header .navbar.megamenu .dropdown-menu.megamenu-content .mega-bgs .position-absolute {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
  }
  html body header.main-header .navbar.megamenu .dropdown-menu.megamenu-content .mega-bgs h1 {
    margin-bottom: 1rem !important;
    font-size: clamp(1.35rem, 4vw, 1.85rem) !important;
  }
  html body header.main-header .navbar.megamenu .dropdown-menu.megamenu-content .links-section ul.mega-links li a {
    line-height: 1.75rem;
    font-size: 0.95rem !important;
  }
  html body header .navbar .navbar-brand {
    max-width: calc(100% - 3.75rem);
    margin-right: 0;
  }
  html body header .navbar .navbar-brand img {
    width: clamp(7rem, 44vw, 10.5rem) !important;
    height: auto !important;
    max-height: 42px;
    object-fit: contain;
  }
}

@media (min-width: 992px) {
  html body header.main-header .navbar.megamenu .dropdown-menu.megamenu-content {
    max-height: min(90vh, 880px);
    overflow-y: auto;
    /* overflow-y:auto makes overflow-x compute to auto — tiny width overflow from .row gutters showed a horizontal bar */
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
}

/* Short phones: avoid excess hero height */
@media (max-width: 479.98px) {
  .banner-slider-section .owl-banner .owl-item,
  .banner-slide-item {
    min-height: clamp(380px, 92vw, 480px);
  }
}

/* Align portfolio grid with standard tablet breakpoint */
@media (min-width: 768px) and (max-width: 991.98px) {
  .portfolio-section-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  html body header .navbar.megamenu .container .dropdown-menu.megamenu-content .mega-bgs {
    height: auto !important;
    min-height: 0 !important;
  }
  /* Stack mega columns one per row on phones */
  html body header .navbar.megamenu .dropdown-menu.megamenu-content .links-section .row > [class*="col-"] {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}

/* Inner pages: content sections (all templates that include new-design.css) */
@media (max-width: 767.98px) {
  /* Flex children default to min-width:auto; wide content (e.g. tab panels, CTA row)
     can force horizontal scroll — mirror case-studies .portfolio-section-text-group */
  .dev-tabs-content-wrapper,
  .dev-tab-grid,
  .dev-tab-img-box,
  .dev-tab-text-box,
  .impact-card-flex,
  .impact-card-left,
  .impact-card-right,
  .cta-cards-flex,
  .cta-feature-card,
  .cta-card-inner {
    min-width: 0;
  }
  /* Initial CTA card slide uses translateX(±70px); clip so it does not widen the page */
  .cta-mobile-section {
    overflow-x: hidden;
  }

  .wp-custom-section,
  .wp-hire-section {
    padding: 3rem max(1rem, 4vw) !important;
  }
  .wp-custom-title {
    font-size: clamp(1.45rem, 6.2vw, 2rem) !important;
    line-height: 1.15;
    word-break: break-word;
  }
  .wp-hire-main-title {
    font-size: clamp(1.5rem, 6.5vw, 2rem) !important;
    line-height: 1.15;
    word-break: break-word;
  }
  .rj-dev-wrapper {
    padding: 3rem max(1rem, 4vw) !important;
  }
  .rj-dev-main-title {
    font-size: clamp(1.45rem, 5.5vw, 1.85rem) !important;
  }
  .about-hero .container {
    padding-left: max(1rem, 4vw);
    padding-right: max(1rem, 4vw);
  }
  .about-hero h1 {
    font-size: clamp(1.35rem, 5.5vw, 1.85rem) !important;
    line-height: 1.2;
  }
  .about-breadcrumb {
    flex-wrap: wrap;
    gap: 0.25rem;
    font-size: clamp(0.8rem, 3vw, 1rem);
  }
  html body .app-services-section {
    padding-left: max(0.75rem, 3vw) !important;
    padding-right: max(0.75rem, 3vw) !important;
    overflow-x: hidden;
    box-sizing: border-box;
  }
  html body .app-services-section .container,
  html body .app-services-section .app-services-grid {
    min-width: 0;
    max-width: 100%;
  }
  html body .app-services-section .app-service-card,
  html body .app-services-section .app-service-inner {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }
  html body .wamx-resource-card {
    width: 100% !important;
    max-width: 100%;
    min-height: 0;
  }
  html body .wamx-resource-card p {
    min-height: 0 !important;
  }
  html body .wp-custom-container {
    flex-direction: column !important;
    gap: 2rem !important;
  }
  html body .cta-hero-bg,
  html body .cta-mobile-section {
    padding-left: max(1rem, 4vw);
    padding-right: max(1rem, 4vw);
  }
}

@media (max-width: 575.98px) {
  html body header .navbar .navbar-brand img {
    width: clamp(6.75rem, 52vw, 9.5rem) !important;
    max-height: 40px;
  }
}

/* On-page directory: mirrors header Hire Developers mega menu (e.g. hire-developer1.php) */
.hire-mega-directory-section {
  background: #fafbfe;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.hire-mega-directory-badge {
  display: inline-block;
  color: #ff6a00;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.65rem;
}
.hire-mega-directory-heading {
  font-size: clamp(1.5rem, 4.5vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #111;
}
.hire-mega-directory-lead {
  font-size: 0.95rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
.hire-mega-dir-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ff6a00;
  margin-bottom: 1rem;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid rgba(255, 106, 0, 0.25);
}
.hire-mega-dir-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hire-mega-dir-list li {
  margin-bottom: 0.5rem;
}
.hire-mega-dir-list a {
  color: #333;
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.45;
  word-break: break-word;
}
.hire-mega-dir-list a:hover {
  color: #ff6a00;
}



/* -----------------Project-detail------------------------------ */


.sz-global-hero {
    width: 100%;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
}

/* Brand Header Area */
.sz-global-header-top {
  padding: 60px 60px 25px 0px;
}

.sz-global-brand {
    font-size: 42px;
    font-weight: 800;
    color: #000;
    margin: 0;
    letter-spacing: -1.5px;
}

/* Image Section Styling */


.sz-global-image-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.sz-global-main-img {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 9; /* Matches the proportions in your screenshot */
}

/* Subtle tech-glow overlay to match the high-tech vibe */
.sz-global-overlay-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Responsive Rules */
@media (max-width: 1024px) {
    .sz-global-header-top {
        padding: 15px 30px;
    }
    .sz-global-brand {
        font-size: 32px;
    }
    .sz-global-content-wrapper {
        padding: 0 20px 40px 20px;
    }
}

@media (max-width: 600px) {
    .sz-global-brand {
        font-size: 28px;
        text-align: center;
    }
    .sz-global-image-container {
        border-radius: 0; /* Full edge on mobile */
    }
}


.prj-flex-wrapper {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* Left Content */
.prj-main-content {
  flex: 2;
}

.prj-content-block {
  margin-bottom: 50px;
}

.prj-heading {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #000;
  letter-spacing: -1px;
}

.prj-description {
  font-size: 16px;
  color: #808287;
  margin-bottom: 30px;
  max-width: 90%;
}

/* Services Grid */
.prj-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.prj-service-item {
  background-color: #f8f9fa;
  padding: 18px 25px;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  border-radius: 4px;
  color: #000;
}

.prj-service-item i {
  margin-right: 12px;
  font-size: 14px;
}

/* Sidebar Info Box */
.prj-sidebar {
  flex: 1;
}

.prj-info-box {
  background-color: #f8f9fa;
  padding: 40px;
  border-radius: 4px;
  transition: box-shadow 0.45s ease-in-out;
}

.prj-info-item {
  margin-bottom: 30px;
}

.prj-info-item:last-child {
  margin-bottom: 0;
}

.prj-info-label {
  display: block;
  font-size: 14px;
  color: #999;
  margin-bottom: 5px;
}

.prj-info-value {
  font-size: 20px;
  font-weight: 700;
  color: #000;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .prj-flex-wrapper {
      flex-direction: column;
      gap: 40px;
  }
  
  .prj-heading {
      font-size: 36px;
  }

  .prj-main-content, .prj-sidebar {
      width: 100%;
  }
}

@media (max-width: 600px) {
  .prj-services-grid {
      grid-template-columns: 1fr;
  }

  .prj-details-section {
      padding: 40px 15px;
  }

  .prj-description {
      max-width: 100%;
  }
}

/* ========== Project detail: scroll animations (Intersection Observer + CSS) ========== */
html.wam-js .project-detail-anim-page .cs-animate--fade-up:not(.cs-animate--inview) {
    opacity: 0;
    transform: translate3d(0, 26px, 0);
}

html.wam-js .project-detail-anim-page .cs-animate--fade-up.cs-animate--inview {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition:
        opacity 0.85s ease-in-out,
        transform 0.85s ease-in-out;
}

html.wam-js .project-detail-anim-page .cs-animate--image-zoom:not(.cs-animate--inview) .sz-global-main-img {
    transform: scale(1.06);
}

html.wam-js .project-detail-anim-page .cs-animate--image-zoom.cs-animate--inview .sz-global-main-img {
    transform: scale(1);
    transition: transform 0.95s ease-in-out;
    transform-origin: center center;
}

/* Content blocks: heading + body copy slide up with slight stagger */
html.wam-js .project-detail-anim-page .cs-animate--prj-block-stagger:not(.cs-animate--inview) .prj-heading {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
}

html.wam-js .project-detail-anim-page .cs-animate--prj-block-stagger:not(.cs-animate--inview) .prj-description {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
}

html.wam-js .project-detail-anim-page .cs-animate--prj-block-stagger.cs-animate--inview .prj-heading {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition:
        opacity 0.8s ease-in-out,
        transform 0.8s ease-in-out;
}

html.wam-js .project-detail-anim-page .cs-animate--prj-block-stagger.cs-animate--inview .prj-description {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition:
        opacity 0.8s ease-in-out,
        transform 0.8s ease-in-out;
    transition-delay: 0.12s;
}

/* Service “cards” — staggered fade-up */
html.wam-js .project-detail-anim-page .cs-animate--prj-service-stagger:not(.cs-animate--inview) .prj-service-item {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
}

html.wam-js .project-detail-anim-page .cs-animate--prj-service-stagger.cs-animate--inview .prj-service-item {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition:
        opacity 0.8s ease-in-out,
        transform 0.8s ease-in-out,
        box-shadow 0.4s ease-in-out,
        background-color 0.4s ease-in-out,
        border-color 0.4s ease-in-out,
        color 0.35s ease-in-out;
}

html.wam-js .project-detail-anim-page .cs-animate--prj-service-stagger.cs-animate--inview .prj-service-item:nth-child(1) {
    transition-delay: 0ms;
}
html.wam-js .project-detail-anim-page .cs-animate--prj-service-stagger.cs-animate--inview .prj-service-item:nth-child(2) {
    transition-delay: 85ms;
}
html.wam-js .project-detail-anim-page .cs-animate--prj-service-stagger.cs-animate--inview .prj-service-item:nth-child(3) {
    transition-delay: 170ms;
}
html.wam-js .project-detail-anim-page .cs-animate--prj-service-stagger.cs-animate--inview .prj-service-item:nth-child(4) {
    transition-delay: 255ms;
}
html.wam-js .project-detail-anim-page .cs-animate--prj-service-stagger.cs-animate--inview .prj-service-item:nth-child(5) {
    transition-delay: 340ms;
}
html.wam-js .project-detail-anim-page .cs-animate--prj-service-stagger.cs-animate--inview .prj-service-item:nth-child(6) {
    transition-delay: 425ms;
}

/* Sidebar info — container + row stagger */
html.wam-js .project-detail-anim-page .cs-animate--prj-info-stagger:not(.cs-animate--inview) {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
}

html.wam-js .project-detail-anim-page .cs-animate--prj-info-stagger:not(.cs-animate--inview) .prj-info-item {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
}

html.wam-js .project-detail-anim-page .cs-animate--prj-info-stagger.cs-animate--inview {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition:
        opacity 0.85s ease-in-out,
        transform 0.85s ease-in-out;
}

html.wam-js .project-detail-anim-page .cs-animate--prj-info-stagger.cs-animate--inview .prj-info-item {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition:
        opacity 0.75s ease-in-out,
        transform 0.75s ease-in-out,
        background-color 0.35s ease-in-out,
        border-color 0.35s ease-in-out,
        box-shadow 0.35s ease-in-out;
}

html.wam-js .project-detail-anim-page .cs-animate--prj-info-stagger.cs-animate--inview .prj-info-item:nth-child(1) {
    transition-delay: 0ms;
}
html.wam-js .project-detail-anim-page .cs-animate--prj-info-stagger.cs-animate--inview .prj-info-item:nth-child(2) {
    transition-delay: 75ms;
}
html.wam-js .project-detail-anim-page .cs-animate--prj-info-stagger.cs-animate--inview .prj-info-item:nth-child(3) {
    transition-delay: 150ms;
}
html.wam-js .project-detail-anim-page .cs-animate--prj-info-stagger.cs-animate--inview .prj-info-item:nth-child(4) {
    transition-delay: 225ms;
}
html.wam-js .project-detail-anim-page .cs-animate--prj-info-stagger.cs-animate--inview .prj-info-item:nth-child(5) {
    transition-delay: 300ms;
}
html.wam-js .project-detail-anim-page .cs-animate--prj-info-stagger.cs-animate--inview .prj-info-item:nth-child(6) {
    transition-delay: 375ms;
}
html.wam-js .project-detail-anim-page .cs-animate--prj-info-stagger.cs-animate--inview .prj-info-item:nth-child(7) {
    transition-delay: 450ms;
}

/* CTA strip — match case-studies rhythm */
html.wam-js .project-detail-anim-page .cs-animate--cta-stagger:not(.cs-animate--inview) .cta-text h3,
html.wam-js .project-detail-anim-page .cs-animate--cta-stagger:not(.cs-animate--inview) .cta-text p,
html.wam-js .project-detail-anim-page .cs-animate--cta-stagger:not(.cs-animate--inview) .btn-banner-primary {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
}

html.wam-js .project-detail-anim-page .cs-animate--cta-stagger.cs-animate--inview .cta-text h3 {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition:
        opacity 0.85s ease-in-out,
        transform 0.85s ease-in-out;
}

html.wam-js .project-detail-anim-page .cs-animate--cta-stagger.cs-animate--inview .cta-text p {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition:
        opacity 0.85s ease-in-out,
        transform 0.85s ease-in-out;
    transition-delay: 0.1s;
}

html.wam-js .project-detail-anim-page .cs-animate--cta-stagger.cs-animate--inview .btn-banner-primary {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    box-shadow: none;
    transition:
        opacity 0.8s ease-in-out,
        transform 0.8s ease-in-out,
        box-shadow 0.35s ease-in-out,
        background-position 0.35s ease-in-out,
        color 0.35s ease-in-out,
        border-color 0.35s ease-in-out;
    transition-delay: 0.18s;
}

.project-detail-anim-page .project-detail-cta .btn-banner-primary {
    transition:
        transform 0.35s ease-in-out,
        background-position 0.35s ease-in-out,
        color 0.35s ease-in-out,
        border-color 0.35s ease-in-out;
}

/* Specificity above scroll-in transform so hover scale applies */
html.wam-js .project-detail-anim-page .project-detail-cta .cs-animate--cta-stagger.cs-animate--inview .btn-banner-primary:hover {
    transform: translate3d(0, -2px, 0) scale(1.04);
    box-shadow: 0 16px 36px rgba(255, 113, 20, 0.38);
    transition:
        transform 0.35s ease-in-out,
        box-shadow 0.35s ease-in-out,
        background-position 0.35s ease-in-out,
        color 0.35s ease-in-out,
        border-color 0.35s ease-in-out;
}

html.wam-js .project-detail-anim-page .project-detail-cta .cs-animate--cta-stagger.cs-animate--inview .btn-banner-primary:active {
    transform: translate3d(0, 0, 0) scale(1.01);
    box-shadow: 0 8px 20px rgba(255, 113, 20, 0.28);
    transition-duration: 0.15s;
}

html.wam-js .project-detail-anim-page .project-detail-cta .cs-animate--cta-stagger.cs-animate--inview .btn-banner-primary:focus-visible {
    transform: translate3d(0, -1px, 0) scale(1.03);
    outline: 2px solid rgba(255, 113, 20, 0.55);
    outline-offset: 3px;
}

/* ----- Project detail: hover polish (mouse / trackpad only; keeps touch clean) ----- */
.project-detail-anim-page .prj-service-item {
    border: 1px solid transparent;
}

.project-detail-anim-page .prj-service-item i {
    transition: color 0.35s ease-in-out, transform 0.35s ease-in-out;
    color: #2c2c2c;
}

.project-detail-anim-page .about-main-con .about-breadcrumb a {
    transition: color 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.project-detail-anim-page .about-main-con .about-breadcrumb a:hover {
    color: #ff7114;
    opacity: 1;
}

.project-detail-anim-page .prj-info-item {
    border: 1px solid transparent;
    border-radius: 8px;
    transition:
        transform 0.35s ease-in-out,
        background-color 0.35s ease-in-out,
        border-color 0.35s ease-in-out,
        box-shadow 0.35s ease-in-out;
}

.project-detail-anim-page .prj-info-label,
.project-detail-anim-page .prj-info-value {
    transition: color 0.3s ease-in-out;
}

@media (hover: hover) and (pointer: fine) {
    html.wam-js .project-detail-anim-page .cs-animate--prj-service-stagger.cs-animate--inview .prj-service-item:hover {
        transform: translate3d(0, -5px, 0);
        box-shadow: 0 18px 40px rgba(17, 17, 17, 0.1);
        background-color: #fff;
        border-color: rgba(255, 113, 20, 0.28);
        color: #111;
    }

    html.wam-js .project-detail-anim-page .cs-animate--prj-service-stagger.cs-animate--inview .prj-service-item:hover i {
        color: #ff7114;
        transform: scale(1.12);
    }

    .project-detail-anim-page .prj-info-box:hover {
        box-shadow: 0 22px 50px rgba(0, 0, 0, 0.09);
    }

    html.wam-js .project-detail-anim-page .cs-animate--prj-info-stagger.cs-animate--inview .prj-info-item:hover {
        transform: translate3d(6px, 0, 0);

    }

   

   

    html.wam-js .project-detail-anim-page .sz-global-image-container.cs-animate--image-zoom.cs-animate--inview:hover .sz-global-main-img {
        transform: scale(1.04);
        transition: transform 0.75s ease-in-out;
    }
}

/* Progressive enhancement when scroll script did not add html.wam-js */
@media (hover: hover) and (pointer: fine) {
    html:not(.wam-js) .project-detail-anim-page .prj-service-item:hover {
        transform: translate3d(0, -5px, 0);
        box-shadow: 0 18px 40px rgba(17, 17, 17, 0.1);
        background-color: #fff;
        border-color: rgba(255, 113, 20, 0.28);
    }
}

@media (prefers-reduced-motion: reduce) {
    html.wam-js .project-detail-anim-page .cs-animate--fade-up,
    html.wam-js .project-detail-anim-page .cs-animate--image-zoom .sz-global-main-img,
    html.wam-js .project-detail-anim-page .cs-animate--prj-block-stagger .prj-heading,
    html.wam-js .project-detail-anim-page .cs-animate--prj-block-stagger .prj-description,
    html.wam-js .project-detail-anim-page .cs-animate--prj-service-stagger .prj-service-item,
    html.wam-js .project-detail-anim-page .cs-animate--prj-info-stagger,
    html.wam-js .project-detail-anim-page .cs-animate--prj-info-stagger .prj-info-item,
    html.wam-js .project-detail-anim-page .cs-animate--cta-stagger .cta-text h3,
    html.wam-js .project-detail-anim-page .cs-animate--cta-stagger .cta-text p,
    html.wam-js .project-detail-anim-page .cs-animate--cta-stagger .btn-banner-primary {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    html.wam-js .project-detail-anim-page .cs-animate--prj-service-stagger.cs-animate--inview .prj-service-item:hover,
    html.wam-js .project-detail-anim-page .cs-animate--prj-info-stagger.cs-animate--inview .prj-info-item:hover,
    html.wam-js .project-detail-anim-page .sz-global-image-container.cs-animate--image-zoom.cs-animate--inview:hover .sz-global-main-img,
    html.wam-js .project-detail-anim-page .project-detail-cta .cs-animate--cta-stagger.cs-animate--inview .btn-banner-primary:hover,
    html.wam-js .project-detail-anim-page .project-detail-cta .cs-animate--cta-stagger.cs-animate--inview .btn-banner-primary:active,
    html.wam-js .project-detail-anim-page .project-detail-cta .cs-animate--cta-stagger.cs-animate--inview .btn-banner-primary:focus-visible,
    .project-detail-anim-page .prj-info-box:hover {
        transform: none !important;
        box-shadow: none !important;
    }

    html.wam-js .project-detail-anim-page .cs-animate--prj-service-stagger.cs-animate--inview .prj-service-item:hover i {
        transform: none !important;
    }
}