@font-face {
  font-family: "caros-light";
  src: url(../fonts/caros/Caros-Light.otf) format("truetype");
}
@font-face {
  font-family: "caros-bold";
  src: url(../fonts/caros/Caros-Bold.otf) format("truetype");
}
:root {
  --heading-font: "caros-bold";
  --heading-font-weight: bolder;
  --heading-letter-spacing: -2px;
  --sub-heading-letter-spacing: -1px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  background-image: url("../images/bg/Images.png");
  overflow-x: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  font-family: "caros-light";
}

/* Glassmorphism for navbar-container only on selected pages */
body.glass-header .navbar-container {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: fixed;
  z-index: 10;
}

/* Make sure the page content behind the header is visible */
body.glass-header header {
  position: absolute; /* or fixed if you want it to stay on top when scrolling */
  top: 0;
  left: 0;
  width: 100%;
  background: transparent; /* ensure transparency */
}

/*=================================================================
===================================================================
=======================SECTION 1========================*/
.marquee-section {
  padding-top: 1rem;
  padding-bottom: 5rem;
  width: 100%;
}
.marquee-wrapper {
  background-image: url("../images/customers/fotopia-hero-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 97%;
  border-radius: 30px;
  height: 100%;
}
.wrap {
  height: 400px;
}

/* Styles for the hero text and buttons on the left */
.hero-content {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  text-align: center;
}
.marquee-container {
  display: flex;
  justify-content: center;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

.section-title {
  font-size: 1rem;
  font-family: var(--heading-font);
  font-weight: var(--heading-font-weight);
  letter-spacing: var(--heading-letter-spacing);
  line-height: 1;
}

.red-text {
  color: #f15852 !important;
  font-weight: bold !important;
}

/*=================================================================
===================================================================
=======================SECTION 2========================*/
.cards-section {
  /* border: 3px solid black; */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100%;
  position: relative;
  top: -200px;
}
.card-wrapper {
  width: 90%;
  /* border: 3px solid red; */
  gap: 30px;
}
.card-wrap {
  /* border: 3px solid blue; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  background-color: white;
  border-radius: 30px !important;
  border: none !important;
}
.card-img {
  /* border: 3px solid purple; */
  background-color: #f1f1f1;
  width: 90%;
  height: 30vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5%;
  border-radius: 30px;
}
.card-img img {
  width: 20%;
}
.card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: center; */
}
.card-wrap h5 {
  font-size: 1.7rem;
  color: #f15852;
  /* font-family: var(--heading-font);
  font-weight: var(--heading-font-weight); */
}
.card-wrap h6 {
  font-size: 1rem;
  color: black;
  text-transform: capitalize;
  /* font-family: var(--heading-font);
  font-weight: var(--heading-font-weight); */
}
.card-wrap p {
  margin: 5% 0;
  font-size: 0.9rem;
  width: 85%;
  /* font-family: var(--heading-font);
  font-weight: var(--heading-font-weight); */
}
.card-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: white !important;
  border-top: none !important;
}
.card-footer ul {
  display: flex;
  gap: 20px;
  list-style-type: none;
}

/*=================================================================
===================================================================
=======================SECTION 3========================*/
/* ================= Staff Section ================= */
.staff-section {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  margin-bottom: 5%;
}

.staff-wrapper {
  width: 100%;
}

.staff-wrapper h2 {
  font-family: var(--heading-font);
  font-weight: var(--heading-font-weight);
  letter-spacing: var(--heading-letter-spacing);
  font-size: 2.5rem;
  margin-bottom: 2%;
}

.staff-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap; /* Allow wrapping */
}

.staff {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* ✅ Circle fix */
.staff-img {
  background-color: #f1f1f1;
  aspect-ratio: 1 / 1; /* Keep it a square */
  width: 150px; /* Default size */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5%;
  border-radius: 50%; /* Makes it circular */
  overflow: hidden;
}

.staff-img img {
  width: 50%;
  height: auto;
}

.staff h3 {
  font-family: var(--heading-font);
  font-weight: var(--heading-font-weight);

  font-size: 1rem;
  color: black;
  margin-top: 15px;
}

/* ================= Responsive Breakpoints ================= */

/* Large screens (≥1200px) - 6 per row */
@media (min-width: 1200px) {
  .staff {
    width: 16%;
  }
}

/* Medium screens (992px – 1199px) - 4 per row */
@media (max-width: 1199.98px) {
  .staff {
    width: 22%;
  }
}

/* Tablets (768px – 991px) - 3 per row */
@media (max-width: 991.98px) {
  .staff {
    width: 30%;
  }
  .staff-img {
    width: 140px;
  }
  .card-wrapper {
    flex-direction: column;
  }
}

/* Small devices (576px – 767px) - 2 per row */
@media (max-width: 767.98px) {
  .staff {
    width: 45%;
  }
  .staff-img {
    width: 120px;
  }
}

/* Extra small devices (<576px) - 1 per row */
@media (max-width: 575.98px) {
  .staff {
    width: 100%;
  }
  .staff-img {
    width: 100px;
  }
}
