/* ===== Home Gallery Section ===== */
/* .banner .banner-five-main-wrapper {
  padding-top: 110px;
} */
.banner-left-content {
  display: flex;
  flex-direction: column;

  justify-content: center;
  height: 100%;
}
body.tmp-white-version .rpp-banner-five-area {
  padding: 50px 0;
}
/* .banner-counter{
  display: flex;
  flex-direction: column;
gap: 80px;
  justify-content: center;
  height: 100%;

} */
.banner-badge {
  letter-spacing: 3px;
  color: #4988c4;
  font-size: 14px;
  font-weight: 600;
}
.banner-five-main-wrapper .inner .title .name {
  font-size: 70px;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.banner-five-main-wrapper .inner .title .name span {
  color: #2c3e50;
  display: block;
}
@media (max-width: 768px) {
  .banner-counter {
    padding: 30px 20px;
    gap: 30px;
  }

  .banner-five-main-wrapper .inner .title .name {
    font-size: 32px;
  }
  .banner-description {
    font-size: 15px;
  }
}

@media (max-width: 1024px) {
  .banner-counter {
    flex-direction: column;
    padding: 40px 30px;
    gap: 40px;
  }

  .banner-five-main-wrapper .inner .title .name {
    font-size: 42px;
  }
}
.banner-description {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 450px;
}
.bg-benner-img-five.image .icon {
  position: absolute;
  width: 117px;
  height: 118px;
  right: -91px;
  bottom: 0px;
  opacity: 0.07;
}
.bg-benner-img-five.image .icon1 {
  position: absolute;
  width: 117px;
  height: 118px;
  left: -232px;
  top: 20%;
  opacity: 0.07;
}
.banner-five-main-wrapper .bg-benner-img-five.image::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  border: 2px solid #4988c4;
  border-radius: 5px;
  right: -10px;
  bottom: -10px;
}
.gear {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  opacity: 0.07;
  z-index: 0;
  animation: rotate 20s linear infinite;
}
@keyframes rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.banner-counter .inner {
  margin-bottom: 30px;
}
/* .banner-five-main-wrapper .inner .title .name{
  font-size: 45px;
  font-weight: 800;
}
.banner-five-main-wrapper .inner .title .header-caption{
  font-size: 36px;
    font-weight: 500;
} */
.stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.stat h3 {
  font-size: 32px;
  color: #4988c4;
}
.banner-ventures{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.banner-ventures .circle{
 width: 48px;
 height: 48px;
 background-color: white;
 padding: 7px;
 border-radius: 100%;
 position: relative;
}
.banner-ventures .circle img{
 width: 100%;
 height: 100%;
 object-fit: contain;
 cursor: pointer;
}
.banner-ventures .circle:hover .circle-text{
  display: block;
  transition: 0.5s all ease-in-out;
}
.banner-ventures .circle .circle-text{
position: absolute;
    top: -20px;
    left: 5px;
    min-width: 250px;
    font-size: 12px;
    display: none;
      transition: 0.5s all ease-in-out;

}
.stat p {
  font-size: 14px;
  letter-spacing: 1px;
  color: #777;
}
.home-gallery-section {
  padding: 80px 0;
}

.home-gallery-header {
  margin-bottom: 18px;
}

.home-gallery-title {
  font-size: 34px;
  line-height: 1.2;
  margin: 0 0 8px 0;
}

.home-gallery-subtitle {
  margin: 0;
  opacity: 0.75;
}

/* Horizontal scroll strip */
.home-gallery-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 320px);
  gap: 16px;

  overflow-x: auto;
  overflow-y: hidden;

  padding: 8px 4px 14px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

/* Nice scrollbar (optional) */
.home-gallery-strip::-webkit-scrollbar {
  height: 10px;
}
.home-gallery-strip::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 999px;
}
.home-gallery-strip::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.08);
  border-radius: 999px;
}

.home-gallery-item {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  scroll-snap-align: start;
  text-decoration: none;
  outline: none;
}

.home-gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
   object-position: top;
  transform: scale(1);
  transition: transform 0.35s ease;
}

/* Hover zoom on card */
.home-gallery-item:hover img {
  transform: scale(1.05);
}

/* Focus ring for accessibility */
.home-gallery-item:focus-visible {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.25);
}

/* ===== CSS-only Lightbox (Zoom on Click) ===== */
.home-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  padding: 24px;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.78);
}

.home-lightbox:target {
  display: grid;
}

.home-lightbox img {
  max-width: min(1050px, 92vw);
  max-height: 86vh;
  width: auto;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
}

/* Close button */
.home-lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 30px;
  line-height: 1;
  text-decoration: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
}

/* Responsive tweaks */
@media (max-width: 575px) {
  .home-gallery-section {
    padding: 55px 0;
  }

  .home-gallery-title {
    font-size: 28px;
  }

  .home-gallery-strip {
    grid-auto-columns: minmax(200px, 78vw);
  }

  .home-gallery-item img {
    height: 200px;
  }
}
/* ===============================
   Section 5: Advisory Identity
   =============================== */
.advisory-identity-area {
  padding: 80px 0;
}

.advisory-identity-wrapper {
  position: relative;
}

.advisory-card {
  border-radius: 18px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.advisory-title {
  margin: 0 0 12px 0;
  font-size: 34px;
  line-height: 1.2;
}

.advisory-title-sm {
  margin: 0 0 14px 0;
  font-size: 26px;
  line-height: 1.25;
}

.advisory-para {
  margin: 0 0 18px 0;
  opacity: 0.88;
  line-height: 1.7;
}

.advisory-points {
  list-style: none;
  padding: 0;
  margin: 0 0 22px 0;
  display: grid;
  gap: 14px;
}

.advisory-points li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 12px;
  align-items: start;
}

.advisory-points .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: 8px;
  background: currentColor;
  opacity: 0.55;
}

.advisory-points h4 {
  margin: 0 0 4px 0;
  font-size: 16px;
  line-height: 1.3;
}

.advisory-points p {
  margin: 0;
  opacity: 0.78;
  line-height: 1.6;
}

.advisory-cta-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.advisory-cta-right {
  margin-top: 16px;
}

.advisory-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.advisory-btn:hover {
  transform: translateY(-1px);
}

.advisory-btn-primary {
  color: #fff;
  background: linear-gradient(
    90deg,
    rgba(96, 165, 250, 0.95),
    rgba(168, 85, 247, 0.95)
  );
  transition: 0.5s all ease-in-out;
}
.advisory-btn-primary:hover {
  color: white;
  transform: translateY(-5px);
  transition: 0.5s all ease-in-out;
}
.advisory-btn-secondary {
  color: inherit;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.w-100 {
  width: 100%;
}

/* Right side grid */
.advisory-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.advisory-pill {
  border-radius: 16px;
  padding: 16px;
  background: rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.advisory-pill h4 {
  margin: 0 0 6px 0;
  font-size: 16px;
}

.advisory-pill p {
  margin: 0;
  opacity: 0.78;
  line-height: 1.6;
}

.advisory-note {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.advisory-note p {
  margin: 0;
  opacity: 0.8;
  line-height: 1.6;
}

/* Responsive */
@media (min-width: 992px) {
  .advisory-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 575px) {
  .advisory-identity-area {
    padding: 55px 0;
  }
  .advisory-card {
    padding: 20px;
  }
  .advisory-title {
    font-size: 28px;
  }
  .advisory-title-sm {
    font-size: 22px;
  }
}
/* ===============================
   Section 7: Social Impact
   =============================== */
.impact-leadership-area {
  padding: 80px 0;
}

.impact-head {
  margin-bottom: 26px;
}

.impact-kicker {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 8px;
}

.impact-title {
  margin: 0 0 10px 0;
  font-size: 34px;
  line-height: 1.2;
}

.impact-subtitle {
  margin: 0;
  opacity: 0.82;
  max-width: 720px;
  line-height: 1.7;
}

.impact-card {
  border-radius: 18px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  height: 100%;
}

.impact-card-title {
  margin: 0 0 18px 0;
  font-size: 22px;
}

.impact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.impact-list li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 12px;
  align-items: start;
}

.impact-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: 8px;
  background: currentColor;
  opacity: 0.55;
}

.impact-list h4 {
  margin: 0 0 4px 0;
  font-size: 16px;
}

.impact-list p {
  margin: 0;
  opacity: 0.78;
  line-height: 1.6;
}

.impact-cta {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.impact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.impact-btn:hover {
  transform: translateY(-1px);
}

.impact-btn-primary {
  color: #fff;
  background: linear-gradient(
    90deg,
    rgba(96, 165, 250, 0.95),
    rgba(168, 85, 247, 0.95)
  );
}

.impact-btn-secondary {
  color: inherit;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

/* Stories */
.impact-stories {
  display: grid;
  gap: 16px;
}

.impact-story {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  border-radius: 18px;
  padding: 16px;
  background: rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.impact-photo {
  display: grid;
  place-items: center;
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.06);
  border: 1px dashed rgba(255, 255, 255, 0.22);
  min-height: 140px;
}

.impact-photo span {
  font-weight: 700;
  opacity: 0.75;
  font-size: 14px;
  text-align: center;
  padding: 10px;
}

.impact-story-body h3 {
  margin: 0 0 8px 0;
  font-size: 18px;
  line-height: 1.35;
}

.impact-story-body p {
  margin: 0 0 10px 0;
  opacity: 0.8;
  line-height: 1.65;
}

.impact-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.impact-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 991px) {
  .impact-story {
    grid-template-columns: 1fr;
  }
  .impact-photo {
    min-height: 180px;
  }
}

@media (max-width: 575px) {
  .impact-leadership-area {
    padding: 55px 0;
  }
  .impact-title {
    font-size: 28px;
  }
  .impact-card {
    padding: 20px;
  }
}
/* ===============================
   Banner – Bright Professional Background
   =============================== */
.rpp-banner-five-area {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 40%, #fdf4ff 100%);
  /* background-color: white; */
}

/* subtle grid / professional pattern */
/* .rpp-banner-five-area::before{
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
} */

/* abstract soft gradient blob */
.rpp-banner-five-area::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  top: -160px;
  right: -160px;
  background: radial-gradient(
    circle at center,
    rgba(99, 102, 241, 0.18),
    rgba(168, 85, 247, 0.12),
    transparent 70%
  );
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

/* ensure content stays above background layers */
.rpp-banner-five-area > .container {
  position: relative;
  z-index: 1;
}
.bg-benner-img-five {
  position: relative;
}

/* .bg-benner-img-five::after{
    content: "";
    position: absolute;
    inset: -30px;
    background: radial-gradient(
        circle at 60% 40%,
        rgba(59,130,246,0.18),
        transparent 70%
    );
    z-index: -1;
    border-radius: 50%;
} */
/* ===============================
   Latest Service Section Background
   =============================== */
.latest-service-area {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #f4f7ff 45%, #ffffff 100%);
}

/* subtle professional pattern */
.latest-service-area::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(0, 0, 0, 0.08) 1px,
    transparent 1px
  );
  background-size: 22px 22px;
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}

/* soft blob near image side */
.latest-service-area::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -180px;
  bottom: -220px;
  background: radial-gradient(
    circle at center,
    rgba(59, 130, 246, 0.18),
    rgba(168, 85, 247, 0.1),
    transparent 70%
  );
  filter: blur(45px);
  pointer-events: none;
  z-index: 0;
}

/* keep everything above background layers */
.latest-service-area .container {
  position: relative;
  z-index: 1;
}
.latest-service-area {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.latest-service-area::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.04) 0px,
    rgba(0, 0, 0, 0.04) 1px,
    transparent 1px,
    transparent 16px
  );
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}

.latest-service-area::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  left: -220px;
  top: -220px;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.16),
    transparent 70%
  );
  filter: blur(45px);
  pointer-events: none;
  z-index: 0;
}

.latest-service-area .container {
  position: relative;
  z-index: 1;
}

/* ventures  */
.ventures .img-box.v2 {
  height: 200px;
}
.membership .img-box.v2 {
  height: 170px;
}
.membership .testimonial-card {
  display: block;
}

/* video  */
.video-container {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  border-radius: 30px;
}

.video-container .text {
  position: absolute;
  bottom: 40px;
  left: 0;
  background-color: white;
  padding: 20px 20px;
  border-radius: 30px;
  margin: 0 5px;
  width: 97%;
}

.video-container .text p {
  color: #a259ff;
}

.video-container .name {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: white;
  display: flex;
  justify-content: space-between;
  padding: 20px 20px;
  border-radius: 0 0 30px 30px;
  border-top: 1px solid #483286;
  margin: 0 5px;
  width: 97%;
}

.video-container .name h4 {
  color: #a259ff;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  color: #a259ff;
  background: rgb(255, 255, 255);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease-in-out;
}

.video-container:hover .play-button,
.video-container:hover .text {
  opacity: 0;
  /* Hide play button on hover */
}

.video-container:hover .name {
  border: 0;
  border-radius: 30px;
}

.navigation-tags .social-link a {
  font-size: 18px;
}

.about .counter-area-right-content {
  padding-top: 40px;
}
.about .testimonial-card .card-content-wrap .card-title {
  font-size: 28px;
}
.about .testimonial-card .card-content-wrap .text-doc {
  font-size: 22px;
  font-weight: 500;
  line-height: 30px;
}
.about .testimonial-card .card-content-wrap .testimonital-icon {
  height: 62px;
  width: 32px;
  margin-top: 0px;
}
.social-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 5px;
  flex-wrap: wrap;
}
.ft-link.tmp-link-animation,
.main-wrapper ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.main-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-top: 1px solid rgba(128, 128, 128, 0.527);
}
.single-footer-wrapper .logo {
  display: flex;
  justify-content: center;
}
.copy-right-para {
  margin-bottom: 0px;
}
footer .logo img {
  max-width: 305px;
}
.cta {
  background-color: rgb(2, 50, 122);
}
.cta .my-expertise-card-wrap {
  border-radius: 0px;
}
.cta .cta-btn {
  padding: 10px 30px;
  width: 170px;
  border-radius: 30px;
  background-color: white;
  color: rgb(2, 50, 122);
  display: flex;
  justify-content: center;
  align-items: center;
}
.cta .cta-btn:hover {
  border-radius: 0 5px 10px rgba(255, 255, 255, 0.5);
}
.cta .expertise-card-left {
  display: flex;
  gap: 10px;
  flex-basis: 70%;
}
.cta .expertise-card-left .title {
  color: white !important;
}
.cta .expertise-card-left p {
  color: white;
  line-height: 1.2;
  font-size: 12px;
}
footer .single-footer-wrapper.quick-link-wrap {
  margin-left: 0px;
}

.tmp-btn {
  padding: 0 30px;
  background: #4988c4;
  height: 47px;
  /* display: flex; */
  line-height: 60px;
  color: var(--color-white);
  font-size: 16px;
  letter-spacing: 0.5px;
  font-weight: 500;

  position: relative;
  z-index: 1;
  transition: all 0.4s ease-in-out;
  border-radius: 6px;
  border: 0 none;
  outline: none;
  text-decoration: none;
  font-family: var(--font-secondary);
  text-transform: capitalize;
}
.tmp-btn.btn2 {
  padding: 0 30px;
  background-color: transparent;
  height: 47px;
  display: flex;
  line-height: 60px;
  color: #4988c4;
  font-size: 16px;
  letter-spacing: 0.5px;
  font-weight: 500;
  text-decoration: underline;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease-in-out;
  border-radius: 6px;
  border: 0 none;
  outline: none;
  text-decoration: none;
  font-family: var(--font-secondary);
  text-transform: capitalize;
}
.project-details-thumnail-wrap{
  height: 440px;
  width: 100%;

}
.project-details-thumnail-wrap img{
  width: 100%;
  height: 100%;
    object-fit: cover;
    object-position: top;
}

.swiper-button-next,
.swiper-button-prev{
    display: none !important;
}