/* --- Base / container --- */
:root {
  --container-max: 1220px;
  --muted: #6b7280;
  --border: #e5e7eb;
  --bg: #fff;
  --accent: #111827;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Albert Sans';
  color: var(--accent);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
   width: 1440px;
  margin: auto;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ↓↓↓ UPDATED PADDING ↓↓↓ */
.container {
  max-width: var(--container-max);
  padding: 0 0.75rem;
}

/* ↑↑↑ UPDATED PADDING ↑↑↑ */

header {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.logo-img {
  height: 50px;
  /* adjust size */
  width: auto;
  display: block;
}

.nav-row {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* logo */
.logo {
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--accent);
  text-decoration: none;
}

/* desktop nav */
.nav-desktop {
  display: none;
  gap: 1.75rem;
  align-items: center;
}

.nav-desktop a {
  font-size: .875rem;
  color: var(--accent);
  text-decoration: none;
  transition: color .15s;
  font-family: Albert Sans;
  font-weight: 500;
}

.nav-desktop a:hover {
  color: #374151;
}

/* right side */
.actions {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.btn-icon {
  background: transparent;
  border: none;
  padding: .375rem;
  border-radius: .375rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-icon:hover {
  background: #f3f4f6;
}

/* search */
.search-desktop {
  display: none;
  position: relative;
  align-items: center;
}

.search-desktop input {
  padding: .5rem 0.75rem .5rem 2.5rem;
  border: 1px solid #d1d5db;
  border-radius: 9999px;
  font-size: .875rem;
  width: 220px;
}

.search-desktop input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(156, 163, 175, 0.08);
  border-color: #9ca3af;
}

.search-desktop .search-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  color: var(--muted);
}

/* mobile menu */
#mobile-menu {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  overflow: hidden;
  max-height: 0;
  transition: max-height .5s ease, padding .25s ease;
  padding: 0 1.5rem;
}

#mobile-menu.open {
  max-height: 480px;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

#mobile-menu a {
  display: block;
  padding: .5rem 0;
  color: #374151;
  text-decoration: none;
  font-size: .95rem;
  font-family: "Albert Sans", sans-serif;
  font-weight: 500
}

#mobile-menu .search-mobile {
  position: relative;
  margin-top: .5rem;
}

#mobile-menu .search-mobile input {
  width: 100%;
  padding: .5rem .75rem .5rem 2.5rem;
  border-radius: 9999px;
  border: 1px solid #d1d5db;
  font-size: .95rem;
}

#mobile-menu .search-mobile .search-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  color: var(--muted);
}

/* helpers */
.hidden {
  display: none !important;
}

/* Responsive: show desktop nav/search on md+ */
@media (min-width: 1025px) {
  .nav-desktop {
    display: flex;
  }

  .search-desktop {
    display: flex;
  }

  .mobile-toggle {
    display: none;
  }

  #mobile-menu {
    display: none !important;
  }
}

/* main section */

/* HERO BACKGROUND */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding: 50px; */
  height: 70vh;
  background: linear-gradient(to right, #EEE8E7 50%, #d3ecec 50%);
  overflow: hidden;
  /* padding-top: 10px; */
}

/* @media (max-width: 1440px){

       .hero {
        height: 140vh;
        }
    } */

/* BACKGROUND LARGE HEADING */
.background-heading {
  position: absolute;
  top: 30%;
  width: 100%;
  transform: translateY(-50%);
  font-size: 70px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 1;
  color: black;
  letter-spacing: 8px;
  text-align: center;
  z-index: 0;
  left: -10px;
  font-family: 'Albert Sans';
}

/* LEFT CONTENT */
.hero-left {
  max-width: 38%;
  z-index: 2;
  position: relative;
  top: 18%;
}

.subtext {
  margin: 20px 0;
  font-size: 16px;
  color: #444;
}

/* BUTTON */
.shop-btn {
  padding: 12px 26px;
  background: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  font-family: 'Albert Sans';
}

.shop-btn .icon {
  width: 26px;
  height: 26px;
  background: black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CUSTOMERS BOX (UPDATED) */
.customers-box {
  background: white;
  padding: 15px 20px;
  width: fit-content;
  margin-top: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

/* ROW with images + 50+ */
.customer-row {
  display: flex;
  align-items: center;
  gap: 15px;
}

.customer-avatars {
  display: flex;
  align-items: center;
}

.customer-avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
  margin-right: -10px;
}

.customer-number {
  font-size: 22px;
  font-weight: 700;
}

/* TEXT BELOW ROW */
.customer-text {
  font-size: 15px;
  color: #222;
  max-width: 190px;
  line-height: 1.3;
}

/* CENTER MODEL IMAGE */
.hero-center .main-model {
  /* width: 420px;
      border-radius: 12px;
      object-fit: cover;
      position: relative;
      top: 70px; */
  width: 35%;
  border-radius: 12px;
  object-fit: cover;
  position: absolute;
  /* top: 70px; */
  top: 50% !important;
  left: 45% !important;
  transform: translate(-50%, -50%);
}

/* RIGHT SIDE IMAGES */
.hero-right {
  display: flex;
  gap: 20px;
  margin-left: 40px;
  position: relative;
  top: 150px;
}

.side-img {
  width: 230px;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
  .hero {
    flex-direction: column;
    height: auto;
    padding: 40px;
    text-align: center;
  }

  .hero-left {
    max-width: 100%;
    top: 0;
  }

  .background-heading {
    font-size: 48px;
  }

  .hero-center .main-model {
    width: 320px;
    margin: 30px 0;
  }

  .hero-right {
    margin-left: 0;
  }

  .side-img {
    width: 180px;
    height: 210px;
  }
}

/* 1024px screens → Hero height 130vh */
@media (max-width: 1024px) {
  .hero {
    height: 130vh !important;
  }
}

/* Very large screens (2500px and above) → Hero height 89vh */
@media (min-width: 2500px) {
  .hero {
    height: 89vh !important;
  }
}

@media (max-width: 768px) {
  .background-heading {
    font-size: 32px;
  }

  .hero {
    padding: 30px;
    background: #EEE8E7;
  }

  .hero-right {
    flex-direction: column;
  }

  .side-img {
    max-width: 250px;
    margin: 0 auto;
  }

  .hero-center .main-model {
    width: 260px;
  }
}

@media (max-width: 480px) {
  .background-heading {
    display: none;
  }

  .subtext {
    font-size: 14px;
  }

  .shop-btn {
    width: 100%;
    justify-content: center;
  }

  .customers-box {
    text-align: center;
    align-items: center;
  }
}

/* ============================ */
/* RESPONSIVE (1200px) */
/* ============================ */
@media (max-width: 1200px) {
  .hero {
    flex-direction: column;
    height: auto;
    padding: 40px;
    text-align: center;
  }

  .hero-left {
    max-width: 100%;
    top: 0;
  }

  .background-heading {
    font-size: 48px;
  }

  .hero-center .main-model {
    width: 320px;
    margin: 30px 0;
  }

  .hero-right {
    margin-left: 0;
  }

  .side-img {
    width: 180px;
    height: 210px;
  }
}

/* ============================ */
/* 1024px (Tablet Landscape) */
/* ============================ */
@media (max-width: 1024px) {
  .hero {
    height: 130vh !important;
  }
}

/* ============================ */
/* 768px (Tablet / Mobile) */
/* ============================ */
@media (max-width: 768px) {
  .background-heading {
    font-size: 32px;
  }

  .hero {
    padding: 30px;
    background: #EEE8E7;
  }

  .hero-right {
    flex-direction: column;
  }

  .side-img {
    max-width: 250px;
    margin: 0 auto;
  }

  .hero-center .main-model {
    width: 260px;
  }
}

/* ============================ */
/* 480px (Mobile) */
/* ============================ */
@media (max-width: 480px) {
  .background-heading {
    display: none;
  }

  .subtext {
    font-size: 14px;
  }

  .shop-btn {
    width: 100%;
    justify-content: center;
  }

  .customers-box {
    text-align: center;
    align-items: center;
  }
}


/* ====================================== */
/* BIG SCREEN FIXES (1400px+) */
/* ====================================== */
@media (min-width: 1400px) {

  .hero-left,
  .hero-center .main-model,
  .hero-right {
    /* top: 0 !important; */
    margin-top: 40px;
  }

  .hero {
    /* height: auto;
    min-height: 90vh;
    max-width: 1600px;
    margin: 0 auto;
    padding: 60px 80px; */
    width: 1440px !important;
    margin: 0 auto;
    padding: 60px 80px;
  }
}

/* ====================================== */
/* EXTRA LARGE SCREENS (1600px+) */
/* ====================================== */
@media (min-width: 1600px) {
  .hero {
    gap: 60px;
  }

  .hero-left {
    max-width: 32%;
  }

  .hero-right {
    gap: 30px;
  }
}

/* ====================================== */
/* SUPER WIDE DISPLAYS (2000px+) */
/* ====================================== */
@media (min-width: 2000px) {
  .background-heading {
    font-size: 110px;
    opacity: 0.4;
  }

  .hero-center .main-model {
    width: 520px;
  }

  .side-img {
    width: 300px;
    height: 340px;
  }
}

/* ====================================== */
/* ULTRA-WIDE SCREEN (2500px+) */
/* ====================================== */
@media (min-width: 2500px) {
  .hero {
    height: 89vh !important;
  }
}

/*  */

/* home collection section */
.collection-section {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  margin-top: 50px;
}

.section-title {
  text-transform: uppercase;
  font-size: 12px;
  color: #0e0e0e;
  letter-spacing: 1px;
}

.heading {
  margin: 10px 0 30px;
  font-size: 32px;
  font-weight: 600;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.collection-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.collection-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.collection-item:hover img {
  transform: scale(1.05);
}

.label {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: #fff;
  padding: 6px 12px;
  font-size: 14px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 600px) {
  .heading {
    font-size: 24px;
  }
}

/*  */

/* featured colletion section */

.products-section {
  max-width: 1250px;
  margin: auto;
  padding: 40px 20px;
}

.section-title {
  text-transform: uppercase;
  font-size: 12px;
  color: #1d1c1c;
  letter-spacing: 1px;
}

.heading {
  margin: 10px 0 30px;
  font-size: 32px;
  font-weight: 600;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.product-card {
  display: flex;
  flex-direction: column;
}

.product-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 6px;
}

.product-info {
  margin-top: 10px;
}

.product-name {
  font-size: 15px;
  color: #333;
  margin-bottom: 5px;
}

.product-price {
  font-size: 14px;
  color: #555;
}

@media (max-width: 600px) {
  .heading {
    font-size: 26px;
  }

  .product-card img {
    height: 280px;
  }
}

/*  */


/* icon column division section  */

.features-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 40px;
  align-items: center;
}

.features-section img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 40px;
}

.feature-item {
  padding-top: 18px;
  border-top: 1px solid #e5e5e5;
}

.feature-title {
  font-weight: bold;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

.feature-title i {
  font-size: 17px;
  color: #111;
}

.feature-text {
  font-size: 14px;
  color: #555;
  max-width: 260px;
}

/* ------- COLOR BAND ------- */
.color-band {
  width: 100%;
  height: 120px;
  background: #cde6e1;
  margin: 60px 0;
}

/* ------- MISSION SECTION ------- */
.mission-section {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 40px;
  align-items: start;
}

.mission-section img {
  width: 100%;
  border-radius: 8px;
}

.mission-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  max-width: 600px;
}

.mission-text {
  font-size: 14px;
  color: #555;
  max-width: 600px;
  margin-bottom: 20px;
}

.mission-btn {
  padding: 10px 22px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.mission-btn:hover {
  background: #f2f2f2;
}

.mission-btn i {
  background: #f0f0f0;
  padding: 5px;
  border-radius: 50%;
  font-size: 12px;
  /* reduced icon size */
}

@media (max-width: 900px) {

  .features-section,
  .mission-section {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .features-list {
    margin-top: 20px;
  }
}

/*  */

/* latest product */
.products-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.section-label {
  font-size: 12px;
  letter-spacing: 1px;
  color: #555;
  margin-bottom: 5px;
  font-weight: 500;
}

.section-title {
  font-size: 14px;
  color: #666666;
  font-weight: bold;
  margin-bottom: 30px;
}

/* GRID */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.product-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 6px;
}

.product-name {
  font-size: 14px;
  margin-top: 10px;
}

.product-price {
  font-size: 13px;
  color: #444;
}

/* View All Button */
.view-all-wrapper {
  text-align: right;
  margin-top: 40px;
}

.view-all-btn {
  padding: 10px 22px;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Albert Sans';
}

.view-all-btn:hover {
  background: #f7f7f7;
}

.view-all-btn i {
  font-size: 12px;
  background: #f0f0f0;
  padding: 4px;
  border-radius: 50%;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/*  */

/* offer sale */
.container {
  max-width: 1280px;
  width: 100%;
  padding: 32px 16px;
  box-sizing: border-box;
  padding-left: 84px;
}

.banner-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  /* height: 78vh; */
}

@media (min-width: 1024px) {
  .banner-wrapper {
    flex-direction: row;
  }
}

.banner {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  min-height: 300px;
  width: 45%;
  justify-content: space-around;
}

.bg-light-pink {
  background: #F7F4F4;
}

.bg-light-mint {
  background: #CDE6E0;
}

.banner-1 {
  flex-direction: column-reverse;
  padding: 20px;
  padding-left: 10px;
  width: 45%;
  align-items: stretch;
}

@media (min-width: 640px) {
  .banner-1 {
    flex-direction: row;

  }
}

@media (min-width: 320px) {
  .banner-wrapper .banner-1 {
    width: 100% !important;

  }

  .banner {
    width: 100% !important;

  }

  .text-block h2 {
    font-size: 28px !important;
  }

}

.text-block {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-block h2 {
  font-size: 32px;
  font-weight: 400;
  color: #374151;
  margin-bottom: 12px;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .text-block h2 {
    font-size: 40px;
  }
}

@media (min-width: 1024px) {
  .text-block h2 {
    font-size: 40px;
  }
}

.text-block p {
  font-size: 16px;
  margin-bottom: 24px;
  color: #374151;
  max-width: 320px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 40px;
  border: 1px solid #9CA3AF;
  color: #374151;
  background: transparent;
  transition: 0.3s ease;
  text-decoration: none;
  width: 180px;
}

.cta-btn:hover {
  border-color: #374151;
  color: #374151;
}

/* Background circle for arrow icon */
.icon-circle {
  background-color: #ffffff;
  /* Change this color as needed */
  padding: 6px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.cta-btn:hover .icon-circle {
  background-color: #ffffff;
}

.icon-circle svg {
  width: 14px;
  height: 14px;
  stroke: rgb(0, 0, 0);
}

.banner-img-wrapper {
  width: 100%;
  height: 260px;
  overflow: hidden;
}

@media (min-width: 640px) {
  .banner-img-wrapper {
    height: auto;
  }
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: .3s ease;
}

.banner-img:hover {
  transform: scale(1.02);
}

/*  */

/* blog section */

/* Layout */
.resources-section {
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  min-height: 50vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
  flex-grow: 1;
  margin-bottom: 10px;
}

/* Header */
.section-header {
  margin-bottom: 50px;
}

.sub-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.icon-tool {
  width: 16px;
  height: 16px;
  fill: #666;
}

.sub-heading-text {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #555;
  letter-spacing: .5px;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: #007bff;
}

.main-title {
  font-size: 34px;
  font-weight: 500;
  color: #000;
  letter-spacing: -0.5px;
}

/* Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.card {
  border: 1px solid #e5e5e5;
  background: #fff;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px;
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  border-color: #d1d1d1;
}

.card-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 25px;
}

.badge {
  border: 1px solid #e5e5e5;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  color: #555;
  border-radius: 2px;
  background: transparent;
  white-space: nowrap;
}

.card-title {
  font-size: 20px;
  line-height: 1.5;
  color: #333;
  font-weight: 400;
  flex-grow: 1;
  margin-bottom: 30px;
}

/* Read More Button */
.read-more-btn {
  text-decoration: none;
  color: #333;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.2s ease;
}

.read-more-btn:hover {
  gap: 14px;
}

.arrow-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  /* reduced from 28px */
  height: 24px;
  background: #dbeafe;
  border-radius: 50%;
  transition: 0.2s;
}

.read-more-btn:hover .arrow-circle {
  background: #bfdbfe;
}

/* Google Icon Styling - UPDATED (smaller + black) */
.arrow-icon {
  font-family: 'Material Symbols Rounded';
  font-size: 14px;
  /* reduced from 18px */
  font-variation-settings:
    'wght' 500,
    'GRAD' 0,
    'opsz' 24;
  color: #000;
  /* icon color black */
  line-height: 1;
}


/* Bottom Decoration */
.bottom-decoration {
  height: 130px;
  width: 100%;
  background: #BCE3DE;
  margin-top: 40px;
}

/* Responsive */
@media (max-width: 1024px) {
  .cards-grid {
    gap: 20px;
  }

  .card {
    padding: 24px;
    min-height: 380px;
  }

  .card-title {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .main-title {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  .resources-section {
    padding-top: 40px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card {
    padding: 24px;
    min-height: auto;
  }

  .card-title {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .bottom-decoration {
    height: 110px;
  }

  .section-header {
    margin-bottom: 30px;
  }
}

/*  */


/* testimoal caroulsel section */

/* === UNIQUE, ISOLATED TESTIMONIAL COMPONENT === */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --tst-bg: #ffffff;
  --tst-text-main: #111111;
  --tst-text-secondary: #666666;
  --tst-border: #E5E7EB;
}

.tst-wrapper {
  font-family: 'Inter', sans-serif;
  max-width: 1200px;
  width: 100%;
  background: #fff;
  padding: 20px 0;
  margin: 40px auto;
}

/* Header */
.tst-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  padding: 0 10px;
}

.tst-header-text h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--tst-text-secondary);
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Albert Sans';
}

.tst-header-text h4::before {
  content: '⌘';
  font-size: 14px;
}

.tst-header-text h2 {
  font-size: 32px;
  font-weight: 600;
  margin: 0;
  color: var(--tst-text-main);
  font-family: 'Albert Sans';
}

/* Navigation arrows */
.tst-nav {
  display: flex;
  gap: 12px;
}

.tst-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--tst-border);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .2s;
}

.tst-nav-btn:hover {
  background-color: #f3f4f6;
}

/* Cards container */
.tst-cards {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 20px;
  scroll-behavior: smooth;

  scrollbar-width: none;
  -ms-overflow-style: none;
}

.tst-cards::-webkit-scrollbar {
  display: none;
}

/* Individual card */
.tst-card {
  min-width: 450px;
  width: 45%;
  height: 300px;
  border: 1px solid var(--tst-border);
  display: flex;
  flex-shrink: 0;
  overflow: hidden;
}

.tst-card-content {
  padding: 28px;
  width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tst-logo {
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Albert Sans';
}

.tst-quote {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
  font-family: 'Albert Sans';
}

.tst-author h5 {
  font-size: 14px;
  margin: 0 0 4px;
  font-weight: 600;
  font-family: 'Albert Sans';
}

.tst-author span {
  font-size: 13px;
  color: var(--tst-text-secondary);
  font-family: 'Albert Sans';
}

.tst-img-box {
  width: 45%;
  height: 100%;
}

.tst-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mobile */
@media (max-width: 600px) {
  .tst-card {
    min-width: 300px;
    flex-direction: column-reverse;
    height: auto;
  }

  .tst-img-box {
    width: 100%;
    height: 200px;
  }

  .tst-card-content {
    width: auto;
    padding: 20px;
  }
}

/* footer code */
/* Universal styles for the dark theme */
.footer {
  background-color: #000000;
  /* Pure black background */
  color: #ffffff;
  /* White text color */
  padding: 40px 60px 20px;
  /* Padding for top/bottom and sides */
  font-family: Arial, sans-serif;
  /* Use a common sans-serif font */
}

.footer-logo-img {
  width: 120px;
  height: auto;
  display: block;
  margin-bottom: 15px;

  /* Turn image white */
  filter: brightness(0) invert(1);
}


/* Container for the main four sections */
.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  /* Space between the main columns */
  max-width: 1200px;
  /* Keep the content centered and constrained */
  margin: 0 auto;
  padding-bottom: 40px;
  /* Space above the bottom bar */
  border-bottom: 1px solid #222;
  /* Separator line, slightly visible */
}

/* Individual section styling */
.footer-section {
  padding: 0 10px;
}

/* --- Section 1: Vessa (Newsletter) --- */
.footer-vessa {
  flex-basis: 30%;
  /* Gives Vessa section more room */
  max-width: 300px;
}

.footer-logo {
  font-size: 30px;
  margin-bottom: 15px;
  font-weight: 500;
}

.footer-vessa p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #ccc;
  /* Slightly lighter text for the description */
  font-family: 'Albert Sans';
}

/* Newsletter Form */
.footer-newsletter {
  display: flex;
  border: 1px solid #444;
  /* Border around the input/button combo */
  height: 40px;
}

.footer-newsletter input {
  background: transparent;
  border: none;
  color: #fff;
  padding: 0 10px;
  flex-grow: 1;
  font-size: 14px;
  outline: none;
  font-family: 'Albert Sans';
}

.footer-newsletter input::placeholder {
  color: #888;
}

.footer-newsletter button {
  background: transparent;
  color: #fff;
  border: none;
  padding: 0 15px;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  /* border-left: 1px solid #444; */
  transition: background-color 0.3s;
  font-family: 'Albert Sans';
}

.footer-newsletter button:hover {
  background-color: #333;
}

/* --- Section 2, 3, 4: Contact, Links, Resources --- */
.footer-contact,
.footer-links,
.footer-resources {
  flex-basis: 20%;
  /* Even distribution for the other three columns */
  padding-top: 5px;
}

/* Headings for columns 2, 3, 4 */
.footer-section h3 {
  font-size: 12px;
  font-weight: bold;
  color: #888;
  /* Grey text for the heading */
  margin-bottom: 25px;
  letter-spacing: 1px;
  font-family: 'Albert Sans';
}

/* Contact Email */
.footer-email {
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  font-family: 'Albert Sans';
}

/* List links */
.footer-links ul,
.footer-resources ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-resources li {
  margin-bottom: 8px;
}

.footer-links a,
.footer-resources a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
  font-family: 'Albert Sans';
}

.footer-links a:hover,
.footer-resources a:hover,
.footer-email:hover {
  color: #fff;
  /* Hover effect */
}


/* --- Bottom Copyright Bar --- */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 12px;
}

.footer-copyright {
  color: #888;
  font-family: 'Albert Sans';
}

.footer-legal a,
.footer-legal span {
  color: #888;
  text-decoration: none;
  padding: 0 5px;
  font-family: 'Albert Sans';
}

.footer-legal span {
  color: #555;
  /* Darker dot separator */
}

.footer-legal a:hover {
  color: #fff;
}


/* ================================================= */
/* RESPONSIVENESS (Media Query)             */
/* ================================================= */

@media (max-width: 768px) {
  .footer {
    padding: 40px 20px 10px;
    /* Less horizontal padding on smaller screens */
  }

  /* Stack the main four sections vertically */
  .footer-content {
    flex-direction: column;
    padding-bottom: 20px;
  }

  /* Adjust margins and spacing for stacked look */
  .footer-section {
    margin-bottom: 30px;
    padding: 0;
  }

  /* Section 1: Vessa (Newsletter) takes full width */
  .footer-vessa {
    max-width: 100%;
    margin-bottom: 40px;
  }

  /* Section 2, 3, 4: Align to the left and take full width */
  .footer-contact,
  .footer-links,
  .footer-resources {
    flex-basis: auto;
  }

  /* Contact email for section 2 */
  .footer-email {
    display: block;
    margin-top: -15px;
  }

  /* Stack the bottom bar elements */
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 10px;
    margin-top: 10px;
  }

  .footer-copyright {
    margin-bottom: 10px;
  }

  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    line-height: 1.5;
  }
}

/*  */