/* 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 .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;
  }
}