.section {
  height: 100vh;
  background-size: cover;
  /* background-position:center; */
  background-repeat: no-repeat;
  background-attachment: fixed;
  /* object-fit:cover;
  object-position: center; */
  color: white;
  /* transform-origin: center; */
  position: sticky;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  /* will-change: transform; */
  /* transform: translateZ(0); */
}

.container {
  max-width: 80vw;
  width: 100%;
  display: flex;
  position: relative;
  z-index: 1;
}

.justify-start {
  justify-content: flex-start;
}
.justify-end {
  justify-content: flex-end;
}
.justify-center {
  justify-content: center;
}

.heroSection {
  position: relative;

  /* background-position: bottom; */
  /* background-attachment: fixed; */
  height: calc(100vh - 100px);
}

.heroBgImg {
  position: absolute;
  background-image: url("./assets/plane/1-1.jpeg");
  background-size: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.8s ease;
  z-index: 0;
}

.heroSection video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.8s ease;
  z-index: 1;
}

/* .heroSection::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("./assets/plane/1-1.jpg");
  background-size: cover;
  background-position: bottom;
  background-attachment: fixed;
  will-change: transform;
  transform: translateZ(0);
} */

/* Desktop - Full resolution */
.firstSec {
  background-image: url("./assets/plane/17.png");
}
.secondSec {
  background-image: url("./assets/plane/18.png");
}
.thirdSec {
  background-image: url("./assets/plane/19.png");
}
.fourthSec {
  background-image: url("./assets/plane/20.png");
}
.fifthSec {
  background-image: url("./assets/plane/21.png");
}
.sixthSec {
  background-image: url("./assets/plane/16.png");
}

.certifiedLogo {
  position: absolute;
  bottom: 20px;
  right: 20px;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), filter 0.4s ease;
  cursor: pointer;
  z-index: 2;
}

.certifiedLogo:hover {
  transform: scale(1.1) rotate(5deg);
  filter: brightness(1.15) drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.hero-content {
  text-align: center;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
  animation: heroTextReveal 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  background: linear-gradient(90deg, #ffffff, #e0e0e0, #ffffff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content h1:hover {
  animation: heroTextShimmer 2s linear infinite;
}

@keyframes heroTextReveal {
  0% {
    opacity: 0;
    transform: translateY(30px);
    letter-spacing: 0.3em;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: normal;
  }
}

@keyframes heroTextShimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

.hero-content span {
  font-weight: 100;
  font-style: italic;
}

.hero-content p {
  font-size: 1rem;
  font-weight: lighter;
  animation: fadeInUp 1s cubic-bezier(0.19, 1, 0.22, 1) 0.4s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card {
  width: 320px;
  padding: 10px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.card:hover img {
  transform: scale(1.05);
}

.card-title {
  font-size: clamp(1rem, 1vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 5px;
  color: #111;
  transition: color 0.3s ease;
}

.card:hover .card-title {
  color: #378cb6;
}

.card-description {
  font-size: clamp(0.75rem, 0.7vw, 1rem);
  line-height: 1.5;
  color: #555;
  text-align: justify;
}

.about {
  padding-top: 50px;
  background-color: white;
  position: relative;
}

.about .sectionWrapper {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.sectionWrapper {
  max-width: 90vw;
  margin: 100px auto;
}

.about .content {
  position: sticky;
  top: 12vh;
  width: 40%;
  height: fit-content;
  font-size: 2.1vw;
  line-height: 1.6;
}

.about .content p {
  /* text-align: justify; */
  color: black;
}

.about .content img {
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), filter 0.5s ease;
}

.about .content img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.images {
  width: 60%;
}

.images img {
  width: 100%;
  margin-bottom: 50px;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s ease,
    filter 0.5s ease;
  border-radius: 4px;
}

.images picture {
  display: block;
  margin-bottom: 50px;
}

.images picture img {
  margin-bottom: 0;
}

.images img:hover {
  transform: scale(1.03);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  filter: brightness(1.05);
}

.text {
  color: #777;
  transition: color 0.4s ease;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: space-between;
}

.char {
  color: #0a0a0a80;
}

.wrapper {
  height: 85vh;
}

/* .media {
  background-color: white;
  position: relative;
} */

.media .sectionWrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.media > div:first-child img {
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), filter 0.5s ease;
}

.media > div:first-child img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.media h1 {
  color: black;
  font-size: 2.1vw;
  line-height: 1.6;
  font-weight: 500;
}

.mediaCarousel img {
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), filter 0.4s ease,
    box-shadow 0.4s ease;
  filter: grayscale(20%);
}

.mediaCarousel img:hover {
  transform: scale(1.08);
  filter: grayscale(0) brightness(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.team {
  min-height: 400vh;
  position: relative;
}

.team > div:first-child {
  position: sticky;
  top: 20vh;
  z-index: 5;
  padding-bottom: 20px;
}

/* .team > div:first-child img {
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), filter 0.5s ease;
}

.team > div:first-child img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
} */

.team-wrapper {
  height: 85vh;
  width: 100%;
  /* max-width: 900px; */
  margin: 0 auto;
  position: sticky;
  top: 15vh;
  overflow: visible;
  /* background-color: red; */
}

.teamCard {
  position: absolute;
  /* transition: filter 0.4s ease; */
}

.teamCard:hover {
  z-index: 10 !important;
}

.teamCard > img {
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), filter 0.4s ease;
}

.teamCard:hover > img {
  transform: scale(1.08);
  filter: brightness(1.1);
}

.teamCard a {
  position: absolute;
  left: 0;
}

.teamCard a img {
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
    filter 0.4s ease;
}

.teamCard a:hover img {
  transform: scale(1.25);
  filter: brightness(1.3) drop-shadow(0 5px 15px rgba(0, 119, 181, 0.5));
}

.team .teamCards {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  /* pointer-events: none; */
}

/* starting transforms: only card-1 visible, others hidden */
.card-1 {
  opacity: 1;
  transform: translateX(0) scale(1);
  z-index: 2;
}
.card-2,
.card-3,
.card-4 {
  opacity: 0;
  transform: translateX(0) scale(0.8);
}

/* Center content styling */
.team .center-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 0;
  z-index: 10;
  max-width: 500px;
}

.team .center-content h2 {
  font-size: 32px;
  /* margin-bottom: 12px; */
  color: #333;
}

.team .center-content p {
  font-size: clamp(0.5rem, 1vw, 1.5rem);
  color: #666;
  line-height: 1.4;
}

.engineered {
  position: relative;
  background-image: url("./assets/responsive/misc/collab-1920.png");
  height: 90vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.engineered .sectionWrapper {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  padding: 50px 0;
  margin: 0 auto;
  color: white;
}

.collaboration {
  position: relative;
  background-image: url("./assets/collabrationbg.svg");
  min-height: 800vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.overlay {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.72);
  width: 100%;
  height: 100%;
}

.collaboration .sectionWrapper {
  position: sticky;
  top: 12vh;
  height: 85vh;
  display: flex;
  flex-direction: column;
  z-index: 1;
  padding: 40px 0;
}

.collaboration .sectionWrapper > div:first-child {
  flex-shrink: 0;
}

.collaboration .sectionWrapper > div:first-child img {
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), filter 0.5s ease;
}

.collaboration .sectionWrapper > div:first-child img:hover {
  transform: scale(1.05);
  filter: brightness(1.2);
}

.collaboration .content {
  display: flex;
  align-items: center;
  gap: 50px;
  height: fit-content;
}

.collaboration .content > div img {
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s ease;
}

.collaboration .content:hover > div img {
  transform: scale(1.03);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.collaboration .content h1 {
  transition: color 0.4s ease;
}

.collaboration .content:hover h1 {
  color: #80b4c4;
}

.cwrapp {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.collaboration .cwrapp .cards {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.collaboration .cwrapp .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.collab-1 {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  z-index: 2;
}
.collab-2,
.collab-3,
.collab-4,
.collab-5,
.collab-6,
.collab-7,
.collab-8,
.collab-9,
.collab-10 {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.7);
  z-index: 1;
}

.collaboration .content h1 {
  color: white;
  font-size: 2.1vw;
  line-height: 1.6;
  font-weight: 500;
  text-align: center;
}

.engineered h1 {
  text-align: center;
  margin-bottom: 17px;
  font-size: 25px;
  transition: text-shadow 0.4s ease;
}

.engineered h1:hover {
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.engineered .feature-grid h3 {
  /* font-size: 14px; */
  font-weight: 500;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.feature-item {
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  position: relative;
  transition: background-color 0.4s ease,
    transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.feature-item:hover {
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}

.feature-item .icon {
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
    filter 0.4s ease;
}

.feature-item:hover .icon {
  transform: scale(1.2) translateY(-5px);
  filter: drop-shadow(0 8px 15px rgba(55, 140, 182, 0.4));
}

.feature-item h3 {
  transition: color 0.3s ease;
}

.feature-item:hover h3 {
  color: #80b4c4;
}

.icon {
  width: 32px;
  margin-bottom: 15px;
}

/* INTERNAL BORDERS */
.feature-item:not(:nth-child(3n)) {
  border-right: 1px solid rgba(255, 255, 255, 0.3); /* vertical internal lines */
}

.feature-item:nth-child(n + 4) {
  border-top: 1px solid rgba(255, 255, 255, 0.3); /* horizontal internal lines */
}

/* Responsive */
@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-item:not(:nth-child(2n)) {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
  }
  .feature-item:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }
}

@media (max-width: 480px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .feature-item {
    border-right: none;
  }
  .feature-item:nth-child(n + 2) {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }
}

.becomePartner .sectionWrapper {
  position: relative;
  background-image: url("./assets/plane/1-1.jpeg");
  height: 80vh;
  margin: 50px auto;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 20px;
}

.becomePartner .sectionWrapper h1 {
  color: white;
}

.becomePartner .sectionWrapper img {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 500px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), filter 0.5s ease;
}

.becomePartner .sectionWrapper img:hover {
  transform: scale(1.05) translateY(-10px);
  filter: brightness(1.1);
}

.becomePartner .sectionWrapper .buttonsContainer {
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: white;
  color: black;
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 15px;
  border-radius: 10px 0 0 0;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
}

.becomePartner .sectionWrapper .buttonsContainer:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.becomePartner .sectionWrapper .buttonsContainer h2 {
  font-size: 1.8rem;
}

.becomePartner .sectionWrapper .buttonsContainer p {
  font-size: 0.9rem;
}

.becomePartner .sectionWrapper .buttonsContainer button.secondary {
  padding: 15px;
  margin-top: 10px;
  border: none;
  background-color: black;
  color: white;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    background-color 0.3s ease, box-shadow 0.4s ease;
}

.becomePartner .sectionWrapper .buttonsContainer button.secondary:hover {
  transform: translateY(-3px);
  background-color: #222;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.becomePartner .sectionWrapper .buttonsContainer button.primary {
  padding: 15px;
  margin-top: 10px;
  border: none;
  background: linear-gradient(to bottom, #378cb6, #3a5a7c);
  box-shadow: 0px 4px 15px rgba(55, 140, 182, 0.4);
  color: white;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
}

.becomePartner .sectionWrapper .buttonsContainer button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(55, 140, 182, 0.5);
}

/* ==================== MOBILE RESPONSIVE STYLES ==================== */

/* Tablet styles (768px - 1024px) */
@media (max-width: 1024px) {
  .container {
    max-width: 90vw;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .card {
    width: 280px;
  }

  .about {
    gap: 30px;
  }

  .about .content {
    width: 45%;
    font-size: 2.5vw;
  }

  .images {
    width: 55%;
  }

  .media h1,
  .collaboration .content h1 {
    font-size: 2.5vw;
  }

  .team .center-content h2 {
    font-size: 28px;
  }

  /* Responsive background images for tablet */
  .firstSec {
    background-image: url("./assets/responsive/plane/2-1024.jpg");
  }
  .secondSec {
    background-image: url("./assets/responsive/plane/3-1024.png");
  }
  .thirdSec {
    background-image: url("./assets/responsive/plane/4-1024.png");
  }
  .fourthSec {
    background-image: url("./assets/responsive/plane/15-1024.jpeg");
  }
  .fifthSec {
    background-image: url("./assets/responsive/plane/10-1024.jpeg");
  }
  .engineered {
    background-image: url("./assets/responsive/misc/collab-1024.png");
  }

  .becomePartner .sectionWrapper img {
    width: 400px;
  }

  .becomePartner .sectionWrapper .buttonsContainer {
    max-width: 350px;
  }
}

/* Mobile landscape and small tablets (576px - 768px) */
@media (max-width: 768px) {
  .section {
    height: 100vh;
    min-height: 100vh;
    background-attachment: scroll;
  }

  /* Responsive background images for mobile */
  .firstSec {
    background-image: url("./assets/responsive/plane/2-768.jpg");
  }
  .secondSec {
    background-image: url("./assets/responsive/plane/3-768.png");
  }
  .thirdSec {
    background-image: url("./assets/responsive/plane/4-768.png");
  }
  .fourthSec {
    background-image: url("./assets/responsive/plane/15-768.jpeg");
  }
  .fifthSec {
    background-image: url("./assets/responsive/plane/10-768.jpeg");
  }

  .container {
    max-width: 95vw;
    flex-direction: column;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .card {
    width: 100%;
    max-width: 320px;
  }

  .certifiedLogo {
    width: 120px;
    bottom: 15px;
    right: 15px;
  }

  /* About Section */
  .about {
    flex-direction: column;
    min-height: auto;
    gap: 30px;
  }

  .about .sectionWrapper {
    display: flex;
    gap: 50px;
    flex-direction: column;
  }

  .about .content {
    position: static;
    width: 100%;
    font-size: 4vw;
  }

  .images {
    width: 100%;
  }

  .images img {
    margin-bottom: 30px;
  }

  /* Media Section - Show one image at a time */
  .media h1 {
    font-size: 5vw;
  }

  .wrapper {
    height: auto;
    min-height: 60vh;
  }

  .mediaCarousel .owl-stage {
    display: flex;
    align-items: center;
  }

  .mediaCarousel .item {
    width: 100%;
    padding: 0 10px;
  }

  .mediaCarousel .item img {
    width: 100%;
    height: 50vh;
    object-fit: cover;
    border-radius: 10px;
  }

  /* Team Section - Stack vertically */
  .team {
    min-height: auto !important;
    height: auto !important;
    padding: 50px 0;
  }

  .team > div:first-child {
    position: relative;
    top: auto;
    margin-bottom: 30px;
  }

  .team-wrapper {
    position: relative !important;
    top: auto !important;
    height: auto !important;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 30px;
  }

  .team .teamCards {
    position: relative !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .teamCard {
    position: relative !important;
    transform: none !important;
    opacity: 1 !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
  }

  .teamCard > img {
    max-width: 280px;
    width: 100%;
  }

  .team .center-content {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    opacity: 1 !important;
    margin-bottom: 30px;
    padding: 0 20px;
  }

  .team .center-content h2 {
    font-size: 28px;
  }

  .team .center-content p {
    font-size: 1rem;
  }

  /* Collaboration Section - Stack vertically */
  .collaboration {
    min-height: auto !important;
    height: auto !important;
    /* padding: 50px 0; */
  }

  .collaboration .sectionWrapper {
    position: relative !important;
    top: auto !important;
    height: auto !important;
    padding: 20px 0;
  }

  .collaboration .cwrapp {
    position: relative !important;
    height: auto !important;
  }

  .collaboration .cwrapp .cards {
    position: relative !important;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .collaboration .cwrapp .content {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    opacity: 1 !important;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 30px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  .collaboration .cwrapp .content:last-child {
    border-bottom: none;
  }

  .collaboration .content h1 {
    font-size: 5vw;
  }

  .collaboration .content > div img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: block;
  }

  /* Engineered Section */
  .engineered {
    height: auto;
    min-height: 80vh;
    background-attachment: scroll;
    background-image: url("./assets/responsive/misc/collab-768.png");
  }

  .engineered .sectionWrapper {
    position: relative;
    top: auto;
    transform: none;
  }

  .engineered h1 {
    font-size: 20px;
  }

  /* Become Partner Section */
  .becomePartner .sectionWrapper {
    height: auto;
    min-height: 60vh;
    background-image: url("./assets/responsive/misc/partnerBg-768.png");
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 0;
  }

  .becomePartner .sectionWrapper img {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    max-width: 350px;
    margin: 0 auto 20px;
  }

  .becomePartner .sectionWrapper .buttonsContainer {
    position: relative;
    bottom: auto;
    right: auto;
    max-width: 100%;
    border-radius: 10px 10px 0 0;
  }

  .becomePartner .sectionWrapper .buttonsContainer h2 {
    font-size: 1.5rem;
  }
}

/* Mobile portrait (up to 576px) */
@media (max-width: 576px) {
  .section {
    height: 100vh;
    min-height: 100vh;
  }

  .container {
    max-width: 92vw;
  }

  .heroSection {
    min-height: auto;
    height: 30vh;
  }

  .heroSection .certifiedLogo {
    width: 60px;
  }

  .hero-content h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
  }

  .hero-content p {
    font-size: 0.55rem;
  }

  .card {
    width: 100%;
    padding: 8px;
  }

  .card-title {
    font-size: 1rem;
  }

  .card-description {
    font-size: 0.8rem;
  }

  .certifiedLogo {
    width: 110px;
    bottom: 10px;
    right: 10px;
  }

  .sectionWrapper {
    max-width: 95vw;
    margin: 50px auto;
  }

  /* About Section */
  .about .content {
    font-size: 5vw;
  }

  .about .content p {
    font-size: 4vw;
  }

  /* Media Section */
  .media h1 {
    font-size: 6vw;
  }

  .mediaCarousel .item img {
    height: 45vh;
  }

  /* Team Section */
  .team {
    padding: 30px 0;
  }

  .teamCard > img {
    max-width: 250px;
  }

  .team .center-content h2 {
    font-size: 20px;
  }

  /* Collaboration Section */
  /* .collaboration {
    padding: 30px 0;
  } */

  .collaboration .cwrapp .cards {
    gap: 30px;
  }

  .collaboration .content h1 {
    font-size: 6vw;
  }

  .collaboration .content > div img {
    max-width: 260px;
  }

  /* Engineered Section */
  .engineered h1 {
    font-size: 18px;
  }

  .feature-item {
    padding: 25px 15px;
  }

  .icon {
    width: 28px;
  }

  /* Become Partner */
  .becomePartner .sectionWrapper {
    min-height: 50vh;
    margin: 30px auto;
  }

  .becomePartner .sectionWrapper img {
    max-width: 280px;
  }

  .becomePartner .sectionWrapper .buttonsContainer h2 {
    font-size: 1.3rem;
  }

  .becomePartner .sectionWrapper .buttonsContainer p {
    font-size: 0.85rem;
  }

  .becomePartner .sectionWrapper .buttonsContainer button.secondary,
  .becomePartner .sectionWrapper .buttonsContainer button.primary {
    padding: 12px;
    font-size: 0.9rem;
  }
}
