﻿.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.main-content {
  padding-top: 80px;
}

/*header*/
.nustar-header {
    background-color: #fff;
    font-family: "Segoe UI", sans-serif;
    color: #5e1f35;
}

.top-bar {
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: #5e1f35;
    box-sizing: border-box;
}

.right-icons {
    display: flex;
    gap: 1rem;
}

.icon-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
}

    .icon-btn img {
        height: 16px;
        filter: brightness(0) invert(1);
    }

.logo-center {
    text-align: center;
}

    .logo-center img {
        width: clamp(140px, 16vw, 150px);
        height: auto;
        margin-block: 1rem;
    }

.logo-text {
    font-size: 0.8rem;
    margin-top: 0.3rem;
    line-height: 1.2;
}

.nav-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(0.5rem, 1.2vw, 1.5rem);
    flex-wrap: wrap;
    margin-bottom: 15px;
    font-family: "Segoe UI", sans-serif;
    transition: max-height 0.3s ease;
}

    .nav-bar a,
    .nav-bar .book-btn {
        text-decoration: none;
        color: #5e1f35;
        font-size: clamp(0.85rem, 0.95vw, 1rem);
        opacity: 0.85;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem 0.75rem;
        transition: opacity 0.3s ease;
        white-space: nowrap;
    }

        .nav-bar a:hover,
        .nav-bar .book-btn:hover {
            opacity: 1;
        }

    .nav-bar .book-btn {
        background-color: #5e1f35;
        color: #fff;
        border-radius: 4px;
        font-weight: 500;
    }

    .nav-bar i {
        font-size: 1rem;
        vertical-align: middle;
    }

    .nav-bar span {
        font-size: 0.95rem;
        color: #651c32;
        vertical-align: middle;
    }

@media (max-width: 1024px) {
    .top-bar {
        padding: 0.5rem 0.5rem;
    }

    .nav-bar {
        gap: 0.5rem 0.75rem;
    }

        .nav-bar a,
        .nav-bar .book-btn {
            font-size: 0.5rem;
            padding: 0.45rem 0.6rem;
        }
}

@media (max-width: 768px) {
    .nav-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
        width: 100%;
    }

        .nav-bar a,
        .nav-bar .book-btn {
            font-size: 0.5rem;
            width: 100%;
            text-align: left;
            white-space: normal;
        }

        .nav-bar span {
            display: none;
        }
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #651c32;
  cursor: pointer;
  position: absolute;
  top: 8rem;
  left: 1rem;
  z-index: 1000;
}

#menuToggle i {
  font-size: 28px;
  color: #651c32;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-bar {
    flex-direction: column;
    align-items: flex-start;
    max-height: 0;
    overflow: hidden;
    background-color: #fff;
  }

  .nav-bar.active {
    max-height: 500px;
    padding: 1rem;
  }

  .nav-bar a,
  .nav-bar .book-btn {
    width: 100%;
    text-align: left;
    font-size: 1rem;
  }

  .nav-bar span {
    display: none;
  }
}

.book-btn {
  background-color: #5e1f35;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  border-radius: 4px;
  cursor: pointer;
}

.icon-btn {
  background: none;
  border: none;
  color: #5e1f35;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
}

.icon-btn img {
  height: 16px;
}

i {
  color: white;
  font-size: 20px;
  margin-right: 0.5rem;
  transition: transform 0.2s ease;
}

i:hover {
  transform: scale(1.1);
}

/*body*/
.nustar-body {
  padding-top: 200px;
  font-family: "Segoe UI", sans-serif;
  text-align: center;
  color: #333;
}

.hero-carousel {
  width: 100%;
  height: clamp(390px, 90vh, 800px);
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  background-color: #fff;
}

.carousel-frame {
  width: 100%;
  height: 100%;
  overflow: unset;
  position: absolute;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.carousel-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #651c32;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  transition:
    transform 0.2s ease,
    background-color 0.3s ease;
}

.carousel-btn:hover {
  transform: translateY(-50%) scale(1.15);
  background-color: #f2f2f2;
}

.carousel-btn.prev {
  left: 12px;
}

.carousel-btn.next {
  right: 12px;
}

.carousel-btn i {
  font-size: 20px;
  color: #651c32;
  margin-right: 0;
  padding-left: 0;
}

@media (max-width: 768px) {
  .hero-carousel {
    height: clamp(150px, 56vw, 320px);
  }

    .nustar-body {
        padding-top: 180px;
    }

  .carousel-slide img {
    object-position: top;
    height: inherit;
  }

  .carousel-btn {
    font-size: 1rem;
    width: 25px;
    height: 25px;
    background-color: rgba(255, 255, 255, 0.92);
    transform: translateY(-160%);
  }

  .carousel-btn:hover {
    transform: translateY(-160%) scale(1.15);
    background-color: #f2f2f2;
  }

  .carousel-btn.prev {
    left: 8px;
  }

  .carousel-btn.next {
    right: 8px;
  }

  .carousel-btn i {
    font-size: 15px;
    color: #651c32;
    margin-right: 0;
    padding-left: 0;
  }
}

.tagline1 p {
  font-size: 36px;
  margin: 5rem auto;
  max-width: 55%;
  line-height: 1.2;
  text-align: center;
  font-family: "Baskerville", serif;
  color: #444444;
  letter-spacing: 1px;
}

.tagline p {
  font-size: 2.4rem;
  margin: 0.5rem auto;
  max-width: 55%;
  text-align: center;
  font-family: "Baskerville";
  color: #444444;
}

.hashtag {
  font-weight: bold;
  font-size: 1.2rem;
  color: #5e1f35;
  text-align: center;
}

@media (max-width: 1024px) {
  .tagline1 p {
    font-size: 2rem;
    max-width: 70%;
    margin: 3.5rem auto;
  }

  .tagline p {
    font-size: 2rem;
    max-width: 70%;
  }

  .hashtag {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .tagline1 p {
    font-size: 1.6rem;
    max-width: 85%;
    margin: 0.1rem auto;
  }

  .tagline p {
    font-size: 1.6rem;
    max-width: 80%;
    margin: 0.5rem auto;
  }

  .hashtag {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .tagline1 p {
    font-size: 1.3rem;
    max-width: 90%;
    margin: 2rem auto;
  }

  .tagline p {
    font-size: 1.3rem;
    max-width: 90%;
  }

  .hashtag {
    font-size: 0.9rem;
  }
}

.nustar-section {
  display: flex;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 5rem auto;
  padding: 1rem;
}

.nustar-image img {
  width: 100%;
  max-width: 650px;
  border-radius: 8px;
}

.nustar-details {
  flex: 1;
  font-family: "Montserrat";
  font-size: 18px;
  line-height: 1.4;
  color: #333;
  text-align: justify;
}

.learn-more {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: #5e1f35;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: normal;
}

.learn-more:hover {
  background-color: #5e1f35;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 768px) {
  .nustar-section {
    flex-direction: column;
    text-align: center;
  }

  .nustar-image img {
    max-width: 100%;
  }
}

.nustories {
  max-width: 1200px;
  margin: 1rem auto;
  padding: 1rem;
  text-align: center;
  font-family: "Segoe UI", sans-serif;
}

.nustories h2 {
  font-size: 2.5rem;
  color: #444444;
  margin-bottom: 20px;
  font-family: "Baskerville Old Face";
}

.nustories .subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 3.5rem;
  color: #333;
}

.story-buttons {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.story-buttons button {
  background-color: #fff;
  color: #5e1f35;
  border: 1px solid #5e1f35;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  text-align: left;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.story-buttons button:hover {
  background-color: #5e1f35;
  color: #fff;
  transform: translateY(-2px);
}

.story-buttons button.active {
  background-color: #5e1f35;
  color: #fff;
  transform: scale(1.05);
}

.story-buttons img {
  height: 0.8em;
  vertical-align: baseline;
  color: #5e1f35;
  margin-inline: -0.2rem;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  max-width: 100%;
}

.story-card {
  background-color: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  max-width: 400px;
}

/* hidden state for transition */
.story-card.hide {
  opacity: 0;
  transform: translateY(10px) scale(0.98);
}

@media (max-width: 1200px) {
  .story-grid {
    grid-template-columns: repeat(2, minmax(280px, 380px));
  }
}

@media (max-width: 768px) {
  .story-grid {
    grid-template-columns: 1fr;
    justify-content: center;
  }
}

.story-card img {
  width: 100%;
  height: auto;
  display: block;
}

.story-card h3 {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin: 1rem;
  color: #5e1f35;
}

.story-card .category {
  margin: 1rem 1rem 1rem;
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  color: #555;
}

.story-card .description {
  margin: 0 1rem 1rem;
  font-size: 25px;
  color: #555;
  font-family: "Baskerville";
}

.see-more a {
  color: #5e1f35;
  font-weight: bold;
  text-decoration: none;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  transition: color 0.3s ease;
}

.see-more a:hover {
  color: #e74c3c;
}

.story-extra {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 1s ease;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.story-extra.show {
  max-height: 9999px;
  opacity: 1;
  transform: translateY(0);
}

.career-guide {
  max-width: 1200px;
  margin: 5rem auto;
  padding: 1rem;
  text-align: center;
  font-family: "Segoe UI", sans-serif;
}

.career-guide h2 {
  font-size: 2.5rem;
  color: #444444;
  margin-bottom: 20px;
  font-family: "Baskerville";
}

.career-guide .subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 3.5rem;
  color: #333;
}

.career-guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  max-width: 100%;
}

.career-guide-card {
  background-color: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: left;
  display: flex;
  flex-direction: column;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  max-width: 400px;
}

@media (max-width: 1200px) {
  .career-guide-grid {
    grid-template-columns: repeat(2, minmax(280px, 380px));
  }
}

@media (max-width: 768px) {
  .career-guide-grid {
    grid-template-columns: 1fr;
    justify-content: center;
  }
}

.career-guide-card img {
  width: 100%;
  height: auto;
  display: block;
}

.career-guide-card h3 {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin: 1rem;
  color: #5e1f35;
}

.career-guide-card .description {
  margin: 0 1rem 1rem;
  font-size: 25px;
  color: #555;
  font-family: "Baskerville Old Face";
}

.career-guide-card .category {
  margin: 1rem 1rem 1rem;
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  color: #555;
}

.career-guide .see-more a {
  color: #5e1f35;
  font-weight: bold;
  text-decoration: none;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  transition: color 0.3s ease;
}

.career-guide .see-more a:hover {
  color: #e74c3c;
}

.career-guide-extra {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 1s ease;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.career-guide-extra.show {
  max-height: 9999px;
  opacity: 1;
  transform: translateY(0);
}

.careers {
  margin: 5rem auto;
  text-align: center;
}

.careers h2 {
  font-size: 2.5rem;
  color: #444444;
  margin-bottom: 30px;
  font-family: "Baskerville";
}

.career-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.career-card {
  flex: 1 1 300px;
  max-width: 496px;
  padding: 20px;
  text-decoration: none;
  color: inherit;
}

.career-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
}

.career-card p {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  color: #444444;
  font-family: "Baskerville";
}

@media (max-width: 768px) {
  .career-cards {
    flex-direction: column;
    gap: 30px;
  }

  .career-card {
    max-width: 100%;
  }

  .careers h2 {
    font-size: 2rem;
  }

  .career-card p {
    font-size: 25px;
  }
}

.company-profile {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.comprofile-content {
  flex: 1;
  min-width: 280px;
  color: #444444;
}

.comprofile-content h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.comprofile-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-align: justify;
}

.learn-more-btn {
  background-color: #5e1f35;
  color: #fff;
  border: none;
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.learn-more-btn:hover {
  background-color: #3d1424;
}

.comimage {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.comimage img {
  max-width: 100%;
  height: auto;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/*footer*/
.site-footer {
    background-color: #5c5c5c;
    color: #fff;
    padding: 3rem 1.5rem;
    font-family: "Segoe UI", sans-serif;
}

.footer-top {
    width: min(100%, 1400px);
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-links {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: clamp(2rem, 5vw, 4rem);
    flex-wrap: wrap;
    text-align: left;
    margin-left: 0;
}

.link-group h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.link-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-group li {
    margin-bottom: 0.3rem;
}

.link-group a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
}

    .link-group a:hover {
        opacity: 1;
    }

.footer-logos {
    width: 100%;
    display: flex;
    gap: clamp(5rem, 2vw, 2rem);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

    .footer-logos img {
        height: clamp(100px, 10vw, 130px);
        width: auto;
        max-width: 50%;
        object-fit: contain;
    }

.footer-description {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.footer-content {
    width: 100%;
    max-width: 1100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(1rem, 3vw, 2rem);
    flex-wrap: wrap;
    text-align: center;
}

.text-block {
    flex: 1 1 320px;
    min-width: 280px;
}

.footer-content .badgeimagefooter {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: clamp(1rem, 3vw, 3rem);
    flex-wrap: wrap;
    flex: 0 1 auto;
    margin-top: 0;
}

.badgeimagefooter {
    flex-shrink: 0;
}

.dpo-badge {
    height: 230px;
    width: auto;
    max-width: 100%;
    display: block;
    object-fit: contain;
}

.gptw-badge {
    height: 210px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 9px;
}

.footer-bottom {
    width: 100%;
    background-color: #252525;
    color: #777777;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    font-size: 0.875rem;
    flex-wrap: wrap;
    box-sizing: border-box;
}

    .footer-bottom p {
        margin: 0;
        flex: 1 1 300px;
    }

.social-icons {
    display: flex;
    gap: 1rem;
    color: #777777;
    flex-wrap: wrap;
}

    .social-icons a i {
        height: 20px;
        color: #777777;
        transition: transform 0.2s ease;
    }

    .social-icons a:hover img {
        transform: scale(1.1);
    }

@media (max-width: 768px) {
    .site-footer {
        padding: 2rem 1rem;
    }

    .footer-links,
    .footer-content {
        justify-content: center;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
    }

        .footer-content .badgeimagefooter {
            align-items: center;
        }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding: 1rem;
    }

    .social-icons {
        justify-content: center;
    }
}

/*why us*/
.whyus-section1 {
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 100px;
  color: #333;
  display: flex;
}

#whyus-start {
    scroll-margin-top: 220px;
}

.whyus-content1 {
  flex: 1;
  padding-left: 8rem;
  padding-right: 8rem;
  padding-top: 10rem;
  position: absolute;
}

.whyus-content1 h2 {
  font-size: 64px;
  margin-bottom: 1rem;
  font-family: "Baskerville";
  color: #651c32;
  text-align: center;
}

.whyus-content1 h3 {
  font-size: 35px;
  font-style: normal;
  margin-top: 5rem;
  margin-bottom: 1rem;
  font-family: "Baskerville";
  color: #651c32;
}

.whyus-content1 p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #676767;
  text-align: justify;
  font-family: "Montserrat", sans-serif;
  letter-spacing: space-all;
}

.whyus-image1 {
  flex: 1 1 40%;
  margin-top: -9rem;
  margin-bottom: -40rem;
}

.whyus-image1 img {
  width: 100%;
}

.whyus-section {
  align-items: flex-start;
  justify-content: space-between;
  color: #333;
}

.whyus-content {
  flex: 1;
  padding-left: 8rem;
  padding-right: 8rem;
  position: absolute;
}

.whyus-content h2 {
  font-size: 64px;
  margin-bottom: 1rem;
  font-family: "Baskerville";
  color: #651c32;
  text-align: center;
}

.whyus-content h3 {
  font-size: 35px;
  font-style: normal;
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-family: "Baskerville";
  color: #651c32;
}

.whyus-content p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 5rem;
  color: #676767;
  text-align: justify;
  font-family: "Montserrat", sans-serif;
  letter-spacing: space-all;
}

.whyus-image {
  flex: 1 1 40%;
  margin-top: -11rem;
}

.whyus-image img {
  width: 100%;
  height: auto;
  margin-top: -6rem;
}

/* ~125% zoom on large desktop */
@media (max-width: 1536px) {
    .whyus-section1 {
        flex-direction: column;
        gap: 2rem;
        padding-top: 260px;
    }

    .whyus-content1 {
        position: absolute;
        max-width: 100%;
        width: 100%;
        padding-left: 5rem;
        padding-right: 5rem;
        padding-top: 0;
    }

        .whyus-content1 h2 {
            font-size: 44px;
            text-align: center;
        }

        .whyus-content1 h3 {
            font-size: 26px;
            margin-top: 2rem;
        }

        .whyus-content1 p {
            font-size: 16px;
            text-align: justify;
        }

    .whyus-image1 {
        flex: 1 1 40%;
        margin-top: -15rem;
        margin-bottom: -29rem;
    }

        .whyus-image1 img {
            width: 100%;
        }

    .whyus-content {
        flex: 1;
        padding-left: 5rem;
        padding-right: 5rem;
        position: absolute;
        max-width: 100%;
        width: 100%;
        margin-top: -8rem;
    }

        .whyus-content h2 {
            font-size: 44px;
            text-align: center;
        }

        .whyus-content h3 {
            font-size: 26px;
            margin-top: 1rem;
        }

        .whyus-content p {
            font-size: 16px;
            text-align: justify;
        }

    .whyus-image {
        flex: 1 1 40%;
        margin-top: -5rem;
    }

    .whyus-image img {
        width: 100%;
        height: auto;
        margin-top: -12rem;
    }
}

/* ~150% zoom on large desktop */
@media (max-width: 1280px) {
    .whyus-section1 {
        flex-direction: column;
        gap: 2rem;
        padding-top: 250px;
    }

    .whyus-content1 {
        position: absolute;
        max-width: 100%;
        width: 100%;
        padding-left: 3rem;
        padding-right: 3rem;
        padding-top: 0;
    }

        .whyus-content1 h2 {
            font-size: 44px;
            text-align: center;
        }

        .whyus-content1 h3 {
            font-size: 26px;
            margin-top: 2rem;
        }

        .whyus-content1 p {
            font-size: 16px;
            text-align: justify;
        }

    .whyus-image1 {
        flex: 1 1 40%;
        margin-top: -9rem;
        margin-bottom: -21rem;
    }

        .whyus-image1 img {
            width: 100%;
        }

    .whyus-content {
        flex: 1;
        padding-left: 3rem;
        padding-right: 3rem;
        position: absolute;
        max-width: 100%;
        width: 100%;
        margin-top: -9rem;
    }

        .whyus-content h2 {
            font-size: 44px;
            text-align: center;
        }
        .whyus-content h3 {
            font-size: 26px;
            margin-top: 1rem;
        }
        .whyus-content p {
            font-size: 16px;
            text-align: justify;
        }
    }

/* tablet / mobile */
@media (max-width: 768px) {
    .whyus-section1 {
        padding-top: 10rem;
    }

    .whyus-content1 {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

        .whyus-content1 h2 {
            font-size: 38px;
        }

        .whyus-content1 h3 {
            font-size: 28px;
        }

        .whyus-content1 p {
            font-size: 16px;
            line-height: 1.7;
        }
}



/* NUStories Events */

.poster-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 280px;
  color: #333;
}

.tagline-poster {
  text-align: center;
  margin-top: 30px;
}

.hashtag-poster {
  font-family: "Baskerville";
  font-weight: normal;
  font-size: 64px;
  color: #651c32;
  display: inline-block;
}

.inline-symbol {
  height: 2.9rem;
  margin-top: -1rem;
  margin-inline: -0.8rem;
}

/* Left sidebar */
.logo-wrap img {
  width: 250px;
  height: auto;
  display: block;
}

.logo-wrap-columns {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    column-gap: 1rem;
}

    .logo-wrap-columns img {
        display: block;
        height: auto;
        max-width: 100%;
    }

.logo-wrap-columns__nustar {
    justify-self: start;
    width: min(100%, 220px);
}

.logo-wrap-columns__gptw {
    justify-self: end;
    width: min(100%, 140px);
}

.month-pill {
  background: #651c32;
  color: #fff;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.6px;
  margin-top: 6px;
  width: 100%;
  text-align: center;
  font-size: 30px;
  font-family: "Inter", sans-serif;
}

/*.spotlight-photo {
  width: 80%;
  background: #e9e9e9;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  aspect-ratio: 3/4;
}

.spotlight-photo img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
}*/

.spotlight-photo {
    width: clamp(220px, 80%, 320px);
    max-width: 100%;
    margin-inline: auto;
    background: #e9e9e9;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    aspect-ratio: 3 / 4;
}

    .spotlight-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }

@media (max-width: 1200px) {
    .spotlight-photo {
        width: clamp(200px, 75%, 280px);
    }
}

@media (max-width: 768px) {
    .spotlight-photo {
        width: min(100%, 260px);
        aspect-ratio: 4 / 5;
    }
}

/* Spotlight text block */
.spotlight-text {
  text-align: center;
  padding: 6px 8px 0;
}

.spotlight-text h3 {
  color: #651c32;
  margin: 8px 0 6px;
  font-size: 40px;
  letter-spacing: 1px;
  font-weight: bolder;
}

.spotlight-text h4 {
  margin: 0;
  font-size: 22px;
  color: black;
}

    .spotlight-text h5 {
        margin: 0;
        font-size: 18px;
        color: black;
    }

.spotlight-text .role {
  margin-top: 6px;
  color: #70152e;
  font-weight: bolder;
  font-size: 16px;
  letter-spacing: 0.6px;
}

.spotlight-text .description {
  margin-top: 10px;
  color: #70152e;
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
}

/* Right main NUSFEED card */

.inline-symbolwhite {
  height: 8.5rem;
  margin-top: -2.5rem;
  padding-right: 0.5rem;
}

.poster-grid {
  max-width: 1800px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 400px minmax(780px, 1fr);
  gap: 40px;
  align-items: start;
  padding-top: 2.5rem;
  box-sizing: border-box;
}

/* Sidebar stays the same but centered vertically */
.poster-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Make month pill slightly larger for visual weight on wide screens */
.month-pill {
  background: #651c32;
  color: #fff;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: bolder;
  letter-spacing: 0.6px;
  margin-top: 6px;
  width: calc(100% - 40px);
  text-align: center;
  width: 100%;
}

/* Right main card: larger, more padding and deeper corner radius */
.nufeed-card {
  background: #651c32;
  color: #fff;
  border-radius: 22px;
  padding: 36px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.16);
  position: relative;
  overflow: visible;
}

/* NUSFEED heading scaled up but constrained to avoid overflow */
.nufeed-header {
  text-align: center;
  margin-bottom: 18px;
}
.nufeed-header h1 {
  margin: 0;
  font-size: 150px;
  letter-spacing: 6px;
  line-height: 0.9;
  font-family: "Baskerville";
  transform: translateY(-6px);
}

/* Subtitles / titles */
.nufeed-sub {
  margin: 6px 0 4px;
  font-weight: 400;
  font-size: 45px;
  font-family: "Inter", sans-serif;
}

.nufeed-title {
  margin: 0;
  font-size: 50px;
  font-weight: 700;
  letter-spacing: 5.5px;
  font-family: "Inter", sans-serif;
}

/* White inner boxes occupy the available width with larger radii */
.nufeed-inner {
  margin-top: 18px;
}
.nufeed-box {
  background: #fff;
  color: #651c32;
  border-radius: 16px;
  padding: 26px;
  box-sizing: border-box;
  margin-bottom: 20px;
}

/* Larger top box layout */
.nufeed-box--large {
  padding: 32px;
}
.casino-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 8px;
}

.engagement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: 100px;
}

/* Two smaller boxes side-by-side */
.nufeed-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

/* Text styling */
.nufeed-box h4 {
  margin: 0 0 10px 0;
  text-align: center;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
  font-size: 40px;
  letter-spacing: 0.6px;
  font-family: "Inter";
  font-weight: 700;
}
.item-title {
  margin: 8px 0 4px;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  font-family: "Inter";
  font-weight: 700;
}
.item-date {
  font-size: 22px;
  color: #6f2a36;
  text-align: center;
  font-family: "Inter";
  padding-bottom: 20px;
}

.item-date1 {
  font-size: 22px;
  color: #6f2a36;
  text-align: center;
  font-family: "Inter";
}

/* Slight negative margin so the right card visually sits more centered against the page */
.poster-grid > .poster-main .nufeed-card {
  margin-left: -8px;
}

/* Responsive: collapse to single column and scale down typography */
@media (max-width: 1100px) {
  .poster-grid {
    grid-template-columns: 320px 1fr;
    gap: 28px;
    max-width: 1100px;
  }

  .nufeed-header h1 {
    font-size: 50px;
  }
  .nufeed-card {
    padding: 28px;
  }
  .nufeed-box {
    padding: 22px;
  }
}

@media (max-width: 900px) {
  .poster-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 1.5rem;
  }

  .poster-sidebar {
    order: 1;
    padding: 1rem;
  }
  .poster-main {
    order: 2;
    padding: 0 1rem;
  }

  .nufeed-header h1 {
    font-size: 42px;
    letter-spacing: 3px;
  }
  .nufeed-card {
    padding: 20px;
    border-radius: 14px;
  }
  .nufeed-grid,
  .casino-grid {
    grid-template-columns: 1fr;
  }
  .spotlight-photo {
    max-width: 90%;
    aspect-ratio: 4/5;
  }
  .month-pill {
    max-width: none;
    width: auto;
  }
}

/* Small screens tweaks */
@media (max-width: 480px) {
  .nufeed-header h1 {
    font-size: 36px;
  }
  .nufeed-card {
    padding: 16px;
  }
  .poster-container {
    padding: 24px 12px;
  }
}

/* Employee section: grid + trainings card with inset image */
.employee-section {
  width: 100%;
  padding: 36px 16px 72px;
  box-sizing: border-box;
  background: #fff;
}

.employee-container {
  max-width: 1800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px minmax(780px, 1fr);
  gap: 32px;
  align-items: start;
  box-sizing: border-box;
}

/* Top-left image */
.employee-left {
  grid-column: 1;
}

.emp-box {
  width: 400px;
  height: 400px;
  border-radius: 100px;
  overflow: hidden;
  background: #fa2021;
  border: 7px solid #651c32;
  position: relative;
  z-index: 3;
  margin-top: -5rem;
  padding: 50px;
}

.emp-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.emp-box1 {
  width: 400px;
  height: 400px;
  border-radius: 100px;
  overflow: hidden;
  border: 7px solid #651c32;
  position: relative;
  z-index: 3;
}

.emp-box1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Make right column a positioning context */
.employee-right {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  margin-left: -10rem;
}

/* Position the pill so it extends under the image (desktop) */
.emp-pill {
    background: #651c32;
    color: #fff;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 30px;
    align-self: start;
    text-align: center;
    width: 100%;
    position: absolute;
    top: 15px;
    z-index: 1;
    box-sizing: border-box;
}

.engagement-text {
    text-align: center;
    padding-top: 100px;
    color: #5a1f2a;
    font-family: "Inter", sans-serif;
    margin-right: -5rem;
}

/* Trainings card spans both columns */
.trainings-wrap {
  grid-column: 1 / -1;
}

.trainings-card {
  background: #651c32;
  color: #fff;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
  overflow: visible;
}

.trainings-inner {
  display: flex;
  gap: 26px;
  align-items: center;
}

/* Left inset image inside the maroon card */
.trainings-image {
  display: flex;
  align-items: start;
  justify-content: start;
}

.img-frame {
  width: 500px;
  height: 409px;
  border-radius: 50px;
  padding: 10px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-frame img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 70px;
  border: 7px solid #ffff;
  object-fit: cover;
}

/* Right training text */
.trainings-content {
  flex: 1;
  text-align: center;
  padding: 8px 6px;
  width: 100%;
}

.trainings-content h3 {
  margin: 0 0 12px;
  font-size: 25px;
  letter-spacing: 5.5px;
  font-weight: 800;
  font-family: "Inter";
}

.trainings-content p {
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.5;
  text-align: center;
  font-size: 20px;
  font-family: "Inter";
  letter-spacing: 5px;
}

.trainings-note {
  margin-top: 12px;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 1100px) {
  .employee-container {
    grid-template-columns: 320px 1fr;
    gap: 22px;
  }

  .emp-box {
    height: 220px;
    border-radius: 28px;
  }

  .trainings-card {
    padding: 22px;
    border-radius: 22px;
  }

  .trainings-inner {
    gap: 20px;
  }

  .trainings-image {
    flex-basis: 42%;
  }
}

@media (max-width: 900px) {
  .employee-container {
    grid-template-columns: 1fr;
  }

  .employee-left,
  .employee-right {
    grid-column: 1;
  }

  .employee-left {
    order: 1;
    display: flex;
    justify-content: center;
  }

  .employee-right {
    order: 2;
    align-items: center;
    padding: 0 12px;
  }

  .trainings-wrap {
    order: 3;
    grid-column: 1;
    padding: 0 12px;
  }

  .trainings-inner {
    flex-direction: column;
    align-items: center;
  }

  .trainings-image {
    width: 80%;
    flex-basis: auto;
  }

  .img-frame {
    padding: 14px;
    border-radius: 20px;
  }

  .trainings-content {
    padding-top: 8px;
  }
}

@media (max-width: 480px) {
  .emp-box {
    height: 160px;
  }

  .img-frame {
    padding: 10px;
  }

  .trainings-content p {
    font-size: 13px;
  }
}

/* Video thumbnail and modal */
.story-video-card .video-thumb {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}
.story-video-card .video-thumb img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.story-video-card .play-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

/* Modal overlay */
.video-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  padding: 24px;
}

/* Modal inner container */
.video-modal-inner {
  position: relative;
  max-width: 1100px;
  width: 100%;
  background: #000;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.6);
  box-sizing: border-box;
}

/* Close button */
.video-close {
  position: absolute;
  right: 15px;
  top: 10px;
  background: transparent;
  color: #fff;
  border: 0;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 6px;
}

/* Video element styling */
.modal-video {
  width: 100%;
  height: auto;
  max-height: calc(80vh - 60px);
  display: block;
  border-radius: 8px;
  background: #000;
}

/* Small screens */
@media (max-width: 768px) {
  .story-video-card .play-icon {
    font-size: 5rem;
  }
  .video-modal-inner {
    padding: 12px;
  }
  .modal-video {
    max-height: calc(70vh - 40px);
  }
}

.video-modal {
  transition:
    opacity 240ms ease,
    visibility 240ms ease;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.video-modal.hidden {
  display: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.video-modal.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.story-card.hidden-card {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 150ms ease;
}

.story-card.hidden-card img {
  opacity: 0;
  transition: opacity 150ms ease;
}

/* Career Guide Page Styles */

.guide-header {
    text-align: center;
    padding: 1rem 1rem;
    background-color: #fff;
    padding-top: 50px;
}

.guide-header h1 {
  font-size: 55px;
  color: #651c32;
  margin: 0;
  font-family: "Baskerville";
  font-weight: 1;
  letter-spacing: 1px;
}

/* Responsive override for Open House Recruitment page */
.open-house-page {
    margin-inline: 10rem;
    padding-top: 200px;
}

.open-house-hero {
    position: relative;
    width: 100%;
    height: 1300px;
    overflow: hidden;
    box-sizing: border-box;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

    .hero-background .background-image {
        width: 100%;
        height: 1500px;
        object-fit: cover;
        object-position: center;
    }

.hero-content-wrapper {
    position: relative;
    z-index: 4;
    width: 100%;
    margin-inline: auto;
    padding-top: clamp(2rem, 4vw, 4rem);
    box-sizing: border-box;
}

.badge-top-right {
    position: absolute;
    top: 0;
    right: clamp(0.5rem, 2vw, 2rem);
    padding-right: 0;
    z-index: 5;
}

    .badge-top-right .badge-logo {
        width: clamp(70px, 8vw, 80px);
        height: auto;
    }

.logo-center-career {
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 5rem);
}

    .logo-center-career .nustar-logo-white {
        width: clamp(100px, 5vw, 180px);
        height: auto;
    }

.open-house-content {
    color: white;
    width: 100%;
    margin: 0 auto;
    text-align: left;
}

.title-badge {
    background-color: white;
    color: #651c32;
    padding: clamp(0.75rem, 2vw, 1rem) clamp(1.25rem, 3vw, 2.5rem);
    border-start-end-radius: 50px;
    border-end-end-radius: 50px;
    margin-bottom: 1.5rem;
    width: fit-content;
    max-width: 100%;
    display: flex;
    box-sizing: border-box;
}

    .title-badge h2 {
        margin: 0;
        font-size: clamp(1.75rem, 3vw, 1rem);
        font-weight: bold;
        font-family: "Inter";
        line-height: 1.2;
    }

.description-text {
    padding-inline: clamp(1rem, 6vw, 5rem);
    padding-block: clamp(1.5rem, 4vw, 1rem);
}

    .description-text p {
        font-size: clamp(1rem, 2vw, 2rem);
        line-height: 1.5;
        margin-bottom: 1rem;
        letter-spacing: normal;
        color: white;
        text-align: justify;
        padding-inline: 0;
        font-family: "Arquitecta";
    }

.social-links-modern {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    float: none;
    align-items: flex-end;
}

.social-link-modern {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: min(100%, 450px);
    gap: 1rem;
    padding: 0.75rem;
    background-color: white;
    color: #651c32;
    text-decoration: none;
    border-end-start-radius: 50px;
    border-start-start-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

    .social-link-modern:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        color: #651c32;
    }

    .social-link-modern i {
        font-size: clamp(1.75rem, 3vw, 3.125rem);
    }

    .social-link-modern span {
        font-family: "Arquitecta";
        font-size: clamp(1rem, 2vw, 1.875rem);
        font-weight: 600;
    }

    .social-link-modern.facebook i {
        color: #1877f2;
    }

    .social-link-modern.linkedin i {
        color: #0a66c2;
    }

@media (max-width: 1024px) {
    .open-house-page {
        padding-top: 150px;
        margin-inline: 5rem;
    }

    .open-house-hero {
        min-height: auto;
        width: 100%;
    }

    .description-text {
        padding-inline: 1.5rem;
    }

    .social-link-modern {
        justify-content: flex-start;
        width: min(100%, 250px);
    }
}

@media (max-width: 768px) {
    .guide-header h1 {
        font-size: 38px;
    }

    .open-house-page {
        padding-top: 150px;
        margin-inline: 5rem;
    }

    .hero-content-wrapper {
        padding-top: 1.5rem;
    }

    .badge-top-right {
        position: static;
        display: flex;
        justify-content: center;
        margin-bottom: 1rem;
    }

    .logo-center-career {
        margin-bottom: 2rem;
    }

    .title-badge {
        width: 100%;
        border-radius: 24px;
    }

    .description-text {
        padding-inline: 0;
    }

        .description-text p {
            text-align: left;
        }

    .social-links-modern {
        align-items: stretch;
    }
}

@media (max-width: 480px) {
    .title-badge h2 {
        font-size: 1.5rem;
    }

    .description-text p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .social-link-modern span {
        font-size: 1rem;
    }
}

/* How to Dress for an Interview Page Styles */
.dress-interview-page {
    margin: 0;
    padding-top: 200px;
}

.dress-interview-hero {
    position: relative;
    width: 100%;
    height: 1000px;
    overflow: hidden;
    box-sizing: border-box;
}

.dress-interview-background {
    width: 100%;
    height: 100%;
    background-color: #651c32;
}

.dress-interview-background img {
    width: 50%;
    height: 60%;
}

.dress-interview-container {
    margin-inline: 10rem;
}

@media (max-width: 1600px) {
    .dress-interview-container {
        margin-inline: 10rem;
    }
}

@media (max-width: 1200px) {
    .dress-interview-container {
        margin-inline: 2rem;
    }
}

@media (max-width: 768px) {
    .dress-interview-container {
        margin-inline: 0;
    }
}

/* Left visuals */
.dress-interview-left {
    position: absolute;
    top: clamp(2rem, 5vw, 6.25rem);
    z-index: 4;
    text-align: center;
    width: min(32vw, 22rem);
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dress-interview-logo img {
    width: clamp(90px, 8vw, 120px);
    height: auto;
    display: block;
    margin-bottom: clamp(1rem, 2.5vw, 2.5rem);
}

.dress-interview-twoperson img {
    width: min(100%, clamp(280px, 30vw, 500px));
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 18px rgba(0, 0, 0, 0.55));
}

@media (max-width: 1200px) {
    .dress-interview-left {
        left: clamp(0.5rem, 1vw, 1rem);
        width: min(30vw, 18rem);
    }

    .dress-interview-twoperson img {
        width: min(100%, clamp(200px, 24vw, 300px));
    }
}

@media (max-width: 992px) {
    .dress-interview-left {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        max-width: 320px;
        margin-inline: auto;
        margin-bottom: 1.5rem;
    }

    .dress-interview-logo img {
        width: clamp(90px, 16vw, 120px);
    }

    .dress-interview-twoperson img {
        width: min(100%, 280px);
    }
}

@media (max-width: 768px) {
    .dress-interview-left {
        max-width: 280px;
        margin-bottom: 1.25rem;
    }

    .dress-interview-twoperson img {
        width: min(100%, 240px);
    }
}
/* Right content */
.dress-interview-right {
    position: absolute;
    top: 0;
    left: clamp(15rem, 24vw, 20rem);
    z-index: 2;
    min-width: 0;
}

.dress-interview-content {
    position: relative;
    width: 100%;
    min-height: auto;
    background-color: white;
    border-end-start-radius: 30px;
    border-end-end-radius: 30px;
    margin-left: 0;
    padding-block: clamp(1.25rem, 2.5vw, 2rem);
    box-sizing: border-box;
}

.dress-interview-title {
    background-color: #651c32;
    color: white;
    padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1rem, 2.5vw, 1.875rem);
    width: min(100%, 380px);
    min-height: auto;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    margin-bottom: clamp(1.25rem, 2vw, 1.875rem);
    box-sizing: border-box;
}

    .dress-interview-title h2 {
        font-family: "Playfair Display";
        font-weight: 500;
        font-size: clamp(1.35rem, 2vw, 1.875rem);
        line-height: 1.35;
        letter-spacing: 1px;
        margin: 0;
    }

.dress-interview-badge-top-right {
    position: absolute;
    top: 0;
    right: 0;
}

    .dress-interview-badge-top-right .badge-logo {
        width: clamp(85px, 8vw, 100px);
        height: auto;
        display: block;
        padding-right: 0;
    }

.dress-interview-tips {
    margin-inline: 20%;
}

    .dress-interview-tips .check-icon-badge {
        width: 28px;
        height: auto;
        flex-shrink: 0;
        margin-top: 0.25rem;
    }

    .dress-interview-tips p {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        font-size: clamp(1rem, 1.25vw, 1.25rem);
        line-height: 1.7;
        margin-bottom: clamp(1rem, 2vw, 2rem);
        letter-spacing: normal;
        color: #651c32;
        font-family: "Inter";
        padding-inline: 0;
    }

    .dress-interview-tips .tip-text {
        display: block;
        text-align: justify;
    }

.dress-interview-cta {
    background-color: #651c32;
    color: white;
    padding: clamp(0.85rem, 1.5vw, 1rem);
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-inline: clamp(0rem, 4vw, 3rem);
}

    .dress-interview-cta h3 {
        margin: 0;
        font-size: clamp(1.1rem, 1.7vw, 1.5625rem);
        font-weight: bold;
        font-family: "Montserrat";
        letter-spacing: 1px;
    }

.dress-interview-social {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    margin-left: 0;
    margin-top: 1rem;
    align-items: flex-end;
}

.dress-interview-social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: min(100%, 420px);
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

    .dress-interview-social-link:hover {
        transform: translateY(-3px);
        color: white;
    }

    .dress-interview-social-link i {
        font-size: clamp(1.5rem, 2vw, 2.5rem);
        flex-shrink: 0;
    }

    .dress-interview-social-link span {
        font-family: "Arquitecta";
        font-weight: 500;
        font-style: normal;
        font-size: clamp(1rem, 1.4vw, 1.5625rem);
        line-height: 1.3;
        letter-spacing: normal;
    }

    .dress-interview-social-link.facebook i {
        color: white;
    }

    .dress-interview-social-link.linkedin i {
        color: white;
    }

@media (max-width: 1200px) {
    .dress-interview-right {
        left: clamp(13rem, 22vw, 17rem);
        right: 1rem;
    }

    .dress-interview-tips {
        padding-right: 3rem;
    }
}

@media (max-width: 992px) {
    .dress-interview-right {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
    }

    .dress-interview-content {
        border-radius: 24px;
    }

    .dress-interview-badge-top-right {
        position: static;
        display: flex;
        justify-content: center;
        margin-bottom: 1rem;
    }

    .dress-interview-tips {
        padding-right: 0;
    }

    .dress-interview-social {
        align-items: flex-start;
    }

    .dress-interview-social-link {
        width: min(100%, 380px);
    }
}

@media (max-width: 768px) {
    .dress-interview-content {
        position: static;
        width: 100%;
        margin: 0 auto;
        text-align: left;
        padding: 1.25rem 1rem;
    }

    .dress-interview-title {
        width: 100%;
        border-radius: 24px;
    }

        .dress-interview-title h2 {
            font-size: 1.3rem;
        }

    .dress-interview-tips p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .dress-interview-tips .tip-text {
        text-align: left;
    }

    .dress-interview-cta {
        margin-inline: 0;
    }

        .dress-interview-cta h3 {
            font-size: 1.15rem;
        }

    .dress-interview-social {
        align-items: stretch;
    }

    .dress-interview-social-link {
        width: 100%;
        max-width: none;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .dress-interview-badge-top-right .badge-logo {
        width: 80px;
    }

    .dress-interview-social-link span {
        font-size: 0.95rem;
    }
}

/* Interview Preparation Tips */

.interview-container {
    margin-inline: 10rem;
}

@media (max-width: 1600px) {
    .interview-container {
        margin-inline: 10rem;
    }
}

@media (max-width: 1200px) {
    .interview-container {
        margin-inline: 2rem;
    }
}

@media (max-width: 768px) {
    .interview-container {
        margin-inline: 0;
    }
}

.interview-preparation-page {
    padding-top: 200px;
    box-sizing: border-box;
}

.interview-preparation-tips {
    position: relative;
    width: 100%;
    min-height: clamp(900px, 95vh, 1350px);
    padding-block: clamp(1.5rem, 4vw, 3rem);
    overflow: hidden;
    box-sizing: border-box;
}

.interview-preparation-tips-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

    .interview-preparation-tips-background .background-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

.interview-preparation-content {
    position: relative;
    z-index: 3;
    width: min(100%, 1180px);
    margin-inline: auto;
}

    .interview-preparation-content .badge-top-right {
        position: absolute;
        top: 0;
        right: 0;
        margin-top: -3rem;
    }

        .interview-preparation-content .badge-top-right .badge-logo {
            width: clamp(85px, 8vw, 80px);
            height: auto;
            display: block;
            padding-right: 1rem;
            align-items: flex-end;
        }

.logo-center-career {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: clamp(0.5rem, 2vw, 1rem);
}

    .logo-center-career .nustar-logo-white {
        width: clamp(110px, 10vw, 150px);
        height: auto;
        display: block;
    }

.interview-tips-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 2rem);
    align-items: start;
    max-width: 800px;
    margin: 2rem auto 0;
    padding-inline: 0;
}

.interview-title-center {
    grid-column: 1 / -1;
    width: 100%;
    text-align: center;
}

    .interview-title-center h1 {
        font-family: "Arquitecta";
        font-size: clamp(2rem, 4vw, 3.125rem);
        font-weight: 700;
        color: white;
        margin: 0;
        letter-spacing: 1px;
        line-height: 1.2;
    }

.leftside-contents,
.rightside-contents {
    background-color: #fff;
    border-radius: 20px;
    padding: clamp(1rem, 2vw, 1.5rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100%;
    box-sizing: border-box;
}

    .leftside-contents h4,
    .rightside-contents h4 {
        margin: 0 0 1.25rem;
        color: #651C32;
        text-align: center;
        font-family: "Arquitecta";
        font-size: clamp(1.5rem, 2.5vw, 2.4375rem);
        font-weight: 950;
        line-height: 1.2;
        text-transform: uppercase;
    }

    .leftside-contents img,
    .rightside-contents img {
        width: min(100%, 250px);
        height: auto;
        display: block;
    }

.interview-tips-badge-center {
    grid-column: 1 / -1;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 1.25rem 1rem;
    background-color: #fff;
    border-radius: 30px;
    text-align: center;
    box-sizing: border-box;
}

    .interview-tips-badge-center h1 {
        margin: 0;
        color: #651C32;
        font-family: "Arquitecta";
        font-size: clamp(1.4rem, 2.2vw, 2.1875rem);
        font-weight: bold;
        line-height: 1.3;
        text-transform: uppercase;
    }

.interview-tips-social {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

    .interview-tips-social .dress-interview-social-link {
        width: 100%;
        justify-content: center;
        margin: 0;
    }

@media (max-width: 1200px) {
    .interview-preparation-page {
        padding-inline: 3rem;
    }
}

@media (max-width: 992px) {
    .interview-preparation-page {
        padding-top: 170px;
        padding-inline: 2rem;
    }

    .interview-preparation-tips {
        min-height: auto;
    }

    .interview-preparation-content .badge-top-right {
        position: static;
        display: flex;
        justify-content: center;
        margin-bottom: 1rem;
    }

    .interview-tips-content {
        grid-template-columns: 1fr;
    }

    .interview-title-center {
        grid-column: auto;
    }

    .interview-tips-social {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

        .interview-tips-social .dress-interview-social-link {
            justify-content: flex-start;
        }
}

@media (max-width: 768px) {
    .interview-preparation-page {
        padding-top: 150px;
        padding-inline: 1.5em;
    }

    .interview-preparation-tips {
        border-radius: 20px;
    }

    .interview-title-center h1 {
        font-size: 1.75rem;
    }

    .leftside-contents h4,
    .rightside-contents h4 {
        font-size: 1.35rem;
    }

    .interview-tips-badge-center {
        border-radius: 22px;
    }

        .interview-tips-badge-center h1 {
            font-size: 1.2rem;
        }
}

@media (max-width: 480px) {
    .interview-tips-content {
        margin-top: 1.25rem;
    }

    .leftside-contents,
    .rightside-contents {
        border-radius: 16px;
    }
}

/* Responsive overrides for NUSTAREvent1 */
.poster-container {
  padding-top: clamp(150px, 18vw, 220px);
}

.content-margins {
  width: min(100%, 1800px);
  margin-inline: auto;
  padding-inline: clamp(8rem, 4vw, 10rem);
  box-sizing: border-box;
}

.poster-grid {
  width: 100%;
  max-width: 100%;
  grid-template-columns: minmax(280px, 400px) minmax(0, 1fr);
  gap: clamp(1rem, 2vw, 2.5rem);
  align-items: start;
}

.poster-sidebar {
  width: 100%;
}

.logo-wrap img,
.spotlight-photo,
.spotlight-text,
.month-pill {
  width: 100%;
  max-width: 100%;
}

.poster-main {
  min-width: 0;
}

.poster-grid > .poster-main .nufeed-card {
  margin-left: 0;
}

.nufeed-card {
  padding: clamp(1rem, 2vw, 2.25rem);
}

.nufeed-header h1 {
  font-size: clamp(3rem, 8vw, 9.5rem);
}

.inline-symbolwhite {
  height: clamp(2.5rem, 5.5vw, 8.5rem);
  margin-top: -1.5rem;
}

.nufeed-sub {
  font-size: clamp(1rem, 2vw, 2.8rem);
}

.nufeed-title {
  font-size: clamp(1.4rem, 3vw, 3.2rem);
  letter-spacing: clamp(1px, 0.3vw, 5px);
}

.nufeed-box h4 {
  font-size: clamp(1.4rem, 2.5vw, 2.5rem);
}

.item-title {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
}

.item-date,
.item-date1 {
  font-size: clamp(0.95rem, 1.4vw, 1.375rem);
}

.employee-section {
  padding: 2rem 0 4rem;
}

.employee-container {
  width: 100%;
  max-width: 100%;
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
}

.emp-box1 {
  width: 100%;
  max-width: 400px;
  height: auto;
  aspect-ratio: 1 / 1;
  margin-top: 0;
}

.emp-pill {
  position: relative;
  top: 0;
  margin-left: 0;
  font-size: clamp(1.25rem, 2vw, 1.875rem);
}

.engagement-text {
  padding-top: 1.5rem;
}

.trainings-inner {
  gap: clamp(1rem, 2vw, 2rem);
}

.img-frame {
  width: min(100%, 500px);
  height: auto;
  aspect-ratio: 500 / 409;
}

.trainings-content h3 {
  font-size: clamp(1.5rem, 2vw, 2rem);
  letter-spacing: clamp(1px, 0.3vw, 5px);
}

.trainings-content p {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  letter-spacing: normal;
}

@media (max-width: 991px) {
  .poster-grid,
  .employee-container {
    grid-template-columns: 1fr;
  }

  .poster-sidebar,
  .poster-main,
  .employee-left,
  .employee-right,
  .trainings-wrap {
    width: 100%;
  }

  .poster-sidebar {
    order: 1;
  }

  .poster-main {
    order: 2;
  }

  .employee-left {
    display: flex;
    justify-content: center;
  }

  .employee-right {
    align-items: stretch;
  }

  .trainings-inner {
    flex-direction: column;
  }

  .trainings-image,
  .trainings-content {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .content-margins {
    padding-inline: 1rem;
  }

  .casino-grid,
  .nufeed-grid {
    grid-template-columns: 1fr;
  }

  .spotlight-text h3 {
    font-size: 2rem;
  }

  .spotlight-text h4 {
    font-size: 1.25rem;
  }

  .spotlight-text .description {
    font-size: 1rem;
  }
}