@font-face {
  font-family: "Cabinet";
  src: url(CabinetGrotesk-Variable.ttf);
}
@font-face {
  font-family: "Satoshi";
  src: url(Satoshi-Variable.ttf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}
body {
  font-family: "Cabinet", sans-serif;
  background-color: #f8f5f1;
}

/* Hero Section */
.hero-section {
  background: url("assests/about-page.avif") no-repeat center/cover;
  height: 60vh;
  position: relative;
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.tag {
  background: #e2252d;
  color: white;
  border: none;
  font-size: 12px;
  font-weight: bold;
  border-radius: 20px;
  padding: 6px 16px;
  margin-bottom: 20px;
  width: fit-content;
}
/* 🔴 Overlay to darken background */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 48%);
  z-index: 1;
}

/* 🟡 Make sure all inner content stays above overlay */
.hero-section * {
  position: relative;
  z-index: 2;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}
.logo1 img {
  width: 160px;
}
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
  align-items: center;
  justify-content: center;
}
.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-family: "Cabinet";
  font-size: 1.1vw;
}
.active-nav {
  background-color: #e2252d;
  padding: 12px;
  border-radius: 6px;
}
.visit-btn {
  background-color: #e2252d;
  color: white;
  padding: 10px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-family: "Cabinet";
  font-size: 1.1vw;
}
.visit-btn {
  background-color: #e2252d;
  color: white;
  padding: 10px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-family: "Cabinet";
  font-size: 1.1vw;
}
.visit-btn a {
  color: white;
  text-decoration: none;
}
/* Hero Content */
.hero-content {
  text-align: center;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  margin-bottom: 17vh;
}
.hero-content h1 {
  font-family: "Cabinet";
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
}
/* 2nd */
.tag {
  background: #e2252d;
  color: white;
  border: none;
  font-size: 12px;
  font-weight: bold;
  border-radius: 20px;
  padding: 6px 16px;
  margin-bottom: 20px;
  width: fit-content;
}
/* 2 */
.news-section {
  width: 100vw;
  padding: 40px 66px;
}

.main-heading {
  font-size: 32px;
  margin-bottom: 30px;
}

.news-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 25px;
  margin-top: 20px;
}

.news-card {
  background: white;
  width: 320px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}
.news-card img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}
.news-header {
  color: white;
  padding: 20px;
  font-weight: bold;
  text-align: center;
  clip-path: ellipse(130% 100% at 50% 0%);
  margin-top: -7px;
}

.news-body {
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 50px;
  padding-top: 25px;
  font-size: 15px;
  color: #555;
}
.date {
  position: absolute;
  bottom: 15px;
}
/* Different colors for each brand */
.forbes {
  background: #e2252d;
}

.scale {
  /* background: #25E2DA; */
  /* background-color: #263c93; */
  background-color: #333;
}

.ws {
  background: #e2252d;
}

.zdnet {
  /* background: #25e2da; */
  /* background-color: #263c93; */
  background-color: #333;
}

/* FOOTER */
footer {
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
  color: #fff;
  background-color: #e2252d;
}
#footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 40px 30px;
  background-color: #e2252d;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

#footer-brand img {
  width: 200px;
  margin-bottom: 10px;
}

#footer-brand p {
  margin: 6px 0;
}

#footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

#footer-social img {
  width: 40px;
  height: 40px;
  padding: 8px;
  border: 1px solid #fff;
  border-radius: 10px;
}

#footer-nav,
#footer-resources,
#footer-location {
  min-width: 180px;
}

#footer-nav h4,
#footer-resources h4,
#footer-location h4 {
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: bold;
}

#footer-nav ul,
#footer-resources ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#footer-nav li,
#footer-resources li {
  margin-bottom: 10px;
  color: #fff;
}

#footer-nav a,
#footer-resources a,
#footer-location a {
  text-decoration: none;
  color: #fff;
}
#footer-location {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
#footer-location img {
  width: 18px;
  vertical-align: middle;
  margin-right: 6px;
  margin-top: 5px;
}

#footer-bottom {
  margin-top: 40px;
  padding: 20px 40px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px;
  color: #fff;
  background-color: #e2252d;
}

#footer-links a {
  text-decoration: none;
  color: #fff;
  margin: 0 5px;
}
footer h4 {
  font-family: "Cabinet";
}
#footer-location .box {
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .news-card {
    width: 220px;
  }
  .news-section h2 {
    font-size: 24px;
  }
}

/* Mobile screens */
@media (max-width: 768px) {
  .news-container {
    flex-direction: column;
    align-items: center;
  }
  .news-card {
    width: 90%;
    max-width: 350px;
  }
  .news-section h2 {
    font-size: 22px;
  }
}

/* Very small screens */
@media (max-width: 480px) {
  .news-card {
    width: 100%;
    border-radius: 0;
  }
  .news-header {
    padding: 15px;
    font-size: 14px;
  }
  .news-body {
    font-size: 13px;
  }
}

.offers-section {
  width: 100vw;
  padding: 40px 66px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.award-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 25px;
}
.offer-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: left;
  flex: 1 1 calc(25% - 20px); /* 4 cards in a row on large screens */
  max-width: 320px;
  min-width: 250px;
}

.image-container {
  position: relative;
}

.image-container img {
  width: 100%;
  display: block;
  height: 220px;
  object-fit: cover;
}

.logo-badge {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  color: black;
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.logo-badge .pay {
  background: #f3f3f3;
  border-radius: 4px;
  padding: 2px 4px;
  font-size: 12px;
  margin-left: 4px;
}

.tag-inner {
  font-size: 13px;
  font-weight: bold;
  margin: 10px 15px;
  display: inline-block;
  padding: 4px 8px;
  border-radius: 50px;
}

.blue {
  background: #e6f4ff;
  color: #0073e6;
}
.orange {
  background: #fff1e6;
  color: #ff6600;
}
.yellow {
  background: #fff9e6;
  color: #e6a300;
}
.pink {
  background: #ffe6f0;
  color: #d6336c;
}

h3 {
  margin: 0 15px;
  font-size: 18px;
}

.offer-card p {
  margin: 4px 15px 15px;
  font-size: 14px;
  color: #555;
}

/* Responsive Design */

/* Tablet: 2 cards per row */
@media (max-width: 992px) {
  .offer-card {
    flex: 1 1 calc(45% - 20px);
  }
}

/* Mobile: 1 card per row */
@media (max-width: 600px) {
  .offer-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
