/* Reset and Base Styles */
@font-face {
  font-family: 'Bentley-Expanded';
  src: url('fonts/Bentley-Expanded-Regular.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Bold (700) */
@font-face {
  font-family: 'Bentley-Expanded';
  src: url('fonts/Bentley-Expanded-Bold.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* Italic (400) — if you have it */
@font-face {
  font-family: 'Bentley-Expanded';
  src: url('fonts/Bentley-Expanded-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Bentley';
  src: url('fonts/Bentley-Light.woff') format('woff');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Bentley';
  src: url('fonts/Bentley-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Bentley';
  src: url('fonts/Bentley-Logotype.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary-color: #183319;
  --secondary-color: #f4f3ec;
  --accent-color: #f4f3ec;
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-light: #f4f3ec;
  --background-dark: #183319;
  --transition: all 0.4s ease;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
body {
  font-family: 'Bentley', sans-serif, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue',
    sans-serif;
  line-height: 1.3;
  color: #333;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  max-width: 1920px;
  margin: 0 auto;
  background: var(--background-light);
  border: 1px solid lightgray;
}
.container {
  max-width: 1920px;
  margin: 0 auto;
  background: #ffffff;
}
p {
  font-size: 22px;
  font-weight: 300;
}
/* Countdown */
h2.countdown-h2 {
  margin: 0 4rem 0 0;
  font-size: 20px !important;
}
.hdd-countdown-banner-container {
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  background-color: #183319;
  margin-top: 70px;
}
.countdown-container {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.countdown-item {
  position: relative;
  width: 40px;
  height: 75px;
}
.time-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.time-label span {
  font-size: 24px;
  font-weight: bold;
}
/* end countdown */

/* Controls index, about-us, careers */
.hdd-hero-lead-button-container a {
  font-size: 1.2rem;
}

/* Buttons */
.nav-links a,
.mobile-nav a {
  color: inherit !important;
  text-decoration: none !important;
  transition: color 0.3s ease;
}
a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 300;
  cursor: pointer;
}
.model-button a {
  border: 1px solid #ffffff;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  display: inline-block;
  margin-top: 30px;
  transition: var(--transition);
}

.model-button a:hover {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
/* classes */
.primary {
  color: var(--primary-color);
}
/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: var(--transition);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
  margin: 0 auto;
  padding: 1rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1920px;
}

.logo {
  font-weight: logotype;
  font-size: 1.2rem;
  color: #000000;
}
.logo a {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: #000000;
  pointer-events: auto;
}

.logo img {
  height: 40px;
  width: auto;
}

/* Desktop Navigation */
.nav-desktop {
  display: flex;
  align-items: center;
}

.nav-desktop ul {
  display: flex;
  list-style: none;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.nav-desktop a {
  text-decoration: none;
  color: #000000;
  font-weight: regular;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-desktop a:hover {
  color: var(--primary-color);
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -170px;
  background: rgba(255, 255, 255, 1);
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  padding: 1rem 0;
  min-width: 500px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  padding: 0.5rem 1.5rem;
  display: block;
  color: var(--primary-color);
  transition: var(--transition);
}

.dropdown-menu a:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
}

.contact-info {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-weight: regular;
  color: var(--primary-color);
  margin-left: 20px;
  flex-direction: column;
}

.contact-info i {
  color: var(--primary-color);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  transition: var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
.nav-mobile {
  display: none;
  background: white;
  padding: 1rem 2rem;
  border-top: 1px solid #eee;
  transform: translateY(-170%);
  transition: var(--transition);
  z-index: 1001;
  pointer-events: auto;
}

.nav-mobile.active {
  transform: translateY(0);
}

.nav-mobile ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-mobile li {
  margin: 1rem 0;
}

.nav-mobile a {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: regular;
  font-size: 1.1rem;
  transition: var(--transition);
  display: block;
  padding: 0.5rem 0;
}

.nav-mobile a:hover {
  color: var(--primary-color);
}

p.para span {
  font-weight: 600;
}

/* Hero Section */
.hdd-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  /* add back once countdown is removed */
  /* margin-top: 70px; */
}

.hdd-hero-gradient {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.5) 40%,
    rgba(0, 0, 0, 0) 100%
  );
}

.hdd-hero-video {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  z-index: 0;
}

.hdd-hero-lead-container {
  position: absolute;
  bottom: 80px;
  left: 80px;
  width: 50%;
  text-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.hdd-hero-lead-container p {
  color: #ffffff;
  width: 60%;
}
.hdd-btn-row-container {
  display: flex;
  gap: 20px;
  position: absolute;
  bottom: 80px;
  text-align: right;
  right: 80px;
  flex-direction: column;
  z-index: 1;
}

.hdd-btn-row-container .hdd-hero-lead-button-container:nth-child(2) a,
.hdd-btn-row-container .hdd-hero-lead-button-container:nth-child(2) a i {
  background: #4d4d4f;
}

.hdd-hero-lead-button-container a {
  background: var(--primary-color);
  padding: 10px 20px;
  border-radius: 5px;
  display: inline-block;
  transition: var(--transition);
}
.hdd-hero-lead-button-container a i {
  color: #ffffff;
  margin-right: 10px;
}
.hdd-hero-lead-button-container a:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
  color: var(--secondary-color);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.hdd-hero h1.hdd-h1 {
  color: #ffffff;
  font-size: 5rem;
}

.hdd-hero h1.hdd-h1 span {
  display: block;
  font-size: 2rem;
}
.model-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  padding: 25px;
}
.model-card {
  position: relative;
}
.model-para {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px;
  color: #ffffff;
}

.model-para small i {
  color: #ffffff;
  font-size: 8px;
}
.model-card small {
  display: flex;
  align-items: center;
  margin: 0 0 12px 0;
}
.about {
  position: relative;
  margin: 0 0 25px 0;
}
.about-overlay {
  position: absolute;
  top: 40%;
  left: 25px;
  transform: translate(0%, -50%);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  width: 50%;
  padding: 15px 25px;
  color: #ffffff;
}

/* Footer */
.footer {
  background: var(--background-light);
  padding: 3rem 0;
  border-top: 1px solid #eee;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-section h3,
.footer-section h4 {
  color: var(--primary-color);
  margin-bottom: 8px;
}

.footer-logo {
  height: 100px;
  width: auto;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin: 0.5rem 0;
}

.footer-section ul li a {
  text-decoration: none;
  color: #555;
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: #183319;
}

.footer-section p {
  color: #555;
  margin: 0.5rem 0;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}
.privacy-policy {
  text-align: center;
  font-weight: regular;
  color: #000000;
  display: inline-block;
  width: 100%;
  margin: 25px 0 25px 0px;
  color: #000000;
}
.privacy-policy:hover {
  color: var(--primary-color);
  text-decoration: underline;
}
/* Privacy Policy */

.privacy-container,
.press-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 2rem 4rem;
  font-family: 'Bentley', sans-serif;
  color: var(--text-dark);
}

.privacy-header,
.press-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--secondary-color);
}

.privacy-header h1,
.press-header h1 {
  font-size: 3rem;
  font-weight: logotype;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.privacy-header .last-updated {
  font-size: 1.1rem;
  color: #777;
  font-style: italic;
}

.privacy-content,
.press-content {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.privacy-content h2,
.press-content h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #eee;
}

.privacy-content h3,
.press-content h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin: 1.5rem 0 1rem;
}

.privacy-content h4,
.press-content h4 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin: 1rem 0 0.5rem;
  font-weight: regular;
}

.privacy-content p,
.press-content p {
  margin-bottom: 1rem;
  text-align: justify;
}

.privacy-content ul,
.press-content ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

.privacy-content li,
.press-content li {
  margin-bottom: 0.5rem;
}

.privacy-content .section,
.press-content .section {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #f9f9f9;
  border-radius: 8px;
  border-left: 4px solid var(--secondary-color);
}

.privacy-content .highlight,
.press-content .highlight {
  background: #f0f8ff;
  padding: 1rem;
  border-radius: 6px;
  border: 1px solid #d1ecf1;
  margin: 1rem 0;
}

.privacy-content .contact-info,
.press-content .contact-info {
  background: var(--primary-color);
  color: white;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  margin: 2rem 0;
}

.privacy-content .contact-info h3,
.press-content .contact-info h3 {
  color: white;
  margin-bottom: 1rem;
}

.privacy-content .contact-info p,
.press-content .contact-info p {
  margin-bottom: 0.5rem;
}

.privacy-content .contact-info a,
.press-content .contact-info a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: regular;
}

.privacy-content .contact-info a:hover,
.press-content .contact-info a:hover {
  text-decoration: underline;
}

.back-to-home {
  text-align: center;
  margin-top: 3rem;
}

.back-to-home a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-color);
  color: white;
  padding: 1rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.back-to-home a:hover {
  background: #1e3d22;
  transform: translateY(-2px);
}
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 2rem;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  position: relative;
}

.close-btn {
  color: #aaa;
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  font-weight: light;
  cursor: pointer;
}

.close-btn:hover {
  color: #000;
}
/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* About Us Page Specific Styles */

.about-legacy-text:last-of-type {
  margin-bottom: 40px;
}

.about-legacy-button-container {
  margin-top: 40px;
}

.about-legacy-image {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* About Us Page Specific Styles */
/* Hero Section */
.about-hero {
  height: auto;
  position: relative;
  text-align: left;
  background: url('images/about/2025091027-hero-background.jpg') center center;
  padding: 25px 0;
  background-size: cover;
  background-repeat: no-repeat;
}
.about-hero-lead-container,
.careers-hero-lead-container {
  position: absolute;
  top: 5%;
  left: 5%;
}

.about-hero-title {
  width: 17ch;
}
.about-hero-title,
.careers-hero-title {
  font-size: 6rem;
  margin: 0 0;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  color: #ffffff;
  line-height: 1.2;
}
.about-hero-subtitle,
.careers-hero-subtitle {
  color: #f4f3ec;
  margin: 0;
  font-weight: 400;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  width: 50%;
}

#careers-container .hdd-hero-lead-button-container {
  position: absolute;
  bottom: 37%;
  left: 5%;
  right: 0;
  margin: 0;
  text-align: left;
}

#about-us-container .hdd-hero-lead-button-container {
  position: absolute;
  bottom: 20%;
  left: 5%;
  right: 0;
  margin: 0;
  text-align: left;
}

/* Legacy Section */
.about-legacy-section {
  background: #f4f3ec;
  padding: 60px 0;
  position: relative;
}

.about-legacy-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.about-legacy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

.about-legacy-title {
  font-size: 4rem;
  color: #183319;
  margin-bottom: 15px;
  font-weight: bold;
  letter-spacing: 1px;
}

.about-legacy-text {
  color: #333;
  margin-bottom: 30px;
}

/* History Section */
.about-history-section {
  background: #ffffff;
  padding: 60px 0 10px;
  position: relative;
}

.about-history-container {
  margin: 0 auto;
  padding: 0;
}

.about-history-sticky-title {
  position: sticky;
  top: 70px;
  background: #ffffff;
  z-index: 100;
  padding: 40px 0;
  margin-bottom: 0;
  width: 100%;
  left: 0;
  right: 0;
}

.about-history-title-container {
  text-align: center;
}

.about-history-title {
  font-size: 4rem;
  color: #183319;
  margin-bottom: 0px;
  font-weight: bold;
  letter-spacing: 1px;
}

.about-history-subtitle {
  color: #333;
  max-width: 800px;
  margin: 0 auto;
}

.about-history-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  padding: 0 40px;
}
.about-history-right-column {
  padding-right: 20px;
  padding-bottom: 15vh;
}

.about-history-left-column {
  position: sticky;
  top: 320px;
  padding-right: 20px;
  padding-bottom: 15vh;
}

.about-history-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.about-history-intro-text {
  color: #333;

  margin-bottom: 30px;
}

.about-history-button-container {
  text-align: center;
}

.about-history-button {
  display: inline-block;
  background: #183319;
  color: white;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid #183319;
}

.about-history-button:hover {
  background: transparent;
  color: #183319;
}

.about-history-story-title {
  font-size: 2.5rem;
  color: #183319;
  margin-bottom: 30px;
  font-weight: bold;
  letter-spacing: 1px;
}

.about-history-story-text {
  color: #333;

  margin-bottom: 25px;
}

/* Gallery Section */
.about-gallery-section {
  background: #f4f3ec;
  padding: 60px 0;
  position: relative;
}

.about-gallery-container {
  margin: 0 auto;
  padding: 0 40px;
}

.about-gallery-header {
  text-align: center;
  margin-bottom: 50px;
}

.about-gallery-title {
  font-size: 4rem;
  color: #183319;
  margin-bottom: 0px;
  font-weight: bold;
  letter-spacing: 1px;
}

.about-gallery-subtitle {
  color: #333;
  max-width: 800px;
  margin: 0 auto;
}

.about-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 25px;
}

.about-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-gallery-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  filter: brightness(0.7);
  transition: all 0.6s ease;
}

.about-gallery-image:hover {
  filter: brightness(1);
  transform: scale(1.05);
}

.about-gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 40px;
  color: white;
}

.about-gallery-item-title,
.about-gallery-item-title-secondary {
  font-size: 1.8rem;
  margin-bottom: 0px;
  font-weight: bold;
}

.about-gallery-item-description,
.about-gallery-item-description-secondary {
  opacity: 0.9;
}

/* Additional Gallery Grid (Secondary) */
.about-gallery-grid-secondary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.about-gallery-item-secondary {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-gallery-image-secondary {
  width: 100%;
  height: 300px;
  object-fit: cover;
  filter: brightness(0.7);
  transition: all 0.6s ease;
}

.about-gallery-image-secondary:hover {
  filter: brightness(1);
  transform: scale(1.05);
}

.about-gallery-overlay-secondary {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 30px;
  color: white;
}

/* Video Section */
.about-video-section {
  background: #ffffff;
  padding: 60px 0;
  position: relative;
}

.about-video-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.about-video-content {
  text-align: center;
}

.about-video-iframe {
  max-width: 1000px;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.about-services-section {
  background: url('images/about/2025091027-premium-service.jpg') center center;
  background-size: cover;
  background-attachment: fixed;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.about-services-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.85) 0%,
    rgba(45, 45, 45, 0.75) 50%,
    rgba(26, 26, 26, 0.85) 100%
  );
  pointer-events: none;
}

.about-services-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.about-services-header {
  text-align: center;
  margin-bottom: 50px;
}

.about-services-title {
  font-size: 4rem;
  color: #f4f3ec;
  margin-bottom: 0px;
  font-weight: bold;
  letter-spacing: 1px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-services-subtitle {
  color: #f4f3ec;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

.about-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.about-service-card {
  padding: 50px 40px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(244, 243, 236, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), 0 8px 32px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.about-service-icon {
  font-size: 3.5rem;
  color: #ffffff;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #ffffff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-service-title {
  font-size: 1.6rem;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.about-service-description {
  color: #ffffff;
  font-weight: 100;
}

/* CAREERS PAGE */
.careers-container,
#about-us-container {
  /* add back once countdown is removed */
  /* margin-top: 70px; */
}
.careers-hero {
  height: auto;
  position: relative;
  text-align: left;
  background: url('images/careers/hero-background.jpg') center center;
  padding: 25px 0;
  background-size: cover;
  background-repeat: no-repeat;
}
.careers-hero-image-container,
.about-hero-image-container {
  margin: 0 auto;
  padding: 0 25px;
}
.careers-hero .para {
  color: #ffffff;
  padding: 0 50px;
  margin: 25px auto;
}
.three-card-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding: 0 50px;
  margin: 50px auto;
}
.three-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), 0 8px 32px rgba(0, 0, 0, 0.15);
}

.three-card h3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 1);
  text-align: center;
}
.quote-container {
  background-color: #000000;
  text-align: center;
  padding: 50px 100px;
  margin: 50px auto;
}
.quote-container p {
  color: #b3b3b3;
  font-size: 2.75rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
}
.two-card-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  padding: 25px 50px;
  margin: 50px auto 25px;
  background-color: var(--background-light);
  height: auto;
}

.two-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), 0 8px 32px rgba(0, 0, 0, 0.15);
}

.two-card h3 {
  position: absolute;
  bottom: 5%;
  left: 5%;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 400;
}

.three-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  filter: brightness(0.7);
  transition: all 0.4s ease;
}
.two-card img {
  transition: all 0.4s ease;
}
.two-card img:hover,
.three-card img:hover {
  transform: scale(1.02);
  filter: brightness(1);
}
#careers-container .para {
  width: 90%;
  margin: 3rem auto 4rem;
  text-align: center;
  font-weight: 400;
}

/* ACCORDIAN */
.hdd-accordion-lead {
  background-color: #000000;
  text-align: left;
  padding: 2rem;
  color: #ffffff;
  border-top-right-radius: 12px;
  border-top-left-radius: 12px;
  border-left-color: #ffffff;
  border-right-color: #ffffff;
  border-top-color: #ffffff;
  border-left-style: solid;
  border-right-style: solid;
  border-top-style: solid;
  border-top-width: 5px;
  border-left-width: 5px;
  border-right-width: 5px;
  border-bottom-width: 0px;
}
.hdd-accordion-lead h2 {
  font-family: 'Bentley';
  font-size: 2.5rem;
}
.hdd-accordion-lead p {
  color: #b3b3b3;
}

.hdd-accordion {
  width: 80%;
  margin: 2rem auto;
  padding: 1rem;
}

.hdd-accodion-body {
  padding: 2rem;
  background-color: #f0f0f0;
}

.hdd-accordion-item {
  border: 1px solid #000000;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 12px;
}

.hdd-accordion-header {
  width: 100%;
  padding: 1rem;
  background: #ffffff;
  color: #333333;
  border: none;
  text-align: left;
  font-size: 1.3rem;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  font-family: 'Bentley';
}

.hdd-accordion-header:hover {
  background: var(--accent-color);
}

.hdd-accordion-icon {
  transition: transform 0.3s ease;
}

.hdd-accordion-icon img {
  width: 18px;
}

.hdd-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 1rem;
  background-color: #ffffff;
}

.hdd-accordion-content p {
  margin: 1rem 0;
}

.hdd-accordion-item.open .hdd-accordion-content {
  max-height: 300px;
}

.hdd-accordion-item.open .hdd-accordion-icon {
  transform: rotate(180deg);
}

.color-container {
  background: url('images/careers/faq-background.jpg') center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 25px 0;
}

@media (min-width: 1920px) {
  .container {
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2);
  }
}
@media (max-width: 1150px) {
  .hdd-hero-lead-container {
    width: 80%;
    bottom: 40%;
  }
  .hdd-hero-lead-container p {
    width: 60%;
  }
}
@media (max-width: 1000px) {
  .header-container {
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 900px) {
  .logo a {
    flex-direction: column;
  }
  .logo img {
    height: 30px;
  }
  .logo span {
    font-size: 1rem;
  }
  .hdd-hero-lead-container {
    text-align: center;
    left: 50%;
    bottom: 50%;
    transform: translate(-50%, 50%);
  }

  .hdd-btn-row-container {
    position: absolute;
    left: 50%;
    bottom: 25px;
    transform: translateX(-50%);
    gap: 10px;
    width: 100%;
    text-align: center;
    flex-direction: row;
    justify-content: center;
  }

  .hdd-hero-lead-container p {
    width: 100%;
    margin: 0 auto;
  }
  .model-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-overlay {
    width: 90%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .footer-container .footer-section:last-child {
    grid-column: 2 / span 3;
  }
}
/* Countdown */
@media screen and (max-width: 814px) {
  h2.countdown-h2 {
    margin: 0;
    font-size: 20px !important;
  }
  .hdd-countdown-banner-container {
    flex-direction: column;
    padding: 1.5rem 0;
  }
}
/* end countdown */
/* Responsive Design */
@media (max-width: 768px) {
  .logo a {
    flex-direction: row;
  }
  .header-container {
    padding: 1rem;
    background: #ffffff;
  }
  .header {
    backdrop-filter: blur(0px);
    background: rgba(255, 255, 255, 0);
    box-shadow: none;
    height: 80px;
    pointer-events: none;
  }
  .header-container {
    flex-direction: row;
    gap: 0;
  }
  .hamburger {
    pointer-events: auto;
  }
  .hdd-hero-lead-button-container a {
    font-size: 1rem;
  }
  .hdd-hero-lead-button-container {
    bottom: 25px;
  }
  .hdd-hero-lead-container {
    bottom: 65%;
  }
  .about {
    margin-top: 25px;
  }
  .about-overlay {
    position: relative;
    padding: 15px;
    backdrop-filter: blur(0px);
    background: rgba(255, 255, 255, 0);
    width: 95%;
    color: #000000;
    margin-bottom: 40px;
    bottom: 0;
    left: 0;
    top: initial;
    transform: translate(0%, 0%);
  }

  .social-icons {
    margin-top: 15px;
    text-align: center;
    margin: 24px 0 0 23px;
  }
  .model-card {
    width: 100%;
    height: 450px;
    overflow: hidden;
  }

  .nav-desktop {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
    z-index: 1001;
  }

  .nav-mobile {
    display: block !important;
    border-top: none;
  }

  .nav-mobile.active {
    transform: translateY(-3px);
  }

  .hdd-hero {
    margin-bottom: 25px;
  }

  .hdd-hero h1.hdd-h1 {
    font-size: 2.5rem;
  }

  .model-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }

  .about-content h2 {
    font-size: 2rem;
  }

  .footer-section {
    text-align: center;
    margin: 0 auto;
  }
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-info span {
    display: none;
  }
  .footer-container .footer-section:last-child {
    grid-column: auto;
  }

  /* Privacy Policy Mobile Styles */
  .privacy-container,
  .press-container {
    padding: 100px 1rem 2rem;
  }

  .privacy-content,
  .press-content {
    padding: 2rem 1.5rem;
  }

  .privacy-header h1,
  .press-header h1 {
    font-size: 2rem;
  }

  .privacy-content h2,
  .press-content h2 {
    font-size: 1.5rem;
  }

  .privacy-content h3,
  .press-content h3 {
    font-size: 1.3rem;
  }
}

/* Responsive Design for About Us Page */
@media (max-width: 1200px) {
  .about-hero-container,
  .about-legacy-container,
  .about-services-container,
  .about-gallery-container,
  .about-video-container {
    padding: 0 30px;
  }
  .about-hero-title,
  .about-legacy-title,
  .about-services-title,
  .about-gallery-title,
  .about-history-title {
    font-size: 3.5rem;
  }

  .about-gallery-grid {
    gap: 30px;
  }

  .about-gallery-grid-secondary {
    gap: 25px;
  }
  /* Careers Page */
  #careers-container .hdd-hero-lead-button-container {
    bottom: 45%;
  }

  .careers-hero-lead-container h1 {
    font-size: 4rem;
  }

  .careers-hero-lead-button-container a {
    font-size: 1.2rem;
  }
  .hdd-accordion {
    width: 95%;
  }
  .quote-container p {
    font-size: 2rem;
  }

  .hdd-accordion-header {
    font-size: 1.5rem;
  }
}

@media (max-width: 900px) {
  #careers-container .hdd-hero-lead-button-container {
    bottom: 60%;
  }

  #about-us-container .hdd-hero-lead-button-container {
    bottom: 15%;
  }
}

@media (max-width: 800px) {
  p {
    font-size: 18px;
  }
  .about-hero-container,
  .about-legacy-container,
  .about-services-container,
  .about-gallery-container,
  .about-video-container {
    padding: 0 20px;
  }

  .about-hero-title,
  .about-legacy-title,
  .about-services-title,
  .about-gallery-title,
  .about-history-title {
    font-size: 2.2rem;
  }

  .careers-hero-lead-container h1 {
    font-size: 3.5rem;
  }
  .quote-container {
    padding: 25px 50px;
    margin: 25px auto;
  }
  .quote-container p {
    font-size: 1.5rem;
  }

  .hdd-accordion-header {
    font-size: 1.2rem;
  }
  .careers-hero-lead-button-container a {
    font-size: 1rem;
  }
  .about-hero {
    padding: 15px 0;
  }
  .careers-hero-image-container,
  .about-hero-image-container {
    padding: 0px;
  }
  .about-hero-title {
    width: 100%;
  }

  .about-hero-subtitle {
    width: 80%;
  }

  .about-hero-lead-container {
    position: relative;
    margin: 12px 0 12px 25px;
    top: 0;
    left: 0;
  }
  #about-us-container .hdd-hero-lead-button-container {
    bottom: -60px;
    z-index: 1;
  }
  .about-legacy-container {
    margin: 25px auto;
  }

  .about-legacy-grid {
    grid-template-columns: 1fr;
    gap: 0px;
  }

  .about-gallery-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .about-gallery-grid-secondary {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .about-history-section {
    padding: 0;
  }
  .about-history-content-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-history-sticky-title {
    position: relative;
    top: auto;
    padding: 30px 0;
  }

  .about-history-left-column {
    position: relative;
    top: auto;
    padding-right: 0;
    padding-bottom: 0;
  }

  .about-history-right-column {
    padding-right: 0;
    padding-bottom: 0;
  }

  .about-services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .about-video-iframe {
    height: 400px;
    width: 90%;
  }
  .three-card-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .three-card-container img {
    width: 100%;
  }
  .two-card-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .two-card-container img {
    width: 100%;
  }
  .two-card img {
    height: 300px;
  }
  .hdd-accordion-lead h2 {
    font-size: 1.7rem;
  }
  .hdd-quote-container {
    padding: 25px 50px;
    margin: 25px auto;
  }

  #careers-container .para {
    /* margin: 0rem auto; */
    width: 100%;
    text-align: left;
  }
}
@media (max-width: 650px) {
  .careers-hero-lead-container {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
  }
  .careers-hero-lead-container p {
    width: 100%;
  }
  .careers-hero-lead-container {
    padding: 25px 25px 0;
  }

  .careers-hero .para,
  p.para {
    padding: 0 25px;
  }
  .careers-hero .para {
    margin: 0;
  }
  #hdd-about-us-container .hdd-hero-lead-button-container,
  #careers-container .hdd-hero-lead-button-container {
    margin: 25px 0 0 25px;
    position: relative;
    left: 0;
  }

  .three-card h3 {
    font-size: 2.7rem;
  }
  .quote-container {
    padding: 25px;
    margin: 25px auto;
  }
  .quote-container p {
    font-size: 1.75rem;
  }
  .two-card-container,
  .three-card-container {
    margin: 25px auto;
    padding: 1rem;
  }
  .hdd-accordion {
    padding: 0;
  }
  .hdd-accordion-lead {
    padding: 1.2rem;
  }
  .hdd-accordion-header,
  .hdd-accordion-lead p {
    font-size: 1rem;
  }
  .hdd-accodion-body {
    padding: 1rem;
  }
  .color-container {
    padding: 2px;
  }
}

/* ENHANCEMENTS */
.hdd-show-scroll {
  opacity: 0.3;
  transform: rotateX(45deg);
  transform-origin: top;
  transition: all 1000ms ease;
}

.hdd-show-scroll.show {
  transform: rotateX(0deg);
  opacity: 1;
}
