.space-about-sec {
  padding: 80px 0px;
}

/* vision */

.vmv-wrapper {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* card base */
.vmv-card {
  position: relative;
  text-align: center;
  padding: 110px 34px 42px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: visible;
}

/* exact style feel: side cards taller top gap, center card featured */
.mission-card {
  min-height: 520px;
  margin: 110px 12px 0 0;
  background: linear-gradient(
    180deg,
    rgba(238, 225, 18, 0.85),
    rgba(238, 225, 18, 0.65)
  );
  backdrop-filter: blur(6px);
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.values-card {
  min-height: 650px;
  margin: 0 12px;
  background: linear-gradient(
    180deg,
    rgba(238, 225, 18, 0.95),
    rgba(238, 225, 18, 0.75)
  );
  backdrop-filter: blur(8px);
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.2),
    inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.vision-card {
  min-height: 520px;
  margin: 110px 0 0 12px;
  background: linear-gradient(
    180deg,
    rgba(238, 225, 18, 0.8),
    rgba(238, 225, 18, 0.6)
  );
  backdrop-filter: blur(6px);
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* theme color icons */
.vmv-icon {
  position: absolute;
  top: -56px;
  left: 50%;
  transform: translateX(-50%);
  width: 112px;
  height: 112px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eadd0f;
  color: #0a3d74;
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  box-shadow:
    0 0 0 10px rgba(255, 255, 255, 0.92),
    0 14px 28px rgba(0, 0, 0, 0.18);
}

.mission-icon,
.values-icon,
.vision-icon {
  background: #eadd0f;
}

/* titles */
.vmv-title {
  margin: 0 0 28px;
  color: black;
  font-size: 38px;
  line-height: 1.1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* mission / vision text */
.vmv-text {
  margin: 0;
  color: black;
  font-size: 17px;
  line-height: 1.95;
  font-weight: 400;
}

/* values */
.value-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 10px;
}

.value-item {
  padding-bottom: 18px;
  border-bottom: 1px solid black;
}

.value-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.value-item h3 {
  margin: 0 0 8px;
  color: black;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.value-item p {
  margin: 0;
  color: black;
  font-size: 16px;
  line-height: 1.8;
}

/* subtle height emphasis like reference */
.mission-card::after,
.values-card::after,
.vision-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.01)
  );
}

@media (max-width: 1199px) {
  .mission-card,
  .vision-card {
    min-height: 540px;
  }

  .values-card {
    min-height: 680px;
  }

  .vmv-title {
    font-size: 34px;
  }

  .vmv-text {
    font-size: 16px;
  }

  .value-item h3 {
    font-size: 20px;
  }

  .value-item p {
    font-size: 15px;
  }
}

@media (max-width: 991px) {
  .vmv-section {
    padding: 70px 0;
  }

  .mission-card,
  .values-card,
  .vision-card {
    min-height: auto;
    margin: 70px 0 0;
  }

  .values-card {
    margin-top: 80px;
  }

  .vmv-card {
    padding: 100px 28px 34px;
  }

  .vmv-icon {
    width: 100px;
    height: 100px;
    top: -50px;
    font-size: 38px;
  }

  .vmv-title {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .vmv-section {
    padding: 60px 0;
  }

  .vmv-card {
    padding: 90px 22px 28px;
  }

  .mission-card,
  .values-card,
  .vision-card {
    margin-top: 62px;
  }

  .vmv-icon {
    width: 88px;
    height: 88px;
    top: -44px;
    font-size: 32px;
    box-shadow:
      0 0 0 8px rgba(255, 255, 255, 0.92),
      0 10px 20px rgba(0, 0, 0, 0.18);
  }

  .vmv-title {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .vmv-text {
    font-size: 15px;
    line-height: 1.8;
  }

  .value-item h3 {
    font-size: 18px;
  }

  .value-item p {
    font-size: 14px;
    line-height: 1.7;
  }
}
.vmv-section {
  padding: 120px 0px 80px 0px;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #2b2b2b 100%);
  position: relative;
  overflow: hidden;
}

/* texture + light layers */
.vmv-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
        /* soft pattern */
    linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.08) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, 0.08) 50%,
      rgba(255, 255, 255, 0.08) 75%,
      transparent 75%,
      transparent
    ),
    /* top glow */
    radial-gradient(
        circle at top left,
        rgba(255, 255, 255, 0.35),
        transparent 40%
      ),
    /* bottom glow */
    radial-gradient(
        circle at bottom right,
        rgba(0, 0, 0, 0.12),
        transparent 45%
      );

  background-size:
    220px 220px,
    auto,
    auto;
  pointer-events: none;
}

/* subtle depth overlay */
.vmv-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.04),
    rgba(0, 0, 0, 0.08)
  );
  pointer-events: none;
}
.vmv-icon img {
  width: 50px;
}
/* industries */

.industries-serve-sec {
  padding: 90px 0;
  overflow: hidden;
}

.industries-serve-sec .container {
  max-width: 1500px;
}

.industries-head {
  margin-bottom: 50px;
}

.industries-head h2 {
  margin: 0 0 12px;
  font-size: 42px;
  line-height: 1.15;
  font-weight: 700;
  color: #111111;
}

.industries-head p,
.industries-footer p {
  margin: 0;
  font-size: 17px;
  line-height: 1.8;
  color: #4f4f4f;
}

.industries-footer {
  margin-top: 45px;
}

.industries-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  align-items: start;
  gap: 0;
  position: relative;
}

.industry-card {
  position: relative;
  overflow: hidden;
  background: #ddd;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.industry-card:hover img {
  transform: scale(1.05);
}

.tall-card {
  height: 450px;
}

.medium-card {
  height: 350px;
}

.down-card {
  margin-top: 55px;
}

.center-card {
  z-index: 2;
}

.industry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7, 26, 57, 0.68) 0%,
    rgba(7, 26, 57, 0.32) 35%,
    rgba(7, 26, 57, 0.08) 100%
  );
  pointer-events: none;
}

.industry-content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 28px;
  z-index: 2;
  text-align: center;
}

.industry-content h5 {
  margin: 0;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

/* slight overlap feel like reference */
.industries-grid .industry-card:nth-child(1) {
  z-index: 1;
  border-radius: 5px;
  border: 1px solid #eadd0f;
}

.industries-grid .industry-card:nth-child(2) {
  margin-left: 0px;
  z-index: 2;
  border-radius: 5px;
  border: 1px solid #eadd0f;
}

.industries-grid .industry-card:nth-child(3) {
  margin-left: -8px;
  margin-right: -8px;
  z-index: 3;
  border-radius: 5px;
  border: 1px solid #eadd0f;
}

.industries-grid .industry-card:nth-child(4) {
  margin-left: -8px;
  z-index: 2;
  border-radius: 5px;
  border: 1px solid #eadd0f;
}

.industries-grid .industry-card:nth-child(5) {
  margin-left: -8px;
  z-index: 2;
  border-radius: 5px;
  border: 1px solid #eadd0f;
}

@media (max-width: 1399px) {
  .industries-head h2 {
    font-size: 38px;
  }

  .tall-card {
    height: 450px;
  }

  .medium-card {
    height: 370px;
  }

  .industry-content h5 {
    font-size: 22px;
  }
}

@media (max-width: 1199px) {
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .industries-grid .industry-card:nth-child(1),
  .industries-grid .industry-card:nth-child(2),
  .industries-grid .industry-card:nth-child(3),
  .industries-grid .industry-card:nth-child(4),
  .industries-grid .industry-card:nth-child(5) {
    margin-left: 0;
    margin-right: 0;
  }

  .down-card {
    margin-top: 0;
  }

  .tall-card,
  .medium-card {
    height: 400px;
  }
}

@media (max-width: 991px) {
  .industries-serve-sec {
    padding: 70px 0;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .tall-card,
  .medium-card {
    height: 380px;
  }

  .industries-head h2 {
    font-size: 32px;
  }

  .industry-content h5 {
    font-size: 21px;
  }
}

@media (max-width: 767px) {
  .industries-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .tall-card,
  .medium-card {
    height: 380px;
  }

  .industries-head {
    margin-bottom: 35px;
  }

  .industries-head h2 {
    font-size: 28px;
  }

  .industries-head p,
  .industries-footer p {
    font-size: 15px;
    line-height: 1.7;
  }

  .industry-content {
    left: 18px;
    right: 18px;
    bottom: 20px;
  }

  .industry-content h5 {
    font-size: 20px;
  }
}

/* testimonial */
.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

@media (max-width: 760px) {
  .swiper-button-next {
    right: 20px;
    transform: rotate(90deg);
  }

  .swiper-button-prev {
    left: 20px;
    transform: rotate(90deg);
  }
}

.testimonials-section {
  padding: 90px 0;
  background: #f8f9fb;
  position: relative;
}

.testimonials-section .section-title h2 {
  font-size: 38px;
  font-weight: 800;
  color: #0b1320;
  margin-bottom: 50px;
  line-height: 1.2;
}

.testimonials-swiper {
  padding: 40px 50px 20px;
  overflow: hidden;
}

.testimonials-swiper .swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
}

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: visible;
  position: relative;
  width: 100%;
  max-width: 380px;
  margin-top: 40px;
}

.testimonial-top {
  padding: 0 28px 30px;
  position: relative;
}

.testimonial-img-wrap {
  position: relative;
  width: 84px;
  height: 84px;
  margin: -42px auto 16px;
}

.testimonial-img-wrap img {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid #f8f9fb;
  display: block;
}

.quote-icon {
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-10%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #f0e30f;
  color: #fff;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(34, 197, 94, 0.25);
}

.testimonial-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #0b1320;
  margin-bottom: 4px;
  text-transform: capitalize;
}

.testimonial-card .designation {
  display: block;
  font-size: 13px;
  color: #7a7f87;
  margin-bottom: 16px;
  text-transform: capitalize;
}

.testimonial-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #5d6470;
  margin: 0;
  min-height: 135px;
}

.testimonial-rating {
  background: #f0e30f;
  color: black;
  font-size: 22px;
  letter-spacing: 4px;
  padding: 14px 12px;
  font-weight: 700;
  position: relative;
}

.testimonial-rating::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 0;
  height: 0;
  border-top: 14px solid #001b4d;
  border-right: 18px solid transparent;
}

.testimonials-swiper .swiper-button-next,
.testimonials-swiper .swiper-button-prev {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  color: #001b4d;
}

.testimonials-swiper .swiper-button-next::after,
.testimonials-swiper .swiper-button-prev::after {
  font-size: 16px;
  font-weight: 700;
}

@media (max-width: 991px) {
  .testimonials-section .section-title h2 {
    font-size: 30px;
  }

  .testimonials-swiper {
    padding: 40px 20px 20px;
  }
}

@media (max-width: 575px) {
  .testimonials-section {
    padding: 70px 0;
  }

  .testimonials-section .section-title h2 {
    font-size: 26px;
  }

  .testimonial-card p {
    min-height: auto;
  }

  .testimonial-rating {
    font-size: 18px;
    letter-spacing: 3px;
  }
}

/* cta */
.cta-container {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Base button style */
.cta-btn {
  text-decoration: none;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-block;
}

/* Primary button */
.cta-btn.primary {
  background-color: #ebde18;
  color: black;
  border: 2px solid #ebde18;
}

.cta-btn.primary:hover {
  background-color: #ebde18;
  border-color: #ebde18;
}

/* Secondary button */
.cta-btn.secondary {
  background-color: transparent;
  color: white;
  border: 2px solid #ebde18;
}

.cta-btn.secondary:hover {
  background-color: #ebde18;
  color: black;
}
#cta-sec-about {
  background-image: url(../images/about-page/cta/cta-img-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 50px 20px;
  border-radius: 40px 40px 0px 0px;
}
#cta-sec-about h2,
#cta-sec-about p {
  color: white;
}

/* banner */
.about-banner {
  position: relative;
  display: flex;
  align-items: start;
  justify-content: flex-start;
  min-height: 320px;
  padding: 60px 20px;
  background: linear-gradient(135deg, #0f172a, #1e293b, #334155);
  overflow: hidden;
}

.about-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

.about-banner-content {
  position: relative;
  z-index: 2;
  text-align: start;
  color: #ffffff;
}

.about-banner-content h1 {
  margin: 12px 0 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: capitalize;
}

.breadcrumb {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: #e2e8f0;
}

.breadcrumb a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
  padding-right: 5px;
}

.breadcrumb a:hover {
  color: #d4c90d;
}

.breadcrumb .divider {
  margin: 0 10px;
  color: #94a3b8;
}

@media (max-width: 768px) {
  .about-banner {
    min-height: 240px;
    padding: 40px 15px;
  }

  .about-banner-content h1 {
    font-size: 34px;
  }

  .breadcrumb {
    font-size: 14px;
  }
}
#about-banner-sec {
  background-image: url(../images/about-page/banner/about-banner.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
/* experts */
/* .team-section {
  background: ;
} */

.team-title {
  font-size: 48px;
  font-weight: 700;
  color: #222;
  margin-bottom: 0;
}

.team-title span {
  color: #00a6d6;
}

.team-card {
  background: #f8f8f8;
  border-radius: 24px;
  padding: 35px 30px 40px;
  height: 100%;
  transition: 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.team-card:hover {
  transform: translateY(-6px);
}

.team-img-wrap {
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
}

.team-img {
  
  height: 260px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  margin: 0 auto;
}

.team-name {
  font-size: 22px;
  font-weight: 600;
  color: black;
  margin-bottom: 8px;
}

.team-role {
  font-size: 18px;
  font-weight: 500;
  color: #444;
  margin-bottom: 20px;
}

.team-text {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  max-width: 90%;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .team-title {
    font-size: 38px;
  }

  .team-img {
    width: 200px;
    height: 230px;
  }
}

@media (max-width: 767px) {
  .team-section {
    padding: 60px 0;
  }

  .team-title {
    font-size: 32px;
  }

  .team-card {
    padding: 25px 20px 30px;
  }

  .team-img {
    width: 180px;
    height: 210px;
  }

  .team-name {
    font-size: 20px;
  }

  .team-role {
    font-size: 16px;
  }

  .team-text {
    font-size: 15px;
    max-width: 100%;
  }
}
#our-story{
  padding: 80px 0px;
  
}
#experts,
#our-journey{
  background-color: #f7f8f3;
}
.slider-controls button {
  background: #f0e30f;
  color: #000;
  border: none;
  padding: 10px 22px;
  margin: 0 8px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease;
}

.slider-controls button:hover {
  background: #000;
  color: #f0e30f;
}
.testimonial-top h2{
  padding-bottom: 20px;
}

@media (max-width: 600px) {
  #our-story .row{
  flex-direction: column-reverse;
}
.vmv-section{
  padding: 40px 0px;
}
.space-about-sec{
  padding: 40px 0px;
}
#our-story{
  padding: 40px 0px;
}
#cta-sec-about {
  background-image: url(../images/about-page/cta/mobile-img.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 50px 20px;
  border-radius: 40px 40px 0px 0px;
}
.industry-content h5{
  font-size: 23px;
}
.cta-container{
  justify-content: center;
}
#cta-sec-about h2, #cta-sec-about p{
  text-align: center;
}
#about-banner-sec {
  background-image: url(../images/about-page/banner/mobile-banner.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.nav__menu.active{
  background-color: black;
}
.nav__item  {
  align-items: center;
  gap: 10px;
}
}
@media (min-width: 768px) and (max-width: 998px) {
  #our-story .row{
    flex-direction: column-reverse;

  }
  .industry-content h5 {
        font-size: 24px;
    }
    #cta-sec-about {
  background-image: url(../images/about-page/cta/mobile-img.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 50px 20px;
  border-radius: 40px 40px 0px 0px;
}
#cta-sec-about h2, #cta-sec-about p{
  text-align: center;
}
.cta-container{
  justify-content: center;
}
.services-banner-content{
  text-align: start !important;
}
.nav__menu.active{
  background-color: black;
}
.nav__item  {
  align-items: center;
  gap: 10px !important;
}
 .nav__menu{
  max-width: 497px;
 }
}

.extra-space-testimonial{
  background-color: #f7f8f3;
}

