* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Kumbh Sans", sans-serif;
  box-sizing: border-box;
}

.navbar {
  background: linear-gradient(to left, #ffc800 0%, #ffc800 70%, #ff914d 100%);
  height: 130px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  font-size: 1.2rem;
  position: sticky;
  top: 0;
  z-index: 999;
  transition: transform 0.3s ease;
}
.navbar.hide {
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.navbar__container {
  display: flex;
  justify-content: space-between;
  height: 100px;
  z-index: 1;
  width: 100%;
  max-width: 1772px;
  margin: 0 auto;
  padding: 0 0.3px;
  flex: s;
  padding-left: 20px; /* add spacing */
  padding-right: 20px;
}

.navbar .brand {
  display: flex;
  align-items: center;
}

.navbar .brand img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.navbar .brand h2 {
  font-size: 25px;
  font-weight: bold;
  margin: 0;
  color: #fff;
  text-decoration: none;
}

.navbar .brand p {
  font-size: 14px;
  margin: 0;
  color: #fff;
}

.navbar__menu {
  display: flex;
  align-items: center;
  list-style: none;
  text-align: center;
}

.navbar__links {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  text-decoration: none;
  padding: 0 1rem;
  height: 100%;
}

.navbar__links:hover {
  color: #545454;
  transition: all 0.8s ease;
}

@media screen and (max-width: 600px) {
  .navbar__container {
    display: flex;
    justify-content: space-between;
    height: 100px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;

    padding-left: 20px;
  }
  .navbar__menu {
    display: grid;
    grid-template-columns: auto;
    margin: 0;
    width: 100%;
    position: absolute;
    top: -1000px;
    opacity: 0;
    transition: all 0.5s ease;
    height: 50vh;
    z-index: -1;
    background: #ffc800;
  }

  .navbar__menu.active {
    background: linear-gradient(to left, #ffc800 0%, #ffc800 70%, #ff914d 100%);
    top: 100%;
    opacity: 1;
    transition: all 0.5s ease;
    z-index: 99;
    height: 70vh;
    font-size: 1rem;
  }
  .navbar__menu,
  .navbar__menu.active {
    width: 100vw; /* full screen width */
    margin-left: -20px; /* cancels container padding-left */
  }

  #navbar_logo {
    padding-left: 25px;
  }

  .navbar__toggle .bar {
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background: #fff;
  }

  .navbar__item {
    width: 100%;
  }

  .navbar__links {
    text-align: center;
    padding: 2rem;
    width: 100%;
    display: table;
  }

  #mobile-menu {
    position: absolute;
    top: 47%;
    right: 5%;
    transform: translate(5%, 47%);
  }

  .navbar__toggle .bar {
    display: block;
    cursor: pointer;
  }
  .navbar .brand h2 {
    font-size: 20px;
  }
}

.hero {
  padding: 0px 0 0px;
}
.hero-inner {
  text-align: center;
}
.hero-title {
  font-synthesis-style: "Abril Fatface";
  color: #737373;
  font-weight: 510;
  font-size: clamp(60px, 8vw, 110px);
  line-height: 1.1;
  letter-spacing: -2px;
  margin: 0 18px;
  margin-bottom: 10px;
  margin-top: 150px;
}

.hero-title {
  margin-top: 200px; /* desktop spacing */
}

.hero-sub {
  font-synthesis-style: "Abril Fatface";
  color: #737373;
  font-size: clamp(20px, 1.8vw, 14px);
  /*color:var(--ink-light);*/
  margin: 0 auto 36px;
  margin-top: 10px;
  max-width: 1920px;
  margin-bottom: 100px;
}

.button {
  background: none;
  font-size: 17px;
  border-radius: 25px;
  font-synthesis-style: "Abril Fatface";
  color: #737373;
  gap: 10px;
  border: 1px solid #ccc;
  padding: 12px 22px;
  margin-bottom: 200px;
}

.button:hover {
  background-color: #ffc800;
  color: #fff;
  transition: all 0.3s ease;
  border: 1.5px solid #ffc800;
}

.hero-gif {
  margin-top: 70px;
  text-align: center;
  /*padding: 0 20px;*/ /* space on left & right */
}

.hero-gif img {
  width: 100%; /* responsive */
  max-width: 1920px; /* never larger than this */
  height: auto; /* keep proportions */
  /*border-radius: 20px;*/ /* rounded corners */
}

/* Adjust for smaller screens */
@media (max-width: 600px) {
  .hero-title {
    margin-top: 100px;
  }
  .hero-title {
    font-size: clamp(32px, 10vw, 60px);
    margin-top: 90px;
  }
  .hero-sub {
    font-size: 16px;
    margin-bottom: 40px;
  }
  .button {
    font-size: 12px;
    margin-bottom: 80px;
    padding: 10px 20px;
  }
}

.intro-section {
  text-align: center;
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
  line-height: 2;
  color: #737373;
}

.intro-section p {
  text-align: left;
  margin-bottom: 220px;
  font-size: 20px;

  display: inline-block;
}

.about-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas:
    "about vision"
    "mission mission";
  gap: 60px 240px;
  max-width: 1500px;
  margin: 80px auto;
  padding: 0 20px;
  position: relative; /* needed for pseudo-element divider */
}

/* Centered vertical line */
.about-section::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 50%;
  background-color: #ccc;
}

/* Box layout */
.about-box {
  color: #737373;
}

.about-box h2 {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: -3px;
  text-align: center;
  margin-top: 20px;
}

.about-box p {
  font-size: 18px;
  line-height: 1.6;
  text-align: left; /* ✅ left aligned text */
}

.about-box:nth-child(3) p {
  text-align: center;
}

/* Grid areas */
.about-box:nth-child(1) {
  grid-area: about;
}
.about-box:nth-child(2) {
  grid-area: vision;
}
.about-box:nth-child(3) {
  grid-area: mission;
}

/* Responsive (mobile) */
@media (max-width: 900px) {
  .about-section {
    grid-template-columns: 1fr;
    grid-template-areas:
      "about"
      "vision"
      "mission";
  }

  .about-section::before {
    content: none;
  }

  .about-box:nth-child(1),
  .about-box:nth-child(2) {
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
  }

  .about-box:nth-child(3) {
    border: none;
    padding-top: 20px;
  }
  .about-box:nth-child(3) p {
    text-align: left;
  }
  .button {
    margin-bottom: -200px;
  }
}

.mission-cards-section {
  font-synthesis-style: "Abril Fatface";
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 60px 0;
  width: 100%;
}

.mission-cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1160px;
  margin-bottom: 200px;
}

.mission-card {
  flex: 1 1 300px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 15px;
  padding: 30px 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
}

.mission-card h3 {
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
  color: #737373;
}

.mission-card p {
  color: #737373;
  font-size: 17px;
  text-align: left;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .mission-cards-section {
    padding: 30px;
  }
}

.transform-section {
  background-color: #ffc800;
  text-align: center;
  padding: 60px 20px;
  color: #737373;
}

.transform-section h2 {
  font-size: 4rem;
  letter-spacing: -3px;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 70px;
}

.transform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.transform-item {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.transform-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.transform-item img {
  width: 100px;
  margin-bottom: 15px;
}

.transform-item p {
  font-weight: 600;
  font-size: 1rem;
  color: #737373;
}

.icon-bg {
  background-color: #ffc800;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  position: relative;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.icon-bg img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 80%;
  transform: translate(-50%, -50%);
  object-fit: contain;
}

@media (max-width: 900px) {
  .transform-section h2 {
    font-size: clamp(1.5rem, 5vw + 0.5rem, 2.5rem);
    line-height: 1.2;
    letter-spacing: 0;
  }
}

.how-it-works {
  max-width: 1400px;
  margin: 0 auto;
  margin-top: 150px;
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  color: #737373;
  max-width: 1920px;
}

.how-it-works h2 {
  font-size: 70px;
  letter-spacing: -3px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #737373;
}

.how-it-works p {
  max-width: 800px;
  margin: 0 auto 50px auto;
  font-size: 25px;
  line-height: 1.6;
  color: #666;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 70px;
}

.step {
  flex: 1 1 200px; /* let items shrink/grow and set a min width */
  padding: 0 10px;
  position: relative;
  text-align: left;
  box-sizing: border-box;
  margin-top: 2.5cm;
}

.step:not(:last-child) {
  border-right: 1px solid #ddd;
}

/* Remove right border when stacked vertically */

.step h3 {
  font-weight: 100;
  font-size: 28px;
  color: #aaa;
  text-align: center;
  margin-bottom: 1px;
  text-shadow: 1px 5px 3px rgba(0, 0, 0, 0.253);
}

.step h4 {
  font-size: 24px;
  font-weight: bold;
  margin-top: 40px;
  color: #737373;
}

.step p {
  font-size: 20px;
  color: #737373;
  line-height: 1.6;
}

.button2 {
  background: none;
  font-size: 17px;
  border-radius: 25px;
  font-synthesis-style: "Abril Fatface";
  color: #737373;
  gap: 10px;
  border: 1px solid #ccc;
  padding: 12px 22px;
  margin-bottom: 200px;
  margin-top: 70px;
}

.button2:hover {
  background-color: #ffc800;
  color: #fff;
  transition: all 0.3s ease;
  border: 1.5px solid #ffc800;
}

@media (max-width: 600px) {
  .step {
    border-right: none;
    border-bottom: 1px solid #ddd;
  }

  .step:last-child {
    border-right: 1px solid #ddd;
  }
  .intro-section p {
    transform: none; /* remove scaling on smaller screens */
    font-size: 18px; /* slightly smaller for readability */
  }
  .how-it-works h2 {
    font-size: 50px;
  }
  .how-it-works p {
    font-size: 20px;
  }
  .button2 {
    font-size: 12px;
    margin-top: -100px;
  }
}

/*TESTIMONIALS*/

.testimonials {
  text-align: center;
  padding: 60px 20px 30px 20px;
  text-align: left;
}

.testimonials-header {
  display: flex;
  justify-content: space-between; /* pushes text left, button right */
  align-items: center; /* keeps them aligned vertically */
  max-width: 1330px; /* matches image row width */
  margin: 0 auto 40px auto; /* centered */
  gap: 20px; /* spacing if needed */
}

.testimonials h2 {
  font-size: 40px;
  font-weight: bold;
  color: #737373;
  margin-bottom: 0px;
}

.testimonials p {
  font-size: 16px;
  color: #737373;
  max-width: 1850px;
  margin: 0 auto;
  line-height: 1.6;
}

.read-more {
  display: inline-block;
  padding: 12px 22px;
  border: 1.5px solid #999;
  border-radius: 25px;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s;
  white-space: nowrap;
  color: #737373; /* default text color */
}

.read-more:hover {
  background-color: #ffc800;
  color: #fff;
  transition: all 0.3s ease;
  border: 1.5px solid #ffc800;
}

.testimonial-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  max-width: 1350px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* Make the image take more space */
.testimonial-image {
  flex: 1.4 1 750px; /* increase image width */
}

/* Slightly reduce text area */
.testimonial-text {
  flex: 0.8 1 250px;
  color: #737373;
}

/* Keep image crisp and scaled nicely */
.testimonial-image img {
  width: 100%;
  border-radius: 1px;
  object-fit: cover;
  margin-bottom: 100px;
}

.testimonial-text h3 {
  font-size: 26px;
  font-weight: 00;
  color: #737373;
  margin-bottom: 15px;
}

.testimonial-text p {
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 16px;
}

.testimonial-text .author {
  font-weight: 500;
  color: #737373;
}

/* Mobile tweaks */
@media (max-width: 600px) {
  .testimonials-header {
    flex-direction: column;
    align-items: flex-start; /* stack title, paragraph, and button neatly */
    margin-left: 0; /* remove the big margin */
    text-align: center;
  }

  .testimonials h2 {
    font-size: 28px;
    text-align: left;
  }

  .testimonials p {
    font-size: 14px;
    text-align: left;
  }
  .read-more {
    margin: 15px 0 0 0; /* reset margins */
    align-self: flex-start; /* button stays left under the text */
    font-size: 14px;
    padding: 8px 18px;
    margin-top: 15px;
  }
  .testimonial-content {
    flex-direction: column;
    text-align: left;
  }

  .testimonial-image,
  .testimonial-text {
    flex: 1 1 100%;
  }

  .testimonial-text h3 {
    font-size: 22px;
  }
  .testimonial-image img {
    margin-bottom: 0px;
  }
  .read-more {
    font-size: 12px;
  }
}

/* ===== SECTION HEADER ===== */
.empower-section {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  color: #737373;
}

.empower-section h2 {
  font-size: 40px;
  font-weight: 700;
  color: #737373;
  margin-bottom: 10px;
}

.empower-section p {
  max-width: 800px;
  margin: 0 auto 60px;
  font-size: 18px;
  color: #737373;
  line-height: 1.6;
  margin-bottom: -10px;
}

/* ===== TESTIMONIAL ROW ===== */
.visual-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: flex-start; /* ✅ make boxes follow text height */
  gap: 40px;
  margin: 0 auto 40px;
  max-width: 1300px;
  padding: 0 20px;
}

/* ===== TESTIMONIAL BOX ===== */
.visual-box {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 35px;
  width: 370px;
  text-align: left;
  color: #555;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.thrive-section {
  position: relative;
  z-index: 2; /* Keeps the button above the cards */
}

.visual-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

/* ===== PROFILE HEADER ===== */
.profile {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.profile img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.profile h3 {
  margin: 0;
  font-size: 18px;
  color: #737373;
  font-weight: 600;
}

.stars {
  display: block;
  font-size: 13px;
  color: #ffc107; /* gold */
  margin-top: 3px;
}

/* ===== TESTIMONIAL TEXT ===== */
.visual-box p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* ===== READ MORE BUTTON ===== */
.thrive-section {
  text-align: right; /* Change from center to right */
  margin: -76px 355px 80px; /* Optional horizontal margin */
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: 1px solid #ccc;
  border-radius: 30px;
  text-decoration: none;
  color: #666;
  font-size: 16px;
  transition: 0.3s ease;
}

.read-more:hover {
  background: #ffc800;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .visual-box {
    width: 90%;
  }

  .visual-row {
    gap: 25px;
  }
  .thrive-section {
    text-align: center;
    margin: 30px 0 80px;
  }
}

/* --- Rethinking Outsourcing Section --- */
.outsourcing-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #fff;
}

.outsourcing-section h2 {
  font-size: 50px;
  font-weight: 700;
  color: #737373;
  margin-bottom: 10px;
}

.outsourcing-section .subtitle {
  font-size: 18px;
  color: #777;
  margin-bottom: 60px;
}

.outsourcing-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.outsourcing-box {
  flex: 1 1 45%;
  background: #fff;
  height: 250px;
  border: 1px solid #ccc;
  border-radius: 40px;
  padding: 40px;
  font-size: 18px;
  line-height: 1.6;
  color: #777;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: left;
}

.outsourcing-box p {
  font-size: 20px;
}

.outsourcing-box:nth-child(2) {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  margin-top: 90px;
}

.outsourcing-box:nth-child(1) {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
}

.outsourcing-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .outsourcing-row {
    flex-direction: column;
    gap: 30px;
  }

  .outsourcing-box {
    flex: 1 1 100%;
  }
  .outsourcing-box:nth-child(2) {
    margin-top: 40px;
  }
}

.outsourcing-carousel {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px 0;
}

.carousel-container {
  position: relative;
  width: 50%;
  max-width: 1200px;
  /*overflow: hidden;*/
  border-radius: 15px;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease;
  width: 100%;
}
.carousel-track {
  cursor: grab; /* show draggable cursor */
  user-select: none;
}

.carousel-container.is-dragging .carousel-track,
.carousel-track:active {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}

/* ensure images don't accidentally highlight */
.carousel-track img {
  user-select: none;
  -webkit-user-drag: none;
}

.carousel-track img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  flex-shrink: 0;
  padding: 20px;
  box-sizing: border-box;
}

.carousel-dots {
  text-align: center;
  margin-top: 15px;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s;
}

.page-content {
  overflow-x: hidden;
}

.dot.active {
  background-color: #ffcc00;
}

@media (max-width: 900px) {
  .dot {
    height: 8px;
    width: 8px;
    margin: 0 5px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  .carousel-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    /*overflow: hidden;*/
    border-radius: 15px;
  }
}

footer {
  background: linear-gradient(to left, #ffc800 0%, #ffc800 70%, #ff914d 100%);
  color: white;
  padding: 3px 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 150px;
}

/* Left side (logo + info) */
.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 10px;
  min-width: 200px;
}

.brand {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.brand img {
  width: 50px;
  height: 50px;
  margin-right: 12px;
}
.brand h2 {
  margin-top: 10px;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: -1px;
}
.brand a {
  text-decoration: none;
  color: #fff;
  margin-top: 10px;
}
.brand p {
  margin: 0;
}

.info .item {
  margin-top: 18px;
  margin-bottom: 18px;
  text-align: left;
}
.copyright {
  margin-top: 18px;
  margin-bottom: 18px;
  text-align: left;
  font-size: 12px;
}
.info strong {
  display: block;
  font-weight: bold;
  margin-bottom: 4px;
}
.info p {
  margin: 0;
}

/* Middle + Right side container */
.footer-middle {
  display: flex;
  gap: 30px; /* pagitan ng Help & FAQs at Let’s Connect */
  align-items: flex-start;
  margin: 10px;
  min-width: 200px;
}

/* Help & FAQs */
.footer-center h3 {
  margin-top: 1.1cm;
  font-size: 25px;
  margin-bottom: 17px;
  letter-spacing: -1px;
}
.footer-center a {
  display: block;
  color: white;
  text-decoration: none;
  margin: 3px 0;
  font-size: 18px;
  text-align: start;
}
.footer-center a:hover {
  color: #737373;
}

/* Let’s Connect */
.footer-right h3 {
  font-size: 25px;
  margin-bottom: 15px;
  margin-top: 1.1cm;
}
.social-links a {
  display: flex;
  align-items: center;
  margin: 8px 0;
  color: white;
  text-decoration: none;
  font-size: 20px;
}
.social-links a:hover {
  color: #737373;
}

.social-links img {
  width: 33px;
  height: 33px;
  margin-right: 8px;
}

a {
  text-decoration: none;
  color: inherit;
}

@media (max-width: 600px) {
  p {
    font-size: 14px !important;
  }
}

/* ------------------------------- */
/* 📱 MOBILE - small phones (0–600px) */
/* ------------------------------- */
@media (max-width: 600px) {
  footer {
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
  }

  .footer-left,
  .footer-middle,
  .footer-center,
  .footer-right {
    width: 100%;
    margin: 10px 0;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand h2 {
    font-size: 20px;
  }

  p,
  .footer-center a,
  .social-links a {
    font-size: 14px;
  }

  .footer-center h3,
  .footer-right h3 {
    margin-top: 20px;
    font-size: 20px;
  }

  .social-links img {
    width: 28px;
    height: 28px;
  }
}

/* -------------------------------------- */
/* 📱📲 TABLET / iPad (600px–900px) */
/* -------------------------------------- */
@media (min-width: 600px) and (max-width: 900px) {
  footer {
    padding: 20px 35px;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .footer-left {
    width: 45%;
  }

  .footer-middle {
    width: 45%;
    gap: 20px;
  }

  .footer-center h3,
  .footer-right h3 {
    font-size: 22px;
  }

  .footer-center a,
  .social-links a {
    font-size: 16px;
  }

  p {
    font-size: 15px;
  }

  .brand img {
    width: 45px;
    height: 45px;
  }
}

/* ------------------------------------------------------ */
/* 💻 SMALL LAPTOPS (900px–1200px) */
/* ------------------------------------------------------ */
@media (min-width: 900px) and (max-width: 1200px) {
  footer {
    padding: 20px 50px;
    gap: 40px;
  }

  .footer-left,
  .footer-middle {
    transform: scale(0.95); /* shrink slightly so it doesn’t look cramped */
  }

  .footer-center h3,
  .footer-right h3 {
    font-size: 23px;
  }

  p {
    font-size: 15px;
  }
}
