@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* Basic Resets & Font */
/* General text color for a dark theme */
/* LimeGreen for hover states */
/* Dark background for the main body */
/* Using general text-color for hero text */
/* Darker overlay for text readability on images */
/* LimeGreen for button background */
/* Darker LimeGreen for button hover */
/* Explicitly white for button text for contrast */
/* Speed of the fade transition for images */
/* Interval between image changes (7 seconds) */
/* Transition speed for buttons */
/* Consistent rounded corners */
/* General transition speed for other elements */
:root {
  --carousel-interval: 7000ms; /* Expose SCSS variable as a CSS custom property */
  --transition-fade-speed: 2s;
  --primary-color: #e0e0e0;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif; /* Using Inter font as default */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #1e1e1e;
  color: #ffffff;
}
body a {
  text-decoration: none;
  color: inherit;
}
body a:hover {
  color: #d1b047;
}

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

.section-separator {
  border: none;
  border-top: 1px solid #2d2d2d;
  margin: 60px 0;
  opacity: 0.3;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #888888;
  opacity: 1;
  font-style: italic;
}

input::placeholder,
textarea::placeholder {
  color: #888888;
  opacity: 1;
  font-style: italic;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #888888;
  font-style: italic;
}
input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #888888;
  opacity: 1;
  font-style: italic;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #888888;
  opacity: 1;
  font-style: italic;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #888888;
  font-style: italic;
}
input::ms-input-placeholder,
textarea::ms-input-placeholder {
  color: #888888;
  font-style: italic;
}

/* Navbar Styling */
.navbar {
  background-color: rgb(5.25, 5.25, 5.25);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1000;
  width: 100%;
  box-sizing: border-box;
  /* Navbar Brand/Logo */
  /* Menu Toggle (Hamburger) */
  /* Navigation Menu */
  /* Responsive Design - Media Queries */
}
.navbar-brand {
  width: 100px;
}
.navbar-brand img {
  width: 100%;
}
.navbar .menu-toggle {
  display: none;
  font-size: 2rem;
  color: #ffffff;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}
.navbar .menu-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.navbar .nav-menu {
  display: flex;
  align-items: center;
}
.navbar .nav-menu .nav-item {
  position: relative;
  margin-left: 1.5rem;
  /* Submenu specific styles */
  /* Show submenu on hover for desktop */
}
.navbar .nav-menu .nav-item .nav-link {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  color: #ffffff;
  font-weight: 500;
  transition: color 0.3s ease, background-color 0.3s ease;
  border-radius: 8px;
}
.navbar .nav-menu .nav-item .nav-link i {
  margin-right: 0.5rem;
}
.navbar .nav-menu .nav-item .nav-link:hover {
  color: #d1b047;
  background-color: rgba(255, 255, 255, 0.08);
}
.navbar .nav-menu .nav-item.has-submenu > .nav-link i.fa-chevron-down {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}
.navbar .nav-menu .nav-item.has-submenu.active > .nav-link i.fa-chevron-down {
  transform: rotate(180deg);
}
.navbar .nav-menu .nav-item .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #2d2d2d;
  min-width: 250px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  padding: 0.5rem 0;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}
.navbar .nav-menu .nav-item .submenu .nav-link {
  padding: 0.75rem 1.5rem;
  color: #ffffff;
  font-size: 0.95rem;
}
.navbar .nav-menu .nav-item .submenu .nav-link:hover {
  background-color: #d1b047;
  color: #e0e0e0;
}
.navbar .nav-menu .nav-item.has-submenu:hover > .submenu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    padding: 1rem;
  }
  .navbar .menu-toggle {
    display: block;
  }
  .navbar .nav-menu {
    flex-direction: column;
    width: 100%;
    background-color: #2d2d2d;
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 1rem 0;
    max-height: 0;
    overflow: hidden;
  }
  .navbar .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    max-height: 500px;
  }
  .navbar .nav-menu .nav-item {
    margin: 0;
    width: 100%;
    text-align: left;
    /* For mobile, show submenu on click */
  }
  .navbar .nav-menu .nav-item .nav-link {
    padding: 1rem 2rem;
    justify-content: flex-start;
  }
  .navbar .nav-menu .nav-item.has-submenu > .nav-link {
    justify-content: space-between;
  }
  .navbar .nav-menu .nav-item .submenu {
    position: static;
    display: none;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    box-shadow: none;
    border-radius: 8px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }
  .navbar .nav-menu .nav-item .submenu .nav-link {
    padding-left: 3rem;
  }
  .navbar .nav-menu .nav-item.has-submenu.active > .submenu {
    display: block;
    max-height: 300px;
  }
}

.main-footer {
  background-color: #363636; /* Dark background for the footer */
  padding-top: 3rem; /* Padding at the top of the main footer content */
  font-family: "Poppins", sans-serif; /* Changed from 'Inter', sans-serif */
  box-sizing: border-box; /* Ensure padding is included in element's total width and height */
}
.main-footer__container {
  display: grid;
  grid-template-areas: "company-info nav links"; /* Desktop layout */
  grid-template-columns: 1.5fr 1fr 1fr; /* Adjust column widths as needed */
  gap: 2rem; /* Gap between grid items */
  max-width: 1200px;
  margin: 0 auto; /* Center the container */
  padding: 0 1.5rem 3rem; /* Horizontal padding and bottom padding before banner */
}
@media (max-width: 992px) {
  .main-footer__container {
    grid-template-areas: "company-info" "nav" "links"; /* Stack items on tablets */
    grid-template-columns: 1fr; /* Single column */
    gap: 2.5rem; /* Increase gap when stacked */
    text-align: center; /* Center content when stacked */
  }
}
@media (max-width: 576px) {
  .main-footer__container {
    padding: 0 1rem 2.5rem; /* Smaller padding on small mobiles */
  }
}
.main-footer__company-info {
  grid-area: company-info;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Align left for company info */
  color: #b3b3b3;
}
@media (max-width: 992px) {
  .main-footer__company-info {
    align-items: center; /* Center on tablet */
  }
}
.main-footer__icon-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: #e0e0e0; /* Primary color for icon and company name */
}
.main-footer__icon-wrapper img {
  height: 30px;
  margin-right: 10px;
}
.main-footer__icon-wrapper span {
  font-size: 1.5rem;
  font-weight: 700;
}
.main-footer__tagline {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 300px; /* Constrain width for readability */
}
@media (max-width: 992px) {
  .main-footer__tagline {
    max-width: 80%; /* Adjust for tablet centering */
  }
}
.main-footer__navigation h3, .main-footer__links h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
}
@media (max-width: 992px) {
  .main-footer__navigation h3, .main-footer__links h3 {
    margin-top: 1.5rem; /* Add space when stacked */
  }
}
.main-footer__navigation ul, .main-footer__links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.main-footer__link {
  display: inline-block; /* Allows padding and hover state */
  font-family: "Poppins", sans-serif; /* Changed from 'Roboto', sans-serif */
  text-decoration: none;
  padding: 0.4rem 0;
  transition: color 0.3s ease;
  font-size: 0.95rem;
  color: #b3b3b3;
}
@media (max-width: 992px) {
  .main-footer__link {
    display: block; /* Stack links vertically on tablet/mobile */
  }
}
.main-footer__banner {
  background-color: rgb(5.25, 5.25, 5.25); /* Slightly darker background for the banner */
  color: #b0b0b0;
  padding: 1.2rem 1.5rem;
  border-top: 1px solid rgba(176, 176, 176, 0.1); /* Subtle top border */
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* Allow wrapping on small screens */
  gap: 1rem; /* Gap between copyright and social links */
}
@media (max-width: 768px) {
  .main-footer__banner {
    flex-direction: column; /* Stack copyright and social links on smaller screens */
    text-align: center;
  }
}
.main-footer__copyright {
  font-size: 0.85rem;
  margin: 0;
}
.main-footer__social-links {
  display: flex;
  gap: 1rem;
}
.main-footer__social-links a {
  color: #b0b0b0;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}
.main-footer__social-links a:hover {
  color: #d1b047;
}

/* Hero Section Styling */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
  /* Image Carousel as Background */
  /* Hero Content Overlay */
  /* Responsive Design - Media Queries */
}
.hero-section .image-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: grayscale(1);
}
.hero-section .image-carousel .carousel-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  filter: brightness(0.8);
  transition: opacity 2s ease-in-out;
  z-index: 1;
}
.hero-section .image-carousel .carousel-image.active {
  opacity: 1;
  z-index: 2;
}
.hero-section .hero-content {
  position: relative;
  z-index: 3;
  padding: 2rem;
  max-width: 800px;
  box-sizing: border-box;
  /* Call-to-Action Buttons */
}
.hero-section .hero-content .hero-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}
.hero-section .hero-content .hero-subtitle {
  font-size: 1.5rem;
  font-family: "PT Serif", serif;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.hero-section .hero-content .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero-section .hero-content .cta-buttons .cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #d1b047;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.hero-section .hero-content .cta-buttons .cta-button:hover {
  background-color: rgb(203.6, 167.0847826087, 50.9);
  transform: translateY(-3px);
}
.hero-section .hero-content .cta-buttons .cta-button i {
  margin-right: 0.75rem;
}
@media (max-width: 1024px) {
  .hero-section .hero-title {
    font-size: 3rem;
  }
  .hero-section .hero-subtitle {
    font-size: 1.3rem;
  }
}
@media (max-width: 768px) {
  .hero-section .hero-title {
    font-size: 2.5rem;
  }
  .hero-section .hero-subtitle {
    font-size: 1.1rem;
  }
  .hero-section .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  .hero-section .cta-button {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }
  .hero-section .hero-content {
    padding: 1.5rem;
  }
}
@media (max-width: 480px) {
  .hero-section .hero-title {
    font-size: 2rem;
  }
  .hero-section .hero-subtitle {
    font-size: 1rem;
  }
  .hero-section .hero-content {
    padding: 1rem;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.projects-slider {
  position: relative;
  width: 100%;
  font-family: "Poppins", sans-serif;
  padding-bottom: 2rem;
}
.projects-slider__container {
  overflow-x: scroll;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
}
.projects-slider__container::-webkit-scrollbar {
  display: none;
}
.projects-slider__wrapper {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
.projects-slider__slide {
  flex-shrink: 0;
  width: 85vw;
}
@media (min-width: 576px) {
  .projects-slider__slide {
    width: 60vw;
  }
}
.projects-slider__navigation {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 10;
  display: flex;
  gap: 0.5rem;
}
.projects-slider__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #363636;
}
.projects-slider__progress-indicator {
  height: 100%;
  background-color: #d1b047;
  transition: transform 350ms ease, width 350ms ease;
}
.projects-slider__card {
  display: block;
  position: relative;
  overflow: hidden;
  height: 450px;
  text-decoration: none;
  color: #ffffff;
  background-color: #1e1e1e;
}
.projects-slider__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  z-index: 1;
  transition: background-color 250ms ease;
}
.projects-slider__card-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 350ms ease;
  filter: grayscale(100%) contrast(1.2);
}
.projects-slider__card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  z-index: 2;
}
.projects-slider__card-number {
  font-size: 1rem;
  font-weight: 500;
  color: #b3b3b3;
}
.projects-slider__card-title {
  font-size: 1.75rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  margin: 0.25rem 0;
  color: #ffffff;
  text-shadow: 2px 2px 4px #000000;
}
.projects-slider__card-category {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #d1b047;
  text-shadow: 1px 1px 2px #000000;
}
.projects-slider__card:hover .projects-slider__card-image, .projects-slider__card:focus-visible .projects-slider__card-image {
  transform: scale(1.05);
}
.projects-slider__card:hover .projects-slider__card-overlay::after, .projects-slider__card:focus-visible .projects-slider__card-overlay::after {
  background-color: rgba(0, 0, 0, 0.5);
}
.projects-slider__card:focus-visible {
  outline: 2px solid #d1b047;
  outline-offset: -2px;
}
.projects-slider__button {
  display: inline-block;
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  background: transparent;
  color: inherit;
  font: inherit;
  line-height: normal;
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  -webkit-appearance: none;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  color: #b3b3b3;
  background-color: rgba(18, 18, 18, 0.5);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1rem;
  transition: color 250ms ease, background-color 250ms ease;
}
.projects-slider__button::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.projects-slider__button:hover {
  color: #ffffff;
  background-color: rgba(18, 18, 18, 0.8);
}
.projects-slider__button:focus-visible {
  outline: 2px solid rgba(164, 255, 0, 0.3);
  outline-offset: 2px;
}
.projects-slider__button:disabled {
  color: #555555;
  background-color: rgba(54, 54, 54, 0.5);
  cursor: not-allowed;
}
@media (min-width: 768px) {
  .projects-slider {
    padding-bottom: 2rem;
  }
  .projects-slider__container {
    overflow: hidden;
  }
  .projects-slider__wrapper {
    gap: 0;
    transition: transform 350ms ease;
  }
  .projects-slider__slide {
    width: auto;
    flex-shrink: 0;
    flex: 0 0 25%;
  }
  .projects-slider__card {
    height: 60vh;
    min-height: 500px;
    max-height: 700px;
  }
  .projects-slider__navigation {
    bottom: 1.5rem;
    right: 1rem;
  }
  .projects-slider__progress {
    bottom: 0;
    left: 0;
  }
}

/* Projects Section Styles */
.projects-section {
  padding: 4rem 2rem;
  background-color: #1a1a1a;
  text-align: center;
  /* Responsive adjustments */
}
.projects-section .projects-header {
  margin-bottom: 3rem;
}
.projects-section .projects-header .secondary-header {
  font-size: 1.5rem;
  color: #d1b047;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-family: "PT Serif", serif;
}
.projects-section .projects-header .primary-header {
  font-size: 2.8rem;
  color: #e0e0e0;
  margin-top: 0;
  font-weight: 700;
  line-height: 1.2;
}
.projects-section .service-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1rem;
}
.projects-section .service-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  /* Liquid fill effect for hover */
  /* Specific hover colors for each card's liquid fill */
}
.projects-section .service-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: transparent;
  transition: height 0.3s ease-out, background-color 0.3s ease;
  z-index: 0;
}
.projects-section .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}
.projects-section .service-card:hover::before {
  height: 100%;
  background-color: #d1b047;
}
.projects-section .service-card:hover .service-card-cta {
  outline: white solid 2px;
  transform: translateY(-2px);
}
.projects-section .service-card .service-icon {
  font-size: 3.5rem;
  color: #d1b047;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}
.projects-section .service-card:hover .service-icon {
  color: #ffffff;
}
.projects-section .service-card .service-name {
  font-size: 1.7rem;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
}
.projects-section .service-card:hover .service-name {
  color: #ffffff;
}
.projects-section .service-card .service-description {
  font-size: 1rem;
  font-family: "PT Serif", serif;
  color: #b0b0b0;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.projects-section .service-card:hover .service-description {
  color: #ffffff;
}
.projects-section .service-card .service-card-cta {
  background-color: #d1b047;
  color: #ffffff;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 0.95rem;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}
.projects-section .service-card .service-card-cta:hover {
  background-color: rgb(203.6, 167.0847826087, 50.9);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .projects-section {
    padding: 3rem 1rem;
  }
  .projects-section .primary-header {
    font-size: 2.2rem;
  }
  .projects-section .secondary-header {
    font-size: 1.3rem;
  }
  .projects-section .service-cards-container {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .projects-section .primary-header {
    font-size: 1.8rem;
  }
  .projects-section .secondary-header {
    font-size: 1.1rem;
  }
  .projects-section .service-card {
    padding: 1.5rem;
  }
  .projects-section .service-card .service-icon {
    font-size: 3rem;
  }
  .projects-section .service-card .service-name {
    font-size: 1.5rem;
  }
}

.contact-section {
  padding: 5rem 1.5rem;
  background-color: #1a1a1a;
  text-align: center;
  box-sizing: border-box;
}
.contact-section__container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.contact-section__subheading {
  font-size: 1.3rem;
  color: #d1b047;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-family: "PT Serif", serif;
}
.contact-section__heading {
  font-size: 2.8rem;
  color: #e0e0e0;
  margin-bottom: 1rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .contact-section__heading {
    font-size: 2.2rem;
  }
}
@media (max-width: 480px) {
  .contact-section__heading {
    font-size: 1.8rem;
  }
}
.contact-section__description {
  font-size: 1rem;
  color: #b0b0b0;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 80ch;
  margin-left: auto;
  margin-right: auto;
}
.contact-section__cta-buttons {
  display: flex;
  gap: 1.5rem;
  width: 100%;
  justify-content: center;
}
@media (max-width: 600px) {
  .contact-section__cta-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
}
.contact-section__button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background-color: #d1b047;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.contact-section__button:hover {
  background-color: rgb(203.6, 167.0847826087, 50.9);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
.contact-section__button:hover i {
  transform: translateX(5px);
}
.contact-section__button i {
  transition: transform 0.3s ease;
}

.recent-present-work {
  padding: 4rem 0;
  background-color: #e0e0e0;
  color: #b0b0b0;
}
.recent-present-work__container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 768px) {
  .recent-present-work__container {
    flex-direction: column;
    text-align: center;
  }
}
.recent-present-work__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-right: 2rem;
}
@media (max-width: 768px) {
  .recent-present-work__content {
    padding-right: 0;
  }
}
.recent-present-work__secondary-header {
  font-size: 1.2rem;
  color: #d1b047;
  margin-bottom: 0.5rem;
  font-family: "PT Serif", serif;
}
.recent-present-work__primary-header {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .recent-present-work__primary-header {
    font-size: 2rem;
  }
}
.recent-present-work__description {
  font-family: "PT Serif", serif;
  font-size: 1rem;
  line-height: 1.6;
  color: rgb(99.5, 99.5, 99.5);
  margin-bottom: 1.5rem;
}
.recent-present-work__project {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .recent-present-work__project {
    align-items: center;
  }
}
.recent-present-work__project-icon {
  font-size: 2rem;
  color: #d1b047;
  margin-bottom: 0.5rem;
}
.recent-present-work__project-name {
  font-size: 1.5rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}
.recent-present-work__project-description {
  font-family: "PT Serif", serif;
  font-size: 0.95rem;
  color: rgb(99.5, 99.5, 99.5);
  line-height: 1.5;
}
.recent-present-work__cta-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .recent-present-work__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}
.recent-present-work__button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  cursor: pointer;
  background-color: #d1b047;
  color: #ffffff;
}
.recent-present-work__button:hover {
  background-color: rgb(203.6, 167.0847826087, 50.9);
}
.recent-present-work__button--secondary {
  background-color: transparent;
  color: #d1b047;
  border: 2px solid #d1b047;
}
.recent-present-work__button--secondary:hover {
  background-color: #d1b047;
  color: #ffffff;
}
.recent-present-work__image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  filter: grayscale(1);
}
@media (max-width: 768px) {
  .recent-present-work__image-container {
    display: none;
  }
}
.recent-present-work__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.cta-careers {
  background-image: url("https://mangisaus.sirv.com/DPC/assets/careers-bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  color: #ffffff;
  overflow: hidden;
  z-index: 1;
}
.cta-careers::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background-image: linear-gradient(to top, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.4) 80%, rgba(0, 0, 0, 0) 100%);
}
@media (min-width: 992px) {
  .cta-careers::before {
    content: none;
  }
}
@media (min-width: 992px) {
  .cta-careers {
    background-image: linear-gradient(to top, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 30%, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0.5) 100%), url("https://mangisaus.sirv.com/DPC/assets/careers-bg.jpg");
    background-size: cover;
    background-position: center center;
  }
}
.cta-careers__container {
  position: relative;
  z-index: 3;
  padding: 2rem;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  .cta-careers__container {
    padding: 2rem 2rem;
    padding-bottom: 0;
  }
}
@media (min-width: 992px) {
  .cta-careers__container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    min-height: 450px;
    align-items: flex-start;
  }
}
.cta-careers__content {
  max-width: 80%;
}
@media (min-width: 992px) {
  .cta-careers__content {
    padding-top: 2rem;
  }
}
.cta-careers__heading {
  font-family: "GlosaW01-HeadlineMedium", sans-serif;
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  .cta-careers__heading {
    font-size: 4.5rem;
  }
}
@media (min-width: 992px) {
  .cta-careers__heading {
    font-size: 5.5rem;
  }
}
.cta-careers__text {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  max-width: 400px;
  color: #b3b3b3;
}
.cta-careers__service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}
@media (max-width: 991px) {
  .cta-careers__service-list {
    margin-bottom: 1.5rem;
    align-self: flex-start;
  }
}
@media (min-width: 992px) {
  .cta-careers__service-list {
    text-align: right;
    margin-left: auto;
    padding-top: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
  }
}
.cta-careers__list-item {
  margin-bottom: 0.5rem;
}
@media (min-width: 992px) {
  .cta-careers__list-item {
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}
.cta-careers__list-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
.cta-careers__cta-bar {
  background-color: #e4d193;
  padding: 1.5rem 2rem;
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
@media (min-width: 576px) {
  .cta-careers__cta-bar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
  }
}
.cta-careers__cta-text {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #121212;
  margin: 0;
}
.cta-careers__button {
  display: inline-block;
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  background: transparent;
  color: inherit;
  font: inherit;
  line-height: normal;
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  -webkit-appearance: none;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  padding: 0.5rem 1.5rem;
  background-color: #121212;
  color: #ffffff;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  transition: background-color 250ms ease, box-shadow 250ms ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  padding: 1rem 2rem;
  border-radius: 4px;
}
.cta-careers__button::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.cta-careers__button:hover {
  background-color: #a1831e;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
}
.cta-careers__button:active {
  background-color: #725c15;
  box-shadow: none;
}
.cta-careers__button:focus, .cta-careers__button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(164, 255, 0, 0.3), 0 4px 6px rgba(0, 0, 0, 0.4);
}
.cta-careers__button:disabled {
  background-color: #363636;
  color: #555555;
  cursor: not-allowed;
  box-shadow: none;
}
.cta-careers__button:hover {
  background-color: rgb(43.5, 43.5, 43.5);
}

/*------------------------------------*\
    #MAIN-PROJECTS
\*------------------------------------*/
.main-projects {
  padding: 4rem 0;
  background-color: #1e1e1e;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-heading {
  color: #ffffff;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subheading {
  font-family: "Poppins", sans-serif;
  color: #b3b3b3;
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-card-container {
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-auto-rows: 250px;
  grid-auto-flow: dense; /* Important for filling gaps */
}
@media (min-width: 768px) {
  .gallery-card-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}
@media (min-width: 768px) {
  .gallery-card.card-wide {
    grid-column: span 2;
  }
  .gallery-card.card-tall {
    grid-row: span 2;
  }
}
.gallery-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(209, 176, 72, 0.1490196078), #d1b047);
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 1;
}
.gallery-card:hover::after {
  transform: translateY(0);
}
.gallery-card:hover {
  transform: translateY(-5px);
  mix-blend-mode: unset;
}

.card-content {
  position: relative;
  z-index: 2;
  transition: opacity 0.3s ease;
}

.card-subheader {
  font-family: "PT Serif", serif; /* Changed from 'Roboto', sans-serif */
  font-size: 0.85em;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  background-color: #d1b047;
  border-radius: 4px;
  padding: 0.2em;
}

.card-header {
  font-family: "Poppins", sans-serif; /* Changed from 'PT Serif', serif */
  font-size: 1.6em;
  color: #ffffff;
  line-height: 1.2;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.card-description {
  font-family: "Poppins", sans-serif; /* Changed from 'Roboto', sans-serif */
  font-size: 0.95em;
  color: #ffffff;
  line-height: 1.6;
  margin-top: 10px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, opacity 0.3s ease;
  opacity: 0;
}

.gallery-card:hover .card-description {
  max-height: 100px; /* Adjust as needed to reveal content */
  opacity: 1;
}

.card-link {
  display: inline-block;
  margin-top: 15px;
  color: #d1b047;
  text-decoration: none;
  font-weight: 600;
  font-family: "Poppins", sans-serif; /* Changed from 'Roboto', sans-serif */
  transition: transform 0.3s ease;
}
.card-link i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}
.card-link:hover {
  transform: translateX(5px);
}
.card-link:hover i {
  transform: translateX(5px);
}

.featured-project-section {
  padding: 4rem 0;
  background-color: #333;
  color: #ffffff;
  font-family: "Poppins", sans-serif; /* Changed from 'Roboto', sans-serif */
  box-sizing: border-box;
}
.featured-project-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
@media (min-width: 768px) {
  .featured-project-section__container {
    flex-direction: row;
    text-align: left;
    gap: 4rem;
  }
}
.featured-project-section__image {
  flex: 1;
  min-width: 300px;
}
.featured-project-section__image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.featured-project-section__content {
  flex: 1.5;
  text-align: center;
}
@media (min-width: 768px) {
  .featured-project-section__content {
    text-align: left;
  }
}
.featured-project-section__subheader {
  font-family: "Poppins", sans-serif; /* Changed from 'Roboto', sans-serif */
  font-size: 1.1rem;
  color: #d1b047;
  margin-bottom: 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.featured-project-section__header {
  font-family: "PT Serif", serif; /* Changed from 'PT Serif', serif */
  font-size: 2.8rem;
  color: #e0e0e0;
  margin-bottom: 1rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .featured-project-section__header {
    font-size: 2.2rem;
  }
}
@media (max-width: 480px) {
  .featured-project-section__header {
    font-size: 1.8rem;
  }
}
.featured-project-section__description {
  font-family: "Poppins", sans-serif; /* Changed from 'Roboto', sans-serif */
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.featured-project-section__button-group {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .featured-project-section__button-group {
    justify-content: flex-start;
  }
}
@media (max-width: 576px) {
  .featured-project-section__button-group {
    flex-direction: column;
    align-items: center;
  }
}
.featured-project-section__button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background-color: #d1b047;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.featured-project-section__button:hover {
  background-color: rgb(203.6, 167.0847826087, 50.9);
  transform: translateY(-3px);
}
.featured-project-section__button i {
  transition: transform 0.3s ease;
}
.featured-project-section__button:hover i {
  transform: translateX(5px);
}

.project-links-section {
  padding: 4rem 0;
  background-color: rgb(18.35, 18.35, 18.35);
  text-align: center;
  font-family: "Poppins", sans-serif; /* Changed from 'Roboto', sans-serif */
}
.project-links-section__header {
  font-family: "PT Serif", serif; /* Changed from 'PT Serif', serif */
  font-size: 2.2rem;
  color: #e0e0e0;
  margin-bottom: 2rem;
}
.project-links-section .project-links-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #d1b047 #333;
}
.project-links-section .project-link-item {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: #333;
  color: #b0b0b0;
  text-decoration: none;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}
.project-links-section .project-link-item:hover {
  background-color: #d1b047;
  color: #ffffff;
}
.project-links-section .project-link-item.active {
  background-color: #d1b047;
  color: #ffffff;
}

.project-card {
  background-color: #333;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  font-family: "Poppins", sans-serif; /* Changed from 'Roboto', sans-serif */
}
.project-card__image {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.project-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.project-card__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.project-card__category {
  font-size: 0.8em;
  color: #d1b047;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.project-card__title {
  font-family: "PT Serif", serif; /* Changed from 'PT Serif', serif */
  font-size: 1.5em;
  color: #e0e0e0;
  margin-bottom: 1rem;
  line-height: 1.3;
  font-weight: 700;
}
.project-card__description {
  font-size: 0.95em;
  color: #b0b0b0;
  line-height: 1.6;
  flex-grow: 1;
}
.project-card__link {
  display: inline-block;
  margin-top: 1.5rem;
  color: #d1b047;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
.project-card__link:hover {
  color: #d1b047;
}
.project-card:hover {
  transform: translateY(-5px);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 2rem auto 4rem;
  padding: 0 1.5rem;
}

.project-detail-content {
  padding: 60px 20px;
  background-color: #1a1a1a;
  color: #ffffff;
  max-width: 1000px;
  margin: 0 auto;
  line-height: 1.7;
  font-family: "Poppins", sans-serif; /* Changed from 'Roboto', sans-serif */
}
.project-detail-content h1 {
  font-family: "PT Serif", serif; /* Changed from 'PT Serif', serif */
  font-size: 3em;
  color: #e0e0e0;
  margin-bottom: 20px;
  text-align: center;
}
.project-detail-content h2 {
  font-family: "PT Serif", serif; /* Changed from 'PT Serif', serif */
  font-size: 2em;
  color: #e0e0e0;
  margin-top: 40px;
  margin-bottom: 15px;
}
.project-detail-content p {
  margin-bottom: 15px;
}
.project-detail-content ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 15px;
}
.project-detail-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
}
.project-detail-content .project-meta {
  text-align: center;
  color: #b0b0b0;
  font-size: 0.9em;
  margin-bottom: 40px;
}
.project-detail-content .project-meta span {
  display: inline-block;
  margin: 0 10px;
}
.project-detail-content .project-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  border-top: 1px solid rgba(176, 176, 176, 0.2);
  padding-top: 20px;
}
.project-detail-content .project-navigation a {
  color: #d1b047;
  text-decoration: none;
  font-weight: 600;
}
.project-detail-content .project-navigation a:hover {
  text-decoration: underline;
}

.project-links-wrapper::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.project-links-wrapper::-webkit-scrollbar-track {
  background: #333;
  border-radius: 10px;
}

.project-links-wrapper::-webkit-scrollbar-thumb {
  background: #d1b047;
  border-radius: 10px;
}

.project-links-wrapper::-webkit-scrollbar-thumb:hover {
  background: rgb(183.2, 150.3434782609, 45.8);
}

/*------------------------------------*\
    #PROJECT LINKS CONTAINER
\*------------------------------------*/
.project-links-container {
  padding: 3rem 1.5rem;
  background-color: rgb(20.9, 20.9, 20.9);
  box-sizing: border-box;
  width: 100%;
  overflow: hidden;
}
.project-links-container h4 {
  text-align: center;
  color: #ffffff;
  font-family: "PT Serif", serif;
}
.project-links-container .project-links-wrapper {
  display: flex;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 0 2rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: #d1b047 #333;
}
@media (min-width: 768px) {
  .project-links-container .project-links-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: visible;
    padding: 0;
  }
}
.project-links-container .project-link-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background-color: #333;
  border-radius: 8px;
  padding: 1.5rem;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.project-links-container .project-link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  background-color: #d1b047;
  color: #ffffff;
}
.project-links-container .project-link-card:hover .project-subheader {
  color: rgba(255, 255, 255, 0.8);
}
.project-links-container .project-link-card:hover .project-header i {
  transform: translateX(5px);
}
@media (min-width: 768px) {
  .project-links-container .project-link-card {
    flex: 0 0 calc(33.333% - 1rem);
  }
}
@media (min-width: 992px) {
  .project-links-container .project-link-card {
    flex: 0 0 calc(25% - 1.5rem);
  }
}
.project-links-container .project-subheader {
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  color: #d1b047;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  transition: color 0.3s ease;
}
.project-links-container .project-header {
  font-family: "PT Serif", serif;
  font-size: 1.4rem;
  color: #e0e0e0;
  line-height: 1.3;
  font-weight: 700;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.project-links-container .project-header i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}
.project-links-container::-webkit-scrollbar {
  height: 8px;
}
.project-links-container::-webkit-scrollbar-track {
  background: rgba(176, 176, 176, 0.1);
  border-radius: 10px;
}
.project-links-container::-webkit-scrollbar-thumb {
  background: #d1b047;
  border-radius: 10px;
}

/*=============================================
=            Contact Section                  =
=============================================*/
#main-contact {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  grid-template-areas: "info form";
  gap: 2rem;
  padding: 4rem 2rem;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
}
#main-contact .contact-info {
  grid-area: info;
  padding: 1.5rem;
  background-color: rgb(17.25, 17.25, 17.25);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}
#main-contact .contact-info .subheading {
  color: #888888;
  font-family: "PT Serif", serif;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
#main-contact .contact-info .heading {
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  margin-bottom: 2rem;
}
#main-contact .contact-info .contact-info-body p {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}
#main-contact .contact-info .contact-info-body p i {
  color: #d1b047;
  margin-right: 0.5rem;
  width: 20px;
  text-align: center;
}
#main-contact .contact-info .contact-info-body p a {
  text-decoration: none;
  transition: color 0.3s;
}
#main-contact .contact-info .contact-info-body p a:hover {
  color: #d1b047;
}
#main-contact .contact-info .contact-info-buttons {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
#main-contact .contact-info .contact-info-buttons .btn {
  flex-grow: 1;
  text-align: center;
}
#main-contact .contact-info .contact-info-buttons .btn:hover {
  color: #d1b047;
}
#main-contact .contact-info .contact-info-social {
  text-align: center;
  margin-top: 2rem;
}
#main-contact .contact-info .contact-info-social a {
  margin: 0 1rem;
  font-size: 1.5rem;
  transition: color 0.3s;
  color: #b3b3b3;
}
#main-contact .contact-info .contact-info-social a:hover {
  color: #d1b047;
}
#main-contact .contact-form-container {
  grid-area: form;
}
#main-contact #contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
#main-contact #contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
#main-contact #contact-form .form-group {
  display: flex;
  flex-direction: column;
}
#main-contact #contact-form .form-group label {
  margin-bottom: 0.5rem;
  color: #b3b3b3;
  font-size: 0.9rem;
}
#main-contact #contact-form .form-group input, #main-contact #contact-form .form-group textarea {
  color: unset;
  background-color: rgb(17.25, 17.25, 17.25);
  border: 1px solid #2d2d2d;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-family: "Poppins", sans-serif;
  transition: border-color 0.3s, box-shadow 0.3s;
}
#main-contact #contact-form .form-group input:focus, #main-contact #contact-form .form-group textarea:focus {
  outline: none;
  border-color: #d1b047;
  box-shadow: 0 0 5px rgba(209, 176, 71, 0.5);
}
#main-contact #contact-form .form-group input:hover, #main-contact #contact-form .form-group textarea:hover {
  outline: #d1b047;
  cursor: pointer;
}
#main-contact #contact-form .form-group textarea {
  resize: vertical;
}
#main-contact #contact-form .form-buttons {
  display: flex;
  gap: 1rem;
}

/* General Button Styles for Contact Section */
.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.3s, color 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.btn-send {
  background-color: #d1b047;
  color: #ffffff;
}
.btn-send:hover {
  background-color: #a1831e;
}
.btn-reset {
  background-color: #2d2d2d;
  color: #b3b3b3;
}
.btn-reset:hover {
  background-color: rgb(70.5, 70.5, 70.5);
  color: #ffffff;
}

#form-status-messages {
  padding: 1rem;
  border-radius: 8px;
  display: none;
  margin-top: 1rem;
}
#form-status-messages.success {
  display: block;
  background-color: rgba(209, 176, 71, 0.2);
  color: #d1b047;
  border: 1px solid #d1b047;
}
#form-status-messages.error {
  display: block;
  background-color: rgba(255, 0, 0, 0.2);
  color: #ff8a8a;
  border: 1px solid #ff0000;
}

/* Responsive Styles */
@media (max-width: 992px) {
  #main-contact {
    grid-template-columns: 1fr;
    grid-template-areas: "info" "form";
  }
}
@media (max-width: 576px) {
  #main-contact #contact-form .form-row {
    grid-template-columns: 1fr;
  }
  #main-contact .form-buttons {
    flex-direction: column;
  }
}
.main-about {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 2rem;
  background-color: #121212;
}
@media (min-width: 768px) {
  .main-about {
    padding: 3rem 5%;
  }
}
@media (min-width: 1024px) {
  .main-about {
    padding: 4rem 10%;
  }
}

.about-section-1 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about-section-1 .subheading {
  color: #d1b047;
  font-size: 1.2em;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  text-align: center;
}
.about-section-1 .heading {
  font-family: "Poppins", sans-serif;
  font-size: 2.5em;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-align: center;
}
@media (min-width: 768px) {
  .about-section-1 .heading {
    font-size: 3.5em;
  }
}
.about-section-1 .introduction-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .about-section-1 .introduction-section {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.about-section-1 .introduction-section .introduction-content {
  font-size: 1rem;
  line-height: 1.8;
  color: #b3b3b3;
  flex: 1;
  padding-right: 1em;
}
@media (min-width: 1024px) {
  .about-section-1 .introduction-section .introduction-content {
    flex: 0.6;
  }
}
.about-section-1 .introduction-section .ceo-message-content {
  background-color: #2d2d2d;
  padding: 1.5em;
  border-radius: 8px;
  border-left: 5px solid #d1b047;
  flex: 1;
}
@media (min-width: 1024px) {
  .about-section-1 .introduction-section .ceo-message-content {
    flex: 0.4;
  }
}
.about-section-1 .introduction-section .ceo-message-content .ceo-message-text {
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.about-section-1 .introduction-section .ceo-message-content .ceo-signature {
  font-weight: bold;
  color: #d1b047;
  text-align: right;
}
.about-section-1 .section-heading {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #d1b047;
  padding-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .about-section-1 .section-heading {
    font-size: 2.5em;
  }
}
.about-section-1 .about-company-content,
.about-section-1 .financials-compliance-content,
.about-section-1 .vision-mission-content,
.about-section-1 .services-overview-content,
.about-section-1 .our-goals-content {
  font-size: 1em;
  line-height: 1.8;
  color: #b3b3b3;
}
.about-section-1 .financials-compliance-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .about-section-1 .financials-compliance-content {
    flex-direction: row;
    justify-content: space-around;
  }
}
.about-section-1 .financials-compliance-content .banking-info,
.about-section-1 .financials-compliance-content .compliance-info {
  background-color: #2d2d2d;
  padding: 1rem;
  border-radius: 8px;
  flex: 1;
}
.about-section-1 .financials-compliance-content .banking-info h3,
.about-section-1 .financials-compliance-content .compliance-info h3 {
  margin-bottom: 1rem;
  font-size: 1.3em;
}
.about-section-1 .financials-compliance-content .banking-info p,
.about-section-1 .financials-compliance-content .compliance-info p {
  margin-bottom: 0.5rem;
  color: #b3b3b3;
}
.about-section-1 .vision-mission-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  .about-section-1 .vision-mission-content {
    flex-direction: row;
  }
}
.about-section-1 .vision-mission-content .vision,
.about-section-1 .vision-mission-content .mission {
  flex: 1;
  background-color: #2d2d2d;
  padding: 1.5rem;
  border-radius: 8px;
}
.about-section-1 .vision-mission-content .vision h3,
.about-section-1 .vision-mission-content .mission h3 {
  margin-bottom: 1rem;
  font-size: 1.3em;
  color: #ffffff;
}
.about-section-1 .vision-mission-content .vision ul,
.about-section-1 .vision-mission-content .mission ul {
  list-style: none;
  padding-left: 0;
}
.about-section-1 .vision-mission-content .vision ul li,
.about-section-1 .vision-mission-content .mission ul li {
  margin-bottom: 0.7rem;
  position: relative;
  padding-left: 1.5em;
}
.about-section-1 .vision-mission-content .vision ul li::before,
.about-section-1 .vision-mission-content .mission ul li::before {
  content: "•";
  color: #d1b047;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1.5em;
}
.about-section-1 .services-overview-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.about-section-1 .services-overview-content > p {
  grid-column: 1/-1;
}
@media (min-width: 768px) {
  .about-section-1 .services-overview-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .about-section-1 .services-overview-content {
    grid-template-columns: repeat(4, 1fr);
  }
}
.about-section-1 .services-overview-content .service-category {
  background-color: #2d2d2d;
  padding: 1.5rem;
  border-radius: 8px;
}
.about-section-1 .services-overview-content .service-category h3 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.about-section-1 .services-overview-content .service-category ul {
  list-style: none;
  padding-left: 0;
}
.about-section-1 .services-overview-content .service-category ul li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.2em;
  color: #b3b3b3;
}
.about-section-1 .services-overview-content .service-category ul li::before {
  content: "•";
  color: #d1b047;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1.2em;
}
.about-section-1 .services-button,
.about-section-1 .contact-page-button,
.about-section-1 .download-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background-color: #d1b047;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: 1rem;
  text-decoration: none;
}
.about-section-1 .services-button:hover,
.about-section-1 .contact-page-button:hover,
.about-section-1 .download-button:hover {
  background-color: #a1831e;
}
.about-section-1 .services-button .fas,
.about-section-1 .contact-page-button .fas,
.about-section-1 .download-button .fas {
  margin-left: 0.5rem;
}
.about-section-1 .our-goals-content .goals-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .about-section-1 .our-goals-content .goals-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.about-section-1 .our-goals-content .goals-grid .goal-item {
  background-color: #2d2d2d;
  padding: 1.5rem;
  border-radius: 8px;
}
.about-section-1 .our-goals-content .goals-grid .goal-item h3 {
  margin-bottom: 1rem;
  font-size: 1.3em;
  color: #ffffff;
}
.about-section-1 .our-goals-content .goals-grid .goal-item p {
  color: #b3b3b3;
  line-height: 1.7;
}

.contact-section-2,
.contact-section-3 {
  margin-top: 3rem;
}
.contact-section-2 .section-heading,
.contact-section-3 .section-heading {
  font-family: "PT Serif", serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #d1b047;
  padding-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .contact-section-2 .section-heading,
  .contact-section-3 .section-heading {
    font-size: 2.5rem;
  }
}

.faq-accordion .accordion-item {
  margin-bottom: 10px;
  border: 1px solid #2d2d2d;
  border-radius: 8px;
  overflow: hidden;
}
.faq-accordion .accordion-item .accordion-header {
  color: #ffffff;
  background-color: #363636;
  padding: 1em 2em;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.faq-accordion .accordion-item .accordion-header:hover {
  background-color: #2d2d2d;
}
.faq-accordion .accordion-item .accordion-header .accordion-icon {
  transition: transform 0.3s ease;
}
.faq-accordion .accordion-item .accordion-header.active .accordion-icon {
  transform: rotate(180deg);
}
.faq-accordion .accordion-item .accordion-content {
  background-color: #1e1e1e;
  color: #b3b3b3;
  padding: 0 2em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}
.faq-accordion .accordion-item .accordion-content p {
  padding: 15px 0;
  margin: 0;
  line-height: 1.7;
}

.downloads-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.downloads-container .download-button {
  width: 100%;
  justify-content: center;
  margin-top: 0;
}
@media (min-width: 768px) {
  .downloads-container .download-button {
    width: auto;
  }
}
@media (min-width: 768px) {
  .downloads-container {
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 1rem;
  }
}

#main-post-content {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
}
#main-post-content .post-header-section {
  text-align: center;
  margin-bottom: 40px;
}
#main-post-content .post-header-section .post-subheader {
  font-size: 1em;
  color: #b3b3b3;
  font-family: "PT Serif", serif;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}
#main-post-content .post-header-section .post-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
@media (max-width: 767px) {
  #main-post-content .post-header-section .post-title {
    font-size: 2em;
  }
}
#main-post-content .post-header-section .post-hero-image {
  margin-bottom: 1.5rem;
}
#main-post-content .post-header-section .post-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
#main-post-content .post-header-section .post-hero-image figcaption {
  font-size: 0.85em;
  color: #b3b3b3;
  margin-top: 0.5rem;
  font-style: italic;
}
#main-post-content .section-separator {
  border: none;
  border-top: 1px solid #444444;
  margin: 60px 0;
  opacity: 0.3;
}
#main-post-content .post-content-grid {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
#main-post-content .post-content-grid .post-section p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}
#main-post-content .post-content-grid .post-section p:last-child {
  margin-bottom: 0;
}
#main-post-content .post-content-grid .post-inline-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
#main-post-content .post-content-grid .post-inline-image figcaption {
  font-size: 0.85em;
  color: #b3b3b3;
  margin-top: 1rem;
  font-style: italic;
  text-align: center;
}
@media (min-width: 768px) {
  #main-post-content .post-content-grid {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #main-post-content .post-content-grid .post-section {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
  }
  #main-post-content .post-content-grid .post-inline-image {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
  }
  #main-post-content .post-content-grid .post-inline-image:nth-child(3n+1) {
    flex-basis: calc(40% - 15px);
  }
  #main-post-content .post-content-grid .post-inline-image:nth-child(3n+2) {
    flex-basis: calc(60% - 15px);
  }
  #main-post-content .post-content-grid .post-inline-image:nth-child(3n+3) {
    flex-basis: calc(30% - 15px);
  }
}
@media (min-width: 1024px) {
  #main-post-content .post-content-grid .post-section {
    flex: 1 1 calc(33.333% - 20px);
  }
}
#main-post-content .post-iframe {
  padding: 5em 1.5em;
  text-align: center;
  box-sizing: border-box;
}
#main-post-content .post-iframe__container {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#main-post-content .post-iframe__subheader {
  font-size: 1.2rem;
  color: #d1b047;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: "PT Serif", serif;
}
#main-post-content .post-iframe__header {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  #main-post-content .post-iframe__header {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  #main-post-content .post-iframe__header {
    font-size: 1.6rem;
  }
}
#main-post-content .post-iframe__description {
  font-size: 1rem;
  color: #b3b3b3;
  line-height: 1.6;
}
#main-post-content .post-iframe__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background-color: #000;
}
#main-post-content .post-iframe__video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}
#main-post-content .related-content {
  margin-top: 1.5rem;
  text-align: center;
}
#main-post-content .related-content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
}
#main-post-content .related-content h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #d1b047;
  margin: 1rem auto 0;
  border-radius: 4px;
}
#main-post-content .related-content .related-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding-top: 20px;
}
@media (max-width: 767px) {
  #main-post-content .related-content .related-articles-grid {
    grid-template-columns: 1fr;
  }
}
#main-post-content .related-content .related-articles-grid .related-article-card {
  background-color: #333;
  padding: 25px;
  border-radius: 8px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, background-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
#main-post-content .related-content .related-articles-grid .related-article-card:hover {
  transform: translateY(-5px);
  background-color: rgb(63.75, 63.75, 63.75);
}
#main-post-content .related-content .related-articles-grid .related-article-card:hover .related-title {
  color: #d1b047;
}
#main-post-content .related-content .related-articles-grid .related-article-card .related-subheader {
  font-family: "Roboto", sans-serif;
  font-size: 0.9em;
  color: #b0b0b0;
  margin-bottom: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}
#main-post-content .related-content .related-articles-grid .related-article-card .related-title {
  font-family: "PT Serif", serif;
  font-size: 1.3em;
  color: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  transition: color 0.3s ease;
}
#main-post-content .related-content .related-articles-grid .related-article-card .related-title i {
  margin-left: 10px;
  font-size: 0.9em;
  transition: transform 0.3s ease;
}
#main-post-content .social-share-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 80px;
  padding-top: 20px;
}
#main-post-content .social-share-buttons .share-button {
  background-color: #2d2d2d;
  width: 50px;
  height: 50px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
#main-post-content .social-share-buttons .share-button:hover {
  transform: translateY(-3px);
}
#main-post-content .social-share-buttons .share-button.facebook:hover {
  background-color: #3b5998;
}
#main-post-content .social-share-buttons .share-button.whatsapp:hover {
  background-color: #25d366;
}
#main-post-content .social-share-buttons .share-button.telegram:hover {
  background-color: #0088cc;
}
#main-post-content .social-share-buttons .share-button.linkedin:hover {
  background-color: #0077b5;
}
#main-post-content .social-share-buttons .share-button.email:hover {
  background-color: #D44638;
}
#main-post-content .social-share-buttons .share-button.sms:hover {
  background-color: #6c757d;
}

#main-careers {
  padding: 60px 20px;
}
#main-careers .careers-grid-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
@media (max-width: 767px) {
  #main-careers .careers-grid-container {
    grid-template-columns: 1fr;
  }
}
#main-careers .careers-grid-container .job-card {
  background-color: #363636;
  padding: 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, background-color 0.3s ease;
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
}
#main-careers .careers-grid-container .job-card:hover {
  transform: translateY(-8px);
  background-color: rgb(66.75, 66.75, 66.75);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
}
#main-careers .careers-grid-container .job-card .job-subheader {
  font-family: "PT Serif", serif;
  font-size: 0.95em;
  color: #b3b3b3;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  font-weight: 500;
}
#main-careers .careers-grid-container .job-card .job-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
  transition: color 0.3s ease;
  text-transform: uppercase;
}
#main-careers .careers-grid-container .job-card .job-details {
  font-size: 0.9rem;
  color: #b0b0b0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  line-height: 1.5;
}
#main-careers .careers-grid-container .job-card .job-details span {
  margin-right: 0.5rem;
}
#main-careers .careers-grid-container .job-card .job-details span:last-of-type {
  margin-right: 0;
  color: red;
}
#main-careers .careers-grid-container .job-card .job-details .job-type {
  font-weight: 700;
  color: #d1b047;
}
#main-careers .careers-grid-container .job-card .job-details .job-arrow {
  margin-left: auto;
  color: #b3b3b3;
  transition: transform 0.3s ease, color 0.3s ease;
  font-size: 1.1rem;
}
#main-careers .careers-grid-container .job-card:hover .job-title {
  color: #d1b047;
}
#main-careers .careers-grid-container .job-card:hover .job-arrow {
  transform: translateX(5px);
  color: #d1b047;
}

#job-description-container {
  padding: 60px 20px;
  color: #ffffff;
  max-width: 1000px;
  margin: 0 auto;
}
#job-description-container .job-description-header {
  text-align: center;
  margin-bottom: 40px;
}
#job-description-container .job-description-header .job-subheader {
  font-family: "PT Serif", serif;
  font-size: 1.1em;
  color: #b3b3b3;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}
#job-description-container .job-description-header .job-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.8em;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  font-weight: 700;
}
@media (max-width: 767px) {
  #job-description-container .job-description-header .job-title {
    font-size: 2em;
  }
}
#job-description-container .job-description-header .header-separator {
  border: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, #d1b047, transparent);
  margin: 30px auto;
  width: 80%;
  max-width: 500px;
}
#job-description-container .job-description-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
#job-description-container .job-description-content h3 {
  font-size: 2em;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  #job-description-container .job-description-content h3 {
    font-size: 1.6em;
  }
}
#job-description-container .job-description-content p,
#job-description-container .job-description-content li {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 0.25rem;
}
#job-description-container .job-description-content ul {
  list-style: disc;
  margin-left: 1.5rem;
  padding-left: 0;
}
#job-description-container .job-description-content ul li {
  margin-bottom: 1rem;
}
#job-description-container .job-description-content ul li:last-child {
  margin-bottom: 0;
}
#job-description-container .job-application-details {
  background-color: #2d2d2d;
  padding: 2em;
  border-radius: 8px;
  text-align: center;
  margin-top: 1.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
#job-description-container .job-application-details .application-address {
  font-size: 1.15em;
  margin-bottom: 20px;
  line-height: 1.4;
  color: #d1b047;
}
#job-description-container .job-application-details .application-address strong {
  color: #b3b3b3;
}
#job-description-container .job-application-details .apply-now-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #d1b047;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: 700;
  transition: background-color 0.3s ease;
}
#job-description-container .job-application-details .apply-now-button i {
  margin-right: 0.5rem;
  font-size: 1.3em;
}
#job-description-container .job-application-details .apply-now-button:hover {
  background-color: #a1831e;
  transform: translateY(-2px);
}
#job-description-container .equal-opportunity-disclaimer {
  font-size: 0.95em;
  color: #b3b3b3;
  text-align: center;
  margin-top: 3rem;
  padding: 1em 2em;
  border: 1px dashed #b0b0b0;
  border-radius: 8px;
  background-color: transparent(8px, 0.5);
}
#job-description-container .social-share-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2em;
  border-top: 1px solid rgba(179, 179, 179, 0.2);
}
#job-description-container .social-share-buttons h4 {
  width: 100%;
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  font-weight: 500;
}
#job-description-container .social-share-buttons .share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 9999px;
  background-color: #2d2d2d;
  font-size: 1.4em;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
#job-description-container .social-share-buttons .share-button:hover {
  background-color: #d1b047;
  transform: translateY(-3px);
}
#job-description-container .social-share-buttons .share-button.facebook {
  background-color: #3b5998;
}
#job-description-container .social-share-buttons .share-button.whatsapp {
  background-color: #25d366;
}
#job-description-container .social-share-buttons .share-button.telegram {
  background-color: #0088cc;
}
#job-description-container .social-share-buttons .share-button.linkedin {
  background-color: #0077b5;
}
#job-description-container .social-share-buttons .share-button.email {
  background-color: #D44638;
}
#job-description-container .social-share-buttons .share-button.sms {
  background-color: #6C757D;
}
#job-description-container .extra-content-space {
  min-height: 100px;
  margin-top: 60px;
  border-top: 1px dashed rgba(45, 45, 45, 0.3);
  padding-top: 40px;
  text-align: center;
  color: #b3b3b3;
  font-style: italic;
}
#job-description-container .extra-content-space .related-content {
  margin-top: 30px;
  text-align: center;
}
#job-description-container .extra-content-space .related-content h2 {
  font-size: 2.2em;
  color: #ffffff;
  margin-bottom: 30px;
  font-weight: 700;
}
@media (max-width: 767px) {
  #job-description-container .extra-content-space .related-content h2 {
    font-size: 1.8em;
  }
}
#job-description-container .extra-content-space .related-content .related-articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  #job-description-container .extra-content-space .related-content .related-articles-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
#job-description-container .extra-content-space .related-content .related-articles-grid .related-job-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #2d2d2d;
  padding: 2em;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
#job-description-container .extra-content-space .related-content .related-articles-grid .related-job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}
#job-description-container .extra-content-space .related-content .related-articles-grid .related-job-card .related-subheader {
  font-size: 0.9em;
  color: #b3b3b3;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}
#job-description-container .extra-content-space .related-content .related-articles-grid .related-job-card .related-title {
  font-size: 1.4rem;
  margin-bottom: 0;
  line-height: 1.3;
  font-weight: 600;
  color: #ffffff;
}
#job-description-container .extra-content-space .related-content .related-articles-grid .related-job-card .related-title i {
  margin-left: 1rem;
  color: #d1b047;
  transition: transform 0.3s ease;
}
#job-description-container .extra-content-space .related-content .related-articles-grid .related-job-card:hover .related-title i {
  transform: translateX(5px);
}

#main-privacy {
  padding: 60px 20px;
  color: #ffffff;
  max-width: 1000px;
  margin: 0 auto;
  line-height: 1.7;
}
#main-privacy .main-privacy__header-group {
  text-align: center;
  margin-bottom: 40px;
}
#main-privacy .main-privacy__header-group .main-privacy__subheader {
  font-family: "PT Serif", serif;
  font-size: 1.1em;
  color: #b0b0b0;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}
#main-privacy .main-privacy__header-group .main-privacy__header {
  font-family: "Poppins", sans-serif;
  font-size: 3.2em;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.1;
  font-weight: 700;
}
@media (max-width: 767px) {
  #main-privacy .main-privacy__header-group .main-privacy__header {
    font-size: 2.4em;
  }
}
#main-privacy .main-privacy__header-group .main-privacy__separator {
  border: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, #d1b047, transparent);
  margin: 30px auto;
  width: 80%;
  max-width: 500px;
}
#main-privacy .main-privacy__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
#main-privacy .main-privacy__content .main-privacy__section {
  background-color: #2d2d2d;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
#main-privacy .main-privacy__content .main-privacy__section h2 {
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  font-size: 1.8em;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: center;
}
#main-privacy .main-privacy__content .main-privacy__section h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.4em;
  margin-top: 25px;
  margin-bottom: 15px;
  font-weight: 600;
}
#main-privacy .main-privacy__content .main-privacy__section p {
  font-family: "Poppins", sans-serif; /* Changed from 'Roboto', sans-serif */
  margin-bottom: 15px;
  color: #ffffff;
  font-size: 1em;
  line-height: 1.7;
}
#main-privacy .main-privacy__content .main-privacy__section p:last-child {
  margin-bottom: 0;
}
#main-privacy .main-privacy__content .main-privacy__section p strong {
  color: #d1b047;
  font-weight: 700;
}
#main-privacy .main-privacy__content .main-privacy__section p a {
  color: #d1b047;
  text-decoration: none;
  transition: color 0.3s ease;
}
#main-privacy .main-privacy__content .main-privacy__section p a:hover {
  text-decoration: underline;
}
#main-privacy .main-privacy__content .main-privacy__section ul {
  font-family: "Poppins", sans-serif; /* Changed from 'Roboto', sans-serif */
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 15px;
  color: #ffffff;
}
#main-privacy .main-privacy__content .main-privacy__section ul li {
  margin-bottom: 8px;
  line-height: 1.6;
}
#main-privacy .main-privacy__content .main-privacy__section ul li:last-child {
  margin-bottom: 0;
}
#main-privacy .main-privacy__contact-info {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(176, 176, 176, 0.3);
}
#main-privacy .main-privacy__contact-info .main-privacy__contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #d1b047;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-family: "Poppins", sans-serif; /* Changed from 'Roboto', sans-serif */
  font-size: 1.2em;
  font-weight: 700;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-bottom: 25px;
}
#main-privacy .main-privacy__contact-info .main-privacy__contact-button i {
  margin-right: 10px;
  font-size: 1.3em;
}
#main-privacy .main-privacy__contact-info .main-privacy__contact-button:hover {
  background-color: rgb(203.6, 167.0847826087, 50.9);
  transform: translateY(-2px);
}
#main-privacy .main-privacy__contact-info .main-privacy__address {
  font-family: "Poppins", sans-serif; /* Changed from 'Roboto', sans-serif */
  font-size: 1em;
  color: #b0b0b0;
  line-height: 1.6;
}
#main-privacy .main-privacy__contact-info .main-privacy__address strong {
  color: #e0e0e0;
  font-weight: 600;
}
@media (min-width: 768px) {
  #main-privacy .main-privacy__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  #main-privacy {
    padding: 40px 15px;
  }
  #main-privacy .main-privacy__header-group {
    margin-bottom: 30px;
  }
  #main-privacy .main-privacy__section {
    padding: 20px;
  }
  #main-privacy .main-privacy__section h2 {
    font-size: 1.6em;
  }
  #main-privacy .main-privacy__section h3 {
    font-size: 1.2em;
  }
}

.service-template {
  padding: 60px 20px;
  color: #ffffff;
  max-width: 1000px;
  margin: 0 auto;
  line-height: 1.7;
}
.service-template__breadcrumb {
  margin-bottom: 30px;
}
.service-template__breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 0.95em;
}
.service-template__breadcrumb ol li {
  display: flex;
  align-items: center;
  color: #b0b0b0;
}
.service-template__breadcrumb ol li:not(:last-child)::after {
  content: "/";
  margin: 0 8px;
  color: #b0b0b0;
}
.service-template__breadcrumb ol li a {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.3s ease;
}
.service-template__breadcrumb ol li a:hover {
  color: #d1b047;
}
.service-template__breadcrumb ol li span[itemprop=name] {
  color: #e0e0e0;
  font-weight: 500;
}
.service-template__header-group {
  text-align: center;
  margin-bottom: 40px;
}
.service-template__header-group .service-template__subheader {
  font-family: "PT Serif", serif;
  font-size: 1.1em;
  color: #b0b0b0;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}
.service-template__header-group .service-template__header {
  font-family: "Poppins", sans-serif;
  font-size: 3.2em;
  color: #e0e0e0;
  margin-bottom: 20px;
  line-height: 1.1;
  font-weight: 700;
}
@media (max-width: 767px) {
  .service-template__header-group .service-template__header {
    font-size: 2.4em;
  }
}
.service-template__header-group .service-template__separator {
  border: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, #d1b047, transparent);
  margin: 30px auto;
  width: 80%;
  max-width: 500px;
}
.service-template__content {
  background-color: #333;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.service-template__content .service-template__intro {
  font-size: 1.15em;
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 40px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.service-template__content .service-template__features-heading {
  font-family: "PT Serif", serif;
  font-size: 2em;
  color: #e0e0e0;
  margin-bottom: 30px;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 767px) {
  .service-template__content .service-template__features-heading {
    font-size: 1.7em;
  }
}
.service-template__content .service-template__features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 50px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  justify-content: center;
}
@media (min-width: 768px) {
  .service-template__content .service-template__features-list {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  }
}
.service-template__content .service-template__features-list .service-template__feature-item {
  background-color: rgba(26, 26, 26, 0.5);
  padding: 20px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  font-family: "PT Serif", serif;
  font-size: 1.05em;
  text-align: center;
  line-height: 1.6;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-template__content .service-template__features-list .service-template__feature-item i {
  font-size: 1.6em;
  color: #d1b047;
  flex-shrink: 0;
  margin-top: 2px;
}
.service-template__content .service-template__features-list .service-template__feature-item strong {
  color: #e0e0e0;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}
.service-template__content .service-template__features-list .service-template__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}
.service-template__content .service-template__cta {
  text-align: center;
  margin-top: 30px;
}
.service-template__content .service-template__cta .service-template__action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #d1b047;
  color: #ffffff;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 1.25em;
  font-weight: 700;
  transition: all 0.3s ease;
}
.service-template__content .service-template__cta .service-template__action-button i {
  margin-left: 15px;
  font-size: 1em;
  transition: transform 0.3s ease;
}
.service-template__content .service-template__cta .service-template__action-button:hover {
  background-color: rgb(203.6, 167.0847826087, 50.9);
  transform: translateY(-3px);
}
.service-template__content .service-template__cta .service-template__action-button:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------
  Main Maintenance Container Styles
----------------------------------------------------*/
/* Style Variables (assumed to be defined elsewhere, repeated here for context) */
/* Maintenance Container Layout */
.main-maintenance-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh; /* Ensures it takes up a good portion of the viewport height */
  padding: 4rem 2rem;
  font-family: "Poppins", sans-serif; /* Changed from 'Roboto', sans-serif */
}

.maintenance-content {
  display: flex;
  flex-direction: column;
  max-width: 800px; /* Limits content width for readability on large screens */
  width: 100%;
  text-align: center;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
  margin-bottom: 1rem;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  color: #b3b3b3;
}

.breadcrumb-item:not(:last-child)::after {
  content: "/";
  margin: 0 8px;
  color: #888888;
}

.breadcrumb-item a {
  color: #b3b3b3;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: #32CD32;
}

.breadcrumb-item span[itemprop=name] {
  color: #b3b3b3;
  font-weight: 500;
}

/* Main Header */
.main-header {
  font-family: "Poppins", sans-serif; /* Changed from 'PT Serif', serif */
  font-size: 3.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.1;
}

/* Sub-header */
.sub-header {
  font-family: "PT Serif", serif; /* Changed from 'Roboto', sans-serif */
  font-size: 1.25rem;
  color: #888888;
  margin-bottom: 2rem;
  font-weight: 400;
}

/* Description Paragraphs */
.maintenance-notice {
  font-family: "Poppins", sans-serif; /* Changed from 'Roboto', sans-serif */
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Project Availability */
.projects-availability {
  font-family: "Poppins", sans-serif; /* Changed from 'Roboto', sans-serif */
  font-size: 1.1rem;
  color: #888888;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.projects-availability strong {
  color: #ffffff; /* Slightly brighter for emphasis */
}

/* Contact Button */
.btn-contact {
  display: inline-block;
  background-color: #d1b047;
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 1.5rem;
  align-self: center; /* Center button within the flex container */
}
.btn-contact i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}
.btn-contact:hover {
  background-color: #a1831e;
  transform: translateY(-3px);
}
.btn-contact:hover i {
  transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .main-maintenance-container {
    padding: 3rem 1.5rem;
  }
  .main-header {
    font-size: 2.5rem; /* Adjust font size for smaller screens */
  }
  .sub-header {
    font-size: 1.1rem;
  }
}
@media (max-width: 480px) {
  .main-header {
    font-size: 2rem;
  }
  .sub-header {
    font-size: 1rem;
  }
  .btn-contact {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}
.main-error {
  padding: 8em 1.5em;
  background-color: #121212;
  text-align: center;
  box-sizing: border-box;
  min-height: calc(100vh - 200px);
}
.main-error__container {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.main-error__breadcrumb {
  margin-bottom: 1rem;
}
.main-error__breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.main-error__breadcrumb li {
  font-size: 0.9rem;
  color: #b3b3b3;
}
.main-error__breadcrumb li:not(:last-child)::after {
  content: " /";
  margin-left: 0.5rem;
  color: #b3b3b3;
}
.main-error__breadcrumb a {
  color: #b3b3b3;
  text-decoration: none;
  transition: color 0.3s ease;
}
.main-error__breadcrumb a:hover {
  color: #d1b047;
}
.main-error__breadcrumb span {
  color: #d1b047;
  font-weight: 600;
}
.main-error__subheader {
  font-size: 1.5rem;
  color: #d1b047;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.main-error__header {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: #ffffff;
}
@media (max-width: 768px) {
  .main-error__header {
    font-size: 3rem;
  }
}
@media (max-width: 480px) {
  .main-error__header {
    font-size: 2.5rem;
  }
}
.main-error__notice {
  font-size: 1.1rem;
  color: #b3b3b3;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 500px;
}
.main-error__button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background-color: #d1b047;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.main-error__button:hover {
  background-color: #a1831e;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
.main-error__button i {
  transition: transform 0.3s ease;
}
.main-error__button:hover i {
  transform: translateX(5px);
}/*# sourceMappingURL=main.css.map */