@font-face {
  font-family: "PTSerif";
  src: url("fonts/PTSerif-Bold.ttf") format("opentype"),
    url("fonts/PTSerif-Bold.ttf") format("truetype");

  font-style: normal;
  font-display: swap;
}

/* Light Weight */
@font-face {
  font-family: "SerifRegular";
  src: url("fonts/Serif-Regular.ttf") format("opentype"),
    url("fonts/Serif-Regular.ttf") format("truetype");

  font-style: normal;
  font-display: swap;
}

/* Italic */
@font-face {
  font-family: "SerifBoldItalic";
  src: url("fonts/Serif-BoldItalic.ttf") format("opentype"),
    url("fonts/Serif-BoldItalic.ttf") format("truetype");

  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "SerifItalic";
  src: url("fonts/Serif-Italic.ttf") format("opentype"),
    url("fonts/Serif-Italic.ttf") format("truetype");

  font-style: italic;
  font-display: swap;
}

body {
  font-family: "LeBeauneNew", serif;
  background-color: #fff;
  overflow-x: hidden;
}

/* Header */
header {
  position: fixed;
  top: 0px;
  left: 0;
  right: 0;
  padding: 15px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: transparent;
  height: 122px;
}
header.scrolled {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);

  color: #ddd;
}
/* Hamburger Menu Button */
.hamburger {
  width: 50px;
  height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background-color: #fff;
  transition: all 0.35s ease;
  display: block;
}
header.scrolled .contact-btn {
  color: #000;
}

.contact-btn svg {
  fill: #fff;
}
header.scrolled .contact-btn svg {
  fill: #000;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(9, 9, 9, 0.3);
  backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 40px;
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.active {
  transform: translateX(0);
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 1001;
  opacity: 0;
  transition: opacity 0.3s ease 0.3s;
}

.mobile-menu.active .close-btn {
  opacity: 1;
}
.header-us {
  background-size: cover !important;
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat !important;
}

.header-us1 {
  background-size: cover !important;
  width: 100%;
  height: 170vh;
  background-repeat: no-repeat !important;
}

.header-us2 {
  height: 108vh;
}

.header-us4 {
  height: 100vh;
}
.close-btn::before,
.close-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 3px;
  background: white;
  border-radius: 3px;
}

.close-btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.close-btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.close-btn:hover::before,
.close-btn:hover::after {
  background: #667eea;
}
.submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: transparent;
}

.submenu.active {
  max-height: 500px;
}

.submenu-item {
  display: flex;
  align-items: center;
  padding: 0 0 0 40px;
  color: #fff;
  font-size: 25px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: initial;
}

.submenu-item::before {
  content: "•";
  position: absolute;
  left: 16px;
  font-size: 35px;
  color: #b08f5a;
  bottom: -4px;
}

.submenu-item:hover {
  color: #b08f5a;
  padding-left: 45px;
}

/* Highlighted submenu item */
.submenu-item.highlighted {
  color: #b08f5a;
}

/* Navigation Items */
.nav-items {
  list-style: none;
  padding: 0;
}
.nav-item {
  /* line-height: 2; */
  z-index: 99999;
  position: relative;
}
.nav-item a {
  display: flex;
  align-items: center;
  color: white;
  text-decoration: none;
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 99999;
  position: relative;
  transition: all 0.3s ease;
  transform: translateX(-100%);
  opacity: 0;
}
.acc {
  display: flex;
  align-items: center;
  color: white;
  text-decoration: none;
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 99999;
  position: relative;
  transition: all 0.3s ease;
  transform: translateX(-100%);
  opacity: 0;
}

.acc span svg {
  width: 20px;
  height: 22px;
  margin-left: 10px;
  fill: #fff;
  margin-bottom: 5px;
}
.nav-item a .svgg {
  width: 12px;
  height: 18px;
  margin-left: 10px;
  fill: #fff;
}
.nav-item a span {
  font-family: "LeBeauneNew", serif;

  font-weight: 100;
  font-size: 38px;
}

.mobile-menu.active .nav-item a {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu.active .acc {
  transform: translateX(0);
  opacity: 1;
}
/* Staggered animation delays */
.nav-item:nth-child(1) a {
  transition-delay: 0.1s;
}

.nav-item:nth-child(2) a {
  transition-delay: 0.2s;
}

.nav-item:nth-child(3) a {
  transition-delay: 0.3s;
}

.nav-item:nth-child(4) div {
  transition-delay: 0.4s;
}

.nav-item:nth-child(5) div {
  transition-delay: 0.5s;
}

.nav-item:nth-child(6) a {
  transition-delay: 0.6s;
}

.nav-item:nth-child(7) a {
  transition-delay: 0.7s;
}

.nav-item a:hover {
  color: #b08f5a;
  fill: #b08f5a;
}
.acc:hover {
  color: #b08f5a;
  fill: #b08f5a;
}
.nav-arrow {
  font-size: 24px;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.3s ease;
}

.nav-item a:hover .nav-arrow {
  opacity: 1;
  transform: translateX(0);
}
.nav-item div:hover .nav-arrow {
  opacity: 1;
  transform: translateX(0);
}
/* Logo Center */
.logo-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: #333;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
}
.f-d {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  align-items: center;
}
/* Contact Button */
.contact-btn {
  border-radius: 50%;
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background-color 0.3s ease;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Sidebar Menu */
.sidebar-menu {
  position: fixed;
  left: -380px;
  top: 0;
  width: 350px;
  height: 100vh;
  background-color: #2d2d2d;
  z-index: 999;
  transition: left 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 70px 0 0 0;
  overflow-y: auto;
}

.sidebar-menu.active {
  left: 0;
}

.menu-label {
  font-size: 10px;
  letter-spacing: 1.5px;
  color: #7a7a7a;
  padding: 30px 40px 40px 40px;
  text-transform: lowercase;
  font-weight: 300;
  border-bottom: 1px solid #444;
}

.menu-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.menu-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.5px;
  transition: color 0.3s ease, background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  border-bottom: 1px solid #444;
}

.menu-nav a:hover {
  background-color: #383838;
  color: #c9a066;
}
.article-nav-container {
  /* max-width: 1200px; */
  margin: 0 auto;

  padding: 30px 0;
}

/* Unique Class: Navigation wrapper */
.article-nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* Unique Class: Left navigation link */
.article-nav-left {
  flex: 1;
  display: flex;
  align-items: baseline;
  gap: 12px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}

.article-nav-left:hover {
  color: #5a8a7a;
  transform: translateX(-5px);
}

/* Unique Class: Left arrow */
.article-nav-arrow-left {
  font-size: 20px;
  font-weight: 300;
  color: #5a8a7a;
  transition: all 0.3s ease;
  min-width: 20px;
}

.article-nav-left:hover .article-nav-arrow-left {
  color: #333;
  transform: translateX(-5px);
}

/* Unique Class: Left text */
.article-nav-text-left {
  font-size: clamp(12px, 2vw, 14px);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--black, #000);
  font-family: "PT Serif";
  font-style: normal;
  font-weight: 600;
}

/* Unique Class: Right navigation link */
.article-nav-right {
  flex: 1;
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 12px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
  text-align: right;
}

.article-nav-right:hover {
  color: #5a8a7a;
  transform: translateX(5px);
}

/* Unique Class: Right text */
.article-nav-text-right {
  font-size: clamp(12px, 2vw, 14px);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--black, #000);
  font-family: "PT Serif";
  font-style: normal;
  font-weight: 600;
}

/* Unique Class: Right arrow */
.article-nav-arrow-right {
  font-size: 20px;
  font-weight: 300;
  color: #5a8a7a;
  transition: all 0.3s ease;
  min-width: 20px;
}

.article-nav-right:hover .article-nav-arrow-right {
  color: #333;
  transform: translateX(5px);
}

/* Unique Class: Divider line */
.article-nav-divider {
  width: 1px;
  height: 30px;
  background: #d0d0d0;
  margin: 0 20px;
}

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.article-nav-left {
  animation: slideInLeft 0.6s ease-out;
}

.article-nav-right {
  animation: slideInRight 0.6s ease-out;
}

.article-nav-divider {
  animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .article-nav-container {
    padding: 25px 0;
  }

  .article-nav-arrow-left,
  .article-nav-arrow-right {
    font-size: 18px;
  }

  .article-nav-text-left,
  .article-nav-text-right {
    font-size: 13px;
  }
  .article-nav-right {
    justify-content: flex-end;
    text-align: left;
  }
  .article-nav-divider {
    margin: 0 15px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .article-nav-container {
    padding: 20px 0;
  }

  .article-nav-wrapper {
    gap: 15px;
  }

  .article-nav-left,
  .article-nav-right {
    flex: 1;
  }

  .article-nav-arrow-left,
  .article-nav-arrow-right {
    font-size: 16px;
    min-width: 16px;
  }

  .article-nav-text-left,
  .article-nav-text-right {
    font-size: 12px;
    letter-spacing: 0.5px;
  }

  .article-nav-divider {
    height: 25px;
    margin: 0 12px;
  }
  .article-nav-arrow-left svg,
  .article-nav-arrow-right svg {
    width: 60px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .article-nav-container {
    padding: 18px 0;
  }

  .article-nav-wrapper {
    gap: 10px;
    flex-wrap: wrap;
  }

  .article-nav-left,
  .article-nav-right {
    flex: 1 1 calc(50% - 5px);
    min-width: 120px;
  }

  .article-nav-arrow-left,
  .article-nav-arrow-right {
    font-size: 14px;
    min-width: 14px;
  }

  .article-nav-text-left,
  .article-nav-text-right {
    font-size: 11px;
    letter-spacing: 0.3px;
  }

  .article-nav-divider {
    display: none;
  }

  .article-nav-right {
    justify-content: flex-end;
    text-align: left;
  }
}

/* Extra Small Mobile */
@media (max-width: 380px) {
  .article-nav-container {
    padding: 15px 0;
  }

  .article-nav-wrapper {
    gap: 8px;
  }

  .article-nav-left,
  .article-nav-right {
    flex: 1 1 100%;
    padding: 10px 0;
  }

  .article-nav-text-left,
  .article-nav-text-right {
    font-size: 10px;
  }

  .article-nav-arrow-left,
  .article-nav-arrow-right {
    font-size: 12px;
  }
}
.menu-arrow {
  font-size: 12px;
  font-weight: 300;
}
/* Fullscreen video section */
.video-section {
  position: relative;
  height: 170vh;
  overflow: hidden;
}
.video-section3 {
  height: 108vh;
}

.video-section4 {
  height: 100vh;
}
.img-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Centered text */
.text-overlay {
  position: absolute;
  display: flex;
  flex-direction: column;

  top: 23%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;

  font-weight: bold;
  color: white;
  transition: opacity 2.8s ease-in-out, transform 2.8s ease-in-out;
  width: 100%;
}
.text-overlay1 {
  position: absolute;
  display: flex;
  flex-direction: column;

  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;

  font-weight: bold;
  color: white;
  transition: opacity 2.8s ease-in-out, transform 2.8s ease-in-out;
}

.text-overlay1 .span2 {
  color: #fff;
  text-align: center;
  /* TITLE/hero section title */
  font-family: "LeBeauneNew", serif;
  font-size: 120px;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
}

.pr .span1 {
  color: #edc98f;
  text-align: center;
  font-family: "PT Serif", serif;
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  position: absolute;
  right: 0;
  left: 0;
  top: 0px;
}
.pr .span2 {
  color: #fff;
  text-align: center;
  /* TITLE/hero section title */
  font-family: "LeBeauneNew", serif;
  font-size: 100px;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  left: 0;
  top: 10px;
  position: absolute;
  right: 0;
}

.span1 {
  color: #edc98f;
  text-align: center;
  font-family: "PT Serif", serif;
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  position: absolute;
  right: 0;
  left: 0;
  top: 0px;
}
.span2 {
  color: #fff;
  text-align: center;
  /* TITLE/hero section title */
  font-family: "LeBeauneNew", serif;
  font-size: 100px;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
}
/* Fade-out class for scroll */
.fade-out {
  opacity: 0;
  transform: translate(-50%, -60%);
}
.bg {
  position: absolute;
  background: hsl(0deg 0% 0% / 42%);
  width: 100%;
  height: 100%;
  margin: auto;
}
.content-section {
  background-color: #78423d;
  height: 353px;
}
.content-section div {
  padding: 50px 75px;
}
.content-section h3 {
  color: #edc98f;
  text-align: center;
  /* TITLE/T1 */
  font-family: LeBeauneNew;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 60px;
}

.content-section p {
  color: #edc98f;
  text-align: center;
  /* BODYTEXT/B1 */
  font-family: "PT Serif";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;

  text-transform: capitalize;
}
/* Second section */
.second-section {
  height: 600px;
  padding: 70px 50px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    1deg,
    rgba(14, 14, 14, 0.61) 63.93%,
    rgba(12, 12, 12, 0) 96.41%
  );
  color: white;
  font-size: 2.5em;
  opacity: 0;
  transform: translateY(720px);
  transition: opacity 4s ease, transform 4s ease;
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
}
.p-home-right {
  color: #dadada;
  text-align: justify;
  /* BODYTEXT/B1 */
  font-family: "PT Serif";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 111.111% */
  text-transform: capitalize;
}
.p-home-left {
  color: #fff;
  width: 280px;
  /* TITLE/T1 */
  font-family: LeBeauneNew;
  font-size: 45px;
  font-style: normal;
  font-weight: 400;
  line-height: 41.2px; /* 91.556% */
  text-transform: uppercase;
  margin: 0;
}

.pleft {
  width: 74%;
  text-align: center;
  margin: auto;
  line-height: 1;
  margin-bottom: 80px;
}
.pright {
  width: 74%;
  margin: auto;
  text-align: center;
  line-height: 1;
}
.second-section.show {
  opacity: 1;
  transform: translateY(0);
}
/* Contact Card */
.contact-card {
  position: fixed;
  right: -720px;
  top: 0;
  width: 720px;
  height: 100vh;
  background: linear-gradient(135deg, #d1e2db 0%, #c5dcd3 100%);
  z-index: 999;
  padding: 7px 40px 40px 40px;
  transition: right 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  z-index: 9999;
  height: 100vh;
  max-height: 100%;
}

.contact-card.active {
  right: 0;
}

.contact-card-close {
  top: 25px;
  right: 25px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  line-height: 1;
}

.contact-card-close:hover {
  background-color: #8b6f47;
}

.contact-card h2 {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 2px;
  color: #78423d;
  margin-bottom: 20px;
  font-weight: 600;
}

.contact-info {
  margin-bottom: 40px;
  display: flex;
  align-items: baseline;
  flex-direction: row;
}

.contact-info-label {
  letter-spacing: 1px;

  text-transform: uppercase;

  display: flex;
  align-items: center;

  font-weight: 500;
  line-height: 1.4;
  color: #78423d;
  font-family: "PT Serif", sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.contact-info-label svg {
  margin-right: 10px;
}

.contact-info-icon {
  width: 8px;
  height: 8px;
  background-color: #a0826d;
  display: block;
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-info-icon.location {
  border-radius: 50%;
}

.contact-info p {
  font-size: 12px;
  color: #333;
  line-height: 1.6;
  font-weight: 300;
  margin-left: 16px;
}

.contact-social {
  margin-top: auto;
  display: flex;
  gap: 10px;
  padding-bottom: 30px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;

  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-size: 11px;
  font-weight: 500;
}

.contact-copyright {
  color: #78423d;
  text-align: right;
  /* FOOTER/BODYTEXT */
  font-family: "PT Serif", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  text-transform: capitalize;
}
.bg {
  position: relative;
  width: 100%;
  display: flex;
  overflow: hidden;
  border-radius: 8px;
}

/* H3 stays on the image */
.bg h3 {
  position: absolute;
  bottom: 90px;
  left: 0;
  right: 0;
  font-size: 45px;
  color: #edc98f;
  margin: 0;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  z-index: 2;
  transition: all 0.5s ease;
}

/* Overlay that appears on hover */
.about-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 20px;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.bg:hover .about-hover {
  opacity: 1;
}

/* Paragraph slides up on hover */
.about-hover p {
  font-size: 16px;
  color: #edc98f;
  line-height: 1.6;
  text-align: center;
  width: 100%;
  max-width: 546px;
  margin: 0 auto;
  text-transform: capitalize;
  font-family: "PT Serif", serif;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s ease 0.1s, transform 0.5s ease 0.1s;
}

.bg:hover .about-hover p {
  opacity: 1;
  transform: translateY(-80px);
}

/* H3 moves down when hovering */
.bg:hover h3 {
  bottom: 50%;
}
/* Hero Section */
.hero {
  height: 185vh;
  min-height: 100%;
  max-height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-content {
  width: 100%;
  height: 100%;
  align-items: center;
}

.hero-left {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-right {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
  height: 100%;
  padding: 60px;
  display: flex;
  align-items: flex-end;
  position: relative;
}

.hero h1 {
  font-size: 72px;
  font-weight: 300;
  letter-spacing: 4px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-right-content {
  position: relative;
  z-index: 2;
}

.plate-image {
  width: 280px;
  height: 200px;
  background: linear-gradient(45deg, #d4a574, #c9a066);
  border-radius: 4px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Park St Section */
.park-section {
  padding: 80px 0px 0 0;
}

.park-left {
  background-color: #c8e6d7;
  padding: 40px;
  border-radius: 2px;
}

.park-label {
  font-size: 11px;
  letter-spacing: 2px;
  color: #666;
  margin-bottom: 15px;
}

.park-title {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 1px;
  color: #333;
  margin-bottom: 15px;
}

.park-text {
  font-size: 12px;
  line-height: 1.8;
  color: #555;
}

.park-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.park-img {
  height: 300px;
  background: linear-gradient(45deg, #8b7355, #9e8270);
  border-radius: 2px;
}

/* Services Section */
.services {
  padding: 80px 60px;
  background-color: white;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
}

.services h2 {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 2px;
}

.services-link {
  font-size: 12px;
  letter-spacing: 1px;
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.service-card {
  text-align: center;

  padding: 0 20px;
}

.service-image {
  width: 100%;
  height: 280px;
  background: linear-gradient(45deg, #c9a066, #d4a574);
  margin-bottom: 30px;
  border-radius: 2px;
}

.service-title {
  color: #000;
  text-align: center;

  font-family: LeBeauneNew;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.service-desc {
  color: #afafaf;
  text-align: center;

  font-family: "PT Serif", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  text-transform: capitalize;
  margin: 0;
}

/* Footer */
.footer {
  background-color: #6b4b2a; /* warm brown background */
  color: #edc98f; /* golden beige text */
  padding: 30px 60px 30px;
  font-family: "PT Serif", sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 60px;
}

.footer-left {
  flex: 1 1 45%;
}

.footer-logo {
  font-size: 28px;
  margin-bottom: 15px;
  margin-top: 12px;
  color: #edc98f;
  letter-spacing: 0.5px;
}

.footer-desc {
  font-size: 16px;
  line-height: 1.2;
  /* max-width: 420px; */
  color: #edc98f;
  margin-bottom: 30px;
  font-family: "PT Serif", sans-serif;
}

.footer-socials a img {
  width: 24px;
  height: 24px;
  margin-right: 15px;
  filter: brightness(0) invert(0.9);
  transition: filter 0.3s ease;
}

.footer-socials a:hover img {
  filter: brightness(1.2);
}

.footer-copy {
  font-size: 13px;
  margin: 0;
  color: #edc98f;
  line-height: 1.5;
}

.footer-right {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 32px;
  margin: 0 0 10px 0;
  padding: 0;
}

.footer-nav li a {
  color: #edc98f;
  text-decoration: none;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.footer-nav li a:hover {
  color: #fff;
}

.footer-info {
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-content: flex-start;
  align-items: flex-start;
  width: 67%;
}

.footer-info h4 {
  font-size: 14px;
  color: #edc98f;

  text-transform: uppercase;
}

.footer-info p,
.footer-info a {
  font-size: 14px;
  color: #edc98f;
  text-decoration: none;
  line-height: 1.6;
  margin: 2px;
}

.footer-info a:hover {
  color: #fff;
}
.footer-contact {
  text-align: left;
}

.footer-location {
  text-align: left;
}
/* Responsive */

.slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 600px;
  overflow: hidden;
  border-radius: 16px;
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.card {
  width: 64%;
  height: 100%;
  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(0);
  opacity: 1;
}
.card-r {
  width: 64%;
  height: 100%;
  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-0%);
  opacity: 1;
}
.card1 {
  width: 40%;
  height: 100%;
  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(0%);
  opacity: 1;
  z-index: 1;
  position: relative;
  left: 11%;
}
.card2 {
  width: 40%;
  height: 100%;
  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(0%);
  opacity: 1;
  z-index: 1;
  position: relative;
  right: 11%;
}
.info-card {
  position: relative;
  z-index: 10;
  padding: 35px 50px 65px 50px;
  border-radius: 8px;
  max-width: 609px;
  width: 100%;
  height: 60%;
}
.pr {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
/* Slide 1 Card - Left positioned, mint color */
.slide:nth-child(1) .info-card {
  background: url("../image/bg1.png");
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  left: 5%;
}

/* Slide 2 Card - Right positioned, tan color */
.slide:nth-child(2) .info-card {
  background: url("../image/bg2.png");
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  right: 5%;
}

/* Slide 3 Card - Left positioned, burgundy color */
.slide:nth-child(3) .info-card {
  background: url("../image/bg3.png");
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  left: 5%;
}

.card-title {
  font-size: 35px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 40px;
  line-height: 1.2;
}

.slide:nth-child(1) .card-title {
  color: #78423d;
}

.slide:nth-child(2) .card-title {
  color: #fff;
}

.slide:nth-child(3) .card-title {
  color: #c6ac99;
}

.card-description {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.5px;
  text-align: right;
  font-family: "PT Serif";
}

.slide:nth-child(1) .card-description {
  color: #78423d;
}

.slide:nth-child(2) .card-description {
  color: #fff;
}

.slide:nth-child(3) .card-description {
  color: #c6ac99;
}

/* Animation */
.from-left {
  animation: fromLeft 0.8s ease forwards;
}
.from-right {
  animation: fromRight 0.8s ease forwards;
}
.to-left {
  animation: toLeft 0.8s ease forwards;
}
.to-right {
  animation: toRight 0.8s ease forwards;
}

@keyframes fromLeft {
  0% {
    transform: translateX(-120%);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
@keyframes fromRight {
  0% {
    transform: translateX(120%);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
@keyframes toLeft {
  0% {
    transform: translateX(0%);
    opacity: 1;
  }
  100% {
    transform: translateX(-120%);
    opacity: 0;
  }
}
@keyframes toRight {
  0% {
    transform: translateX(0%);
    opacity: 1;
  }
  100% {
    transform: translateX(120%);
    opacity: 0;
  }
}

.controls {
  position: absolute;
  bottom: 50px;
  left: 45%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 5;
  width: 80%;
  justify-content: space-between;
}
.btn {
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
.vision-section {
  background-color: #639e9e;
  height: 280px;
  padding: 5px 50px;
}
.vision-section p {
  color: #def2ed;
  text-align: center;
  /* BODYTEXT/B3 */
  font-family: "PT Serif";
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px; /* 116% */
  text-transform: capitalize;
  width: 82%;
}
.div-vis {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.divsub-vis {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  height: 100%;
}

.divsub-vis span {
  color: #def2ed;
  text-align: right;
  font-family: LeBeauneNew;
  font-size: 55px;
  font-style: normal;
  font-weight: 400;
  line-height: 41.2px; /* 54.933% */
  text-transform: uppercase;
}
.container1 {
  display: flex;
  width: 100%;
  max-width: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  background: white;
  overflow: hidden;
  flex-wrap: wrap;
}
.left-panel {
  background: #78423d;
  color: #e8d5c4;
  flex: 1;
  flex: 0 0 43%;
  padding: 40px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
}

.title {
  font-size: clamp(20px, 5vw, 32px);
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 30px;
  line-height: 1.3;
  opacity: 0;
  animation: slideInLeft 0.8s ease-out 0.2s forwards;
}

.dsection {
  margin-bottom: 30px;
  opacity: 0;
}

.dsection:nth-child(2) {
  animation: slideInLeft 0.8s ease-out 0.6s forwards;
}

.dsection:nth-child(3) {
  animation: slideInLeft 0.8s ease-out 1s forwards;
}

.dsection:nth-child(4) {
  animation: slideInLeft 0.8s ease-out 1.4s forwards;
}

.section-title {
  font-size: clamp(11px, 2vw, 23px);
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-transform: uppercase;

  padding-bottom: 8px;
  color: #edc98f;
}

.section-content {
  font-size: clamp(12px, 1.8vw, 16px);
  line-height: 1.6;
  font-weight: 300;
  color: #c6ac99;
}

.right-panel {
  flex: 1;

  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
}
/* .right-panel img {
  width: 100%;
} */
/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes buildUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.news-item {
  display: flex;
  flex-direction: column;
}

.news-image {
  width: 100%;

  background: linear-gradient(135deg, #e0e0e0 0%, #d0d0d0 100%);
  margin-bottom: 0px;
  overflow: hidden;
  position: relative;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-image:hover img {
  transform: scale(1.05);
}

.news-content h3 {
  color: #000;
  /* TITLE/T3 */
  font-family: LeBeauneNew;
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 40px;
}

.news-description {
  color: #afafaf;
  /* BODYTEXT/B1 */
  font-family: "PT Serif";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 111.111% */
  text-transform: capitalize;
}

.read-more {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #78423d;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease;
  font-family: "PT Serif";

  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 100% */
  text-transform: uppercase;
}

.read-more:hover {
  color: #000;
}
.hero-breakthrough {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(250, 250, 250, 0.95) 100%
  );

  padding: 50px 40px;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  animation: slideInFromLeft 1s ease-out;
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Unique Class: Title with accent */
.section-title-accent {
  font-size: clamp(24px, 5vw, 38px);
  font-weight: 400;
  letter-spacing: 2px;
  color: #1a1a1a;
  margin-bottom: 2 5px;

  line-height: 1.4;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 0px;
  word-spacing: 2px;
}

@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 60px;
  }
}

/* Unique Class: Content wrapper with cards */
.content-section-premium {
  display: flex;
  flex-direction: column;
}

/* Unique Class: Intro card */
.intro-card-unique {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);

  border-radius: 6px;
  font-family: "PT Serif";
  font-size: clamp(14px, 2vw, 16px);
  color: #000;
  line-height: 1.8;
  font-weight: 500;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

/* Unique Class: Main text block */
.main-paragraph-block {
  background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);

  border-radius: 6px;
  font-family: "PT Serif";
  font-size: clamp(13px, 1.8vw, 15px);
  color: #000;
  line-height: 2;
  text-align: justify;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
  transition: all 0.3s ease;
}

/* Unique Class: Highlight block with gradient */
.highlight-block-premium {
  border-radius: 6px;
  font-family: "PT Serif";
  font-size: clamp(13px, 1.8vw, 15px);
  color: #000;

  margin-top: 20px;
  font-weight: 500;
  animation: fadeInUp 0.8s ease-out 0.6s backwards;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.highlight-block-premium::before {
  content: "";
  position: absolute;
  top: 0;
  right: -50px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .hero-breakthrough {
    padding: 40px 30px;
    border-left-width: 3px;
  }

  .section-title-accent {
    margin-bottom: 35px;
    padding-bottom: 20px;
  }

  .intro-card-unique,
  .main-paragraph-block,
  .highlight-block-premium {
    padding: 25px;
  }
  .text-overlay1 {
    line-height: 1.1;
  }
  .content-section-premium {
    gap: 25px;
  }
}
.careers-container-main {
  max-width: 1200px;
  margin: 0 auto;
}

/* Unique Class: Top accent line */
.careers-accent-line {
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #6b9a8a 0%, #5a8a7a 100%);
  margin-bottom: 50px;
  border-radius: 2px;
  animation: expandWidth 0.8s ease-out;
}

@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* Unique Class: Jobs grid */
.careers-jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(48%, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

/* Unique Class: Individual job card */
.careers-job-card {
  background: #639e9e;
  border-radius: 8px;
  padding: 30px;
  color: white;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.careers-job-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: -50px;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(10px);
  }
}

.careers-job-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  background: #639e9e;
}

/* Unique Class: Job title */
.careers-job-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 0px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  color: #def2ed;
}

/* Unique Class: Job ID */
.careers-job-id {
  font-size: 12px;
  opacity: 0.8;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
  margin-top: 0;
  font-family: "PT Serif";
  color: #def2ed;
}

/* Unique Class: Job description */
.careers-job-description {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 25px;
  opacity: 0.95;
  flex-grow: 1;
  position: relative;
  z-index: 1;
  font-family: "PT Serif";
  color: #def2ed;
}

/* Unique Class: Job details wrapper */
.careers-job-details {
  display: flex;
  flex-direction: row;
  gap: 50px;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
  font-family: "PT Serif";
  color: #def2ed;
}

/* Unique Class: Single detail item */
.careers-detail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  opacity: 0.9;
  font-family: "PT Serif";
  color: #def2ed;
}

.careers-apply-btn {
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  color: white;
  padding: 12px 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 4px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.careers-apply-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease;
  z-index: -1;
}

.careers-apply-btn:hover::before {
  left: 0;
}

.careers-apply-btn:hover {
  border-color: white;
  transform: scale(1.05);
}

.careers-pagination-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 50px;
  margin-bottom: 50px;
}

/* Unique Class: Pagination item */
.careers-pagination-item {
  width: 40px;
  height: 40px;
  background: #def2ed;
  color: #639e9e;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.careers-pagination-item:hover {
  background: #5a8a7a;
  color: white;
  transform: scale(1.1);
}

.careers-pagination-item.careers-active {
  background: #5a8a7a;
  color: white;
  border-color: #5a8a7a;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.careers-job-card:nth-child(1) {
  animation-delay: 0.1s;
}
.careers-job-card:nth-child(2) {
  animation-delay: 0.2s;
}
.careers-job-card:nth-child(3) {
  animation-delay: 0.3s;
}
.careers-job-card:nth-child(4) {
  animation-delay: 0.4s;
}
.mt-4444 {
  margin-top: 80px !important;
}
/* Tablet */
@media (max-width: 1024px) {
  .careers-container-main {
    max-width: 100%;
  }
  .mt-4444 {
    margin-top: 40px !important;
  }
  .careers-accent-line {
    margin-bottom: 40px;
  }
  .submenu-item::before {
    bottom: -11px;
  }
  .content-section {
    background-color: #78423d;
    height: 350px;
  }
  .careers-jobs-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
  }

  .careers-job-card {
    padding: 25px;
  }

  .careers-job-title {
    font-size: 16px;
  }
  .about-hover p {
    font-size: 13px;
    max-width: 100%;
  }
  .careers-job-description {
    font-size: 12px;
  }

  .bg img {
    height: 420px;
  }
  .bg h3 {
    top: 29px;
    font-size: 34px;
  }
  .about-hover {
    opacity: 1;
    transition: unset;
    max-width: 100%;
    min-width: 100%;
    right: 0;
  }
  .about-hover p {
    font-size: 13px;
    color: #edc98f;
    opacity: 1;
    transform: unset;
    transition: unset;
    max-width: 100%;
    width: 100%;
    min-width: 100%;
  }
}
.vf {
  position: unset;

  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
/* Mobile */
@media (max-width: 768px) {
  .careers-accent-line {
    margin-bottom: 30px;
  }

  .careers-jobs-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 35px;
  }

  .careers-job-card {
    padding: 22px;
  }

  .careers-job-title {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .careers-job-id {
    font-size: 11px;
    margin-bottom: 15px;
  }

  .careers-job-description {
    font-size: 12px;
    margin-bottom: 18px;
    line-height: 1.7;
  }

  .careers-job-details {
    gap: 10px;
    margin-bottom: 20px;
  }

  .careers-detail-item {
    font-size: 12px;
  }

  .careers-apply-btn {
    padding: 10px 18px;
    font-size: 11px;
  }

  .careers-pagination-item {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .careers-accent-line {
    margin-bottom: 25px;
    height: 3px;
  }

  .careers-jobs-grid {
    gap: 15px;
    margin-bottom: 30px;
  }

  .careers-job-card {
    padding: 18px;
  }

  .careers-job-title {
    font-size: 14px;
    margin-bottom: 5px;
  }

  .careers-job-id {
    font-size: 10px;
    margin-bottom: 12px;
  }

  .careers-job-description {
    font-size: 11px;
    margin-bottom: 15px;
    line-height: 1.6;
  }

  .careers-job-details {
    gap: 8px;
    margin-bottom: 18px;
  }

  .careers-detail-item {
    font-size: 11px;
  }

  .careers-apply-btn {
    padding: 9px 16px;
    font-size: 10px;
    letter-spacing: 0.3px;
  }

  .careers-pagination-item {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
}
/* Mobile */
@media (max-width: 768px) {
  .hero-breakthrough {
    padding: 30px 20px;
    border-left-width: 3px;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  }

  .section-title-accent {
    font-size: 28px;
    margin-bottom: 30px;
    letter-spacing: 1px;
    padding-bottom: 18px;
  }

  .section-title-accent::after {
    width: 50px;
  }

  .intro-card-unique {
    font-size: 14px;
    padding: 20px 22px;
  }

  .main-paragraph-block {
    font-size: 13px;
    text-align: left;
    padding: 22px 25px;
    line-height: 1.8;
  }

  .highlight-block-premium {
    font-size: 13px;
    padding: 22px 25px;
    margin-top: 15px;
  }

  .content-section-premium {
    gap: 20px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-breakthrough {
    padding: 25px 16px;
  }

  .section-title-accent {
    font-size: 22px;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    padding-bottom: 15px;
  }

  .section-title-accent::after {
    width: 40px;
    height: 2px;
  }

  .intro-card-unique {
    font-size: 13px;
    padding: 18px 18px;
    line-height: 1.7;
  }

  .main-paragraph-block {
    font-size: 12px;
    padding: 18px 20px;
    line-height: 1.75;
  }

  .highlight-block-premium {
    font-size: 12px;
    padding: 18px 20px;
    line-height: 1.75;
  }

  .content-section-premium {
    gap: 18px;
  }
}
/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 30px;
  }

  .header h1 {
    font-size: 28px;
  }

  .news-grid {
    gap: 30px;
  }

  .news-image {
    height: 220px;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 25px;
  }

  .header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .header h1 {
    font-size: 24px;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .news-image {
    height: 200px;
  }

  .news-content h3 {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 20px;
  }

  .header {
    margin-bottom: 35px;
    padding-bottom: 15px;
  }

  .header h1 {
    font-size: 20px;
    letter-spacing: 1px;
  }

  .discover-link {
    font-size: 11px;
  }

  .news-grid {
    gap: 30px;
  }

  .news-image {
    height: 180px;
    margin-bottom: 15px;
  }

  .news-content h3 {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .news-description {
    font-size: 12px;
    margin-bottom: 15px;
  }

  .read-more {
    font-size: 11px;
  }
}
/* Tablet and Small Screens */
@media (max-width: 1024px) {
  .container {
    flex-direction: column;
  }

  .left-panel {
    padding: 35px 25px;
    min-height: auto;
  }

  .right-panel {
    min-height: 350px;
  }

  .title {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .section {
    margin-bottom: 25px;
  }
}

/* Mobile Screens */
@media (max-width: 640px) {
  .container1 {
    flex-direction: column;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  }

  .left-panel {
    padding: 30px 20px;
    min-width: 100%;
    max-height: 60vh;
  }

  .right-panel {
    min-width: 100%;
    min-height: 300px;
  }

  .title {
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 20px;
  }

  .section {
    margin-bottom: 20px;
  }

  .section-title {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .section-content {
    font-size: 12px;
  }

  .crane {
    width: 40px;
    height: 60px;
  }

  .crane-arm {
    width: 60px;
    height: 4px;
    top: 15px;
    left: -8px;
  }

  .crane-pole {
    width: 4px;
    height: 60px;
  }

  .building.row1 {
    height: 12%;
    width: 22%;
  }

  .building.row2 {
    height: 10%;
    width: 20%;
  }

  .building.row3 {
    height: 8%;
    width: 18%;
  }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
  .left-panel {
    padding: 25px 18px;
  }

  .title {
    font-size: 18px;
    margin-bottom: 18px;
  }

  .section {
    margin-bottom: 18px;
  }

  .section-title {
    font-size: 10px;
    margin-bottom: 8px;
  }

  .section-content {
    font-size: 11px;
    line-height: 1.5;
  }

  .right-panel {
    min-height: 250px;
  }

  .building.row1 {
    height: 10%;
    width: 25%;
  }

  .building.row2 {
    height: 8%;
    width: 23%;
  }

  .building.row3 {
    height: 7%;
    width: 20%;
  }
}
@media (max-width: 1444px) {
  .acc {
    font-size: 35px;
  }
  .nav-item a span {
    font-size: 35px;
  }
  .nav-item a {
    font-size: 24px;
  }
  .text-overlay1 .span2 {
    font-size: 80px;
    line-height: 1;
  }
  .footer-nav {
    gap: 36px;
  }
  .footer-info {
    width: 94%;
  }
  .news-content h3 {
    font-size: 22px;
  }
  .bg:hover .about-hover p {
    opacity: 1;
    transform: translateY(-6px);
  }
  .careers-job-description {
    font-size: 13px;
  }
  .bg h3 {
    font-size: 35px;
  }
  .bg:hover h3 {
    bottom: 62%;
  }
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
  }
  .contact-card {
    position: fixed;
    right: -974px;
    top: 0;
    width: 100%;
  }
  .bg:hover .about-hover p {
    opacity: 1;
    transform: translateY(10px);
  }
  .text-overlay1 .span2 {
    font-size: 70px;
  }
  section {
    padding: 0 0px;
    margin: 0px 0;
  }
  .contact-btn {
    font-size: 12px;
  }
  .park-section {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  footer {
    grid-template-columns: 1fr;
  }
}
.news-content {
  padding-top: 32px;
}
/* Tablet Responsive */
@media (max-width: 1024px) {
  .slider {
    height: 500px;
  }

  .card {
    width: 100%;
  }

  .card-r {
    width: 100%;
  }
  .controls {
    bottom: 20px;
    left: 41%;
  }
  .card1 {
    width: 67%;
    left: 8%;
  }

  .card2 {
    width: 67%;
    right: 8%;
  }
  .pr .span1 {
    top: -50px;
  }
  .info-card {
    padding: 40px;
    max-width: 500px;
  }

  .card-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .card-description {
    font-size: 12px;
  }
  .content-section h3 {
    font-size: 26px;
  }
  .content-section p {
    font-size: 16px;
  }
}
@media (max-width: 986px) {
  header {
    padding: 0px 10px;
    height: 90px;
  }
  .header-us1 {
    background-position: 30% 45% !important;
  }
  .header-us2 {
    background-position: 15% 45% !important;
  }

  .nav-item a span {
    font-size: 27px;
  }
  .nav-item a {
    font-size: 18px;
  }
  .acc {
    font-size: 27px;
  }
  .logo-center {
    width: 90px;
  }
  .contact-btn {
    font-size: 12px;
  }
  .text-overlay1 .span2 {
    font-size: 44px;
  }
  .text-overlay {
    line-height: 1;
  }
  .p-home-left {
    margin-bottom: 30px;
  }
  .p-home-right {
    text-align: left;
  }
}
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-right {
    align-items: flex-start;
    text-align: left;
  }

  .footer-info {
    flex-direction: column;
    gap: 20px;
  }

  .footer {
    padding: 10px 30px 40px 30px;
  }
  .footer-nav {
    gap: 10px;
  }
  .footer-nav li a {
    font-size: 11px;
  }
  .second-section {
    padding: 70px 20px;
  }
  .span2 {
    font-size: 76px;
  }
  .pright {
    width: 100%;
    margin: auto;
    text-align: center;
    line-height: 1;
    font-size: 18px;
  }
  .pleft {
    width: 100%;
    text-align: center;
    margin: auto;
    line-height: 1;
    margin-bottom: 40px;
    font-size: 30px;
  }
}
/* Mobile Responsive */
@media (max-width: 768px) {
  .park-section {
    padding: 10px;
  }
  .p-sldre {
    padding: 0;
  }
  .slider {
    height: 600px;
    border-radius: 12px;
  }

  .slide {
    flex-direction: column;
    padding: 0px;
  }

  .card {
    width: 100%;
    height: 50%;

    margin-top: -35px;
    border-radius: 0;
  }

  .card-r {
    width: 100%;
    height: 50%;

    margin-top: 0px;
    border-radius: 0;
  }

  .card1 {
    width: 100%;
    height: auto;
    left: 0;
    order: 1;
    position: static;

    border-radius: 0;
  }
  .header-us {
    background-position: 80% 50% !important;
  }
  .card2 {
    width: 100%;
    height: auto;
    right: 0;

    position: static;
    border-radius: 0;
  }

  .info-card {
    position: static !important;
    transform: none !important;
    padding: 30px;
    max-width: 100%;
    height: auto;
    min-height: 200px;
  }

  .card-title {
    font-size: 22px;
    margin-bottom: 20px;
    letter-spacing: 2px;
  }

  .card-description {
    font-size: 12px;
  }

  .controls {
    bottom: 15px;
    gap: 10px;
  }

  .btn {
    padding: 8px 18px;
    font-size: 13px;
  }
  .content-section {
    height: 330px;
  }
  .content-section div {
    padding: 30px;
  }

  .content-section h3 {
    font-size: 26px;
  }
  .content-section p {
    font-size: 16px;
  }
  .vision-section {
    padding: 15px 0px;
  }
  .vision-section p {
    font-size: 18px;

    width: 100%;
  }
  .divsub-vis span {
    font-size: 40px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .slider {
    height: 550px;
  }

  .info-card {
    padding: 25px;
    min-height: 180px;
    border-radius: 0;
  }

  .card-title {
    font-size: 20px;
    margin-bottom: 15px;
    letter-spacing: 1.5px;
  }

  .card-description {
    font-size: 11px;
    line-height: 1.6;
  }
  .content-section {
    background-color: #78423d;
    height: 350px;
  }
  .content-section div {
    padding: 30px;
  }
  .text-overlay1 .span2 {
    font-size: 38px;
  }
  .content-section h3 {
    font-size: 18px;

    margin-bottom: 30px;
  }
  .content-section p {
    font-size: 15px;
  }
  .card {
    height: 45%;
  }

  .card-r {
    height: 45%;
  }

  .controls {
    bottom: 38px;
    gap: 0px;
    left: 41%;
  }

  .btn {
    padding: 7px 15px;
    font-size: 12px;
  }
}

/* Extra Small Devices */
@media (max-width: 360px) {
  .slider {
    height: 500px;
  }

  .info-card {
    padding: 20px;
    min-height: 160px;
  }

  .card-title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .card-description {
    font-size: 10px;
  }
}
