.our-company-hero-section {
  background: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.9),
      rgba(0, 0, 0, 0.8),
      rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.4),
      rgba(0, 0, 0, 0)
    ),
    url('/assets/img/pages/our-company/main-back2.jpg') center/cover no-repeat;
}

.our-company-hero-section .header-left-content {
  max-width: 700px;
}

.who-we-are-section-conatainer {
  display: flex;
  gap: 20px;
}

.who-we-are-img-div {
  flex: 3;
  /* height: 300px; */

  border-radius: 20px;
  background-image: url('/assets/img/pages/our-company/who-we-are-back4.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: end;
  color: rgb(0, 0, 0);
  padding: 20px;
}

.who-we-are-content-div {
  flex: 5;
}

.who-we-are-main-content {
  margin-top: 30px;
}

.mission-main-content,
.vission-main-content {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.vission-main-content ul {
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mission-section-conatainer {
  display: flex;
  gap: 20px;
}

.mission-section-conatainer div {
  flex: 1;
}

.vision-div {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.59)),
    url('/assets/img/others/client-img/bg-11.jpg') center/cover no-repeat;
  background-position: center;

  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  padding: 20px;
}

.journey-section {
  overflow: hidden;
}

.journey-slider {
  padding-top: 50px;
  display: flex;

  /* This makes the movement smooth when JS changes the transform */
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.each-journey-div {
  min-width: 300px;
  padding: 20px;
  cursor: pointer;
  border-radius: 20px;
}
.each-journey-div:nth-child(even) {
  background-image: url('/assets/img/pages/our-company/aura.jpg');
  background-position: center;
  background-size: cover;
  color: white;
}

.journey-hr {
  margin-top: 2px;
  margin-bottom: 20px;
  width: 60px;
  border: 1px solid rgb(15, 15, 15);
}

.journey-even-hr {
  border: 1px solid rgb(255, 255, 255);
}

.each-journey-title {
  margin-bottom: 6px;
}

.founder-section-container {
  display: flex;
  gap: 150px;
}

.founder-content-div {
  flex: 6;
}

.founder-main-content {
  margin-top: 30px;
}

.founder-name {
  margin-top: 40px;
  display: flex;
  gap: 25px;
}
.founder-hr {
  transform: rotate(90deg);
  margin-left: 15px;
  border: 1px solid black;
}

.founder-img-div {
  flex: 3;
  border-radius: 20px;
  background-image: url('/assets/img/pages/our-company/founder-img1.jpeg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.journey-slider-mob {
  display: none;
}

/* our-team-css */
:root {
  --bg-color: #111; /* Dark Background */
  --card-bg: rgba(255, 255, 255, 0.05);
  --primary-color: #00d2ff; /* Cyan Neon */
  --secondary-color: #3a7bd5; /* Blue */
  --text-white: #ffffff;
  --text-gray: #b0b0b0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* Section Wrapper */
.team-section {
  position: relative;
  width: 100%;
  /* min-height: 100vh; */
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url('https://images.unsplash.com/photo-1663970206579-c157cba7edda?q=80&w=1856&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');

  /* padding: 4rem 2rem; */
  overflow: hidden;
  padding: 30px;
  border-radius: 20px;
}

/* Background Decoration (Optional Blobs) */
.team-section::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;

  background: radial-gradient(circle, var(--primary-color), transparent 60%);
  opacity: 0.1;
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
  width: 100%;
  /* max-width: 1200px; */
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

/* .section-title h2 {
  color: var(--text-white);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
} */

.section-title p {
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 300;
}

/* Grid Layout */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  justify-content: center;
}

/* Card Styling */
.team-card {
  position: relative;
  /* background: var(--card-bg); */
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  backdrop-filter: blur(10px); /* Glassmorphism */
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  transition: 0.5s;
  transform-style: preserve-3d; /* Essential for 3D Tilt */
}

/* Image Wrapper */
.img-box {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  padding: 3.5px;
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--secondary-color)
  );
  overflow: hidden;
  transform: translateZ(20px); /* Pops the image out in 3D */
}

.img-box img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #111;
}

/* Text Styling */
.text-box {
  transform: translateZ(0px); /* Initial State */
  transition: 0.3s;
}

.text-box h3 {
  color: var(--text-white);
  font-size: 1.4rem;
  font-weight: 600;
}

.text-box .role {
  display: block;
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.text-box p {
  color: var(--text-gray);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Social Icons */
.socials {
  display: flex;
  justify-content: center;
  gap: 15px;
  transform: translateZ(30px); /* Floats icons above card */
}

.socials a {
  text-decoration: none;
  color: var(--text-white);
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.socials a:hover {
  background: var(--primary-color);
  color: #000;
  transform: translateY(-5px);
}

@media screen and (max-width: 1200px) {
  .founder-section-container {
    display: flex;
    gap: 20px;
  }
}

@media screen and (max-width: 800px) {
  .who-we-are-img-div {
    flex: 1;
    min-height: 300px;
  }
  .who-we-are-section-conatainer {
    flex-direction: column;
  }
  .journey-slider-desk {
    display: none;
  }
  .journey-slider-mob {
    display: flex;
  }
}

@media screen and (max-width: 750px) {
  .founder-section-container {
    flex-direction: column;
  }
  .founder-img-div {
    flex: 1;
    width: 100%;
    min-height: 430px;
  }
  .mission-section-conatainer {
    flex-direction: column;
  }
  .vision-div {
    position: relative;
    left: -20px;
    right: -20px;
    width: calc(100% + 40px);
    border-radius: 0px;
    padding: 20px;
  }
}
