body {
  font-family: 'Bondini', sans-serif;
  background-color: #f8f9fa;
  color: #555;
  font-size: .80em;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Myriad Pro", "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #6c6b69;
}

h1 {
  font-size: 1.5rem;
  font-weight: 500;
}

h2 {
  font-size: 1.25rem;
  font-weight: 500;
}

h3 {
  font-size: 1rem;
  font-weight: 500;
}

h4 {
  font-size: .90rem;
  font-weight: 500;
}

h5 {
  font-size: .80rem;
  font-weight: 500;
}

h6 {
  font-size: .75rem;
  font-weight: 500;
}

/* Navigation CSS */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.nav-link {
  font-family: sans-serif;
  font-size: 0.80rem;
  text-transform: uppercase;
}

.navbar {
  background-color: black;
  height: 96px;
  width: 100%;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0 20px;
  z-index: 10;
  overflow: visible;
}

.logo-wrapper {
  position: absolute;
  background-color: black;
  padding: 5px;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
}

.logo {
  height: 140px;
  width: auto;
  object-fit: contain;
}

/* Hamburger */

.hamburger {
  position: absolute;
  right: 20px;
  top: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 4px;
  background-color: #828282;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Navigation Menu */

.nav-menu {
  display: none;
  position: absolute;
  top: 96px;
  right: 0;
  background: linear-gradient(to left, #372f26, #7d6e59);
  padding: 1rem 0 1rem 1rem;
  z-index: 1;
  flex-direction: column;
  min-width: max-content;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  border-radius: 0;
}

.nav-menu.active {
  display: flex;
}

.nav-menu li {
  list-style: none;
  padding: 0.6rem 1rem;
  position: relative;
  white-space: nowrap;
}

.nav-menu a {
  color: #c3ad8d;
  text-decoration: none;
  display: block;
}

/* Dropdown styling */

.has-dropdown > a::after {
  content: " ▼";
  font-size: 0.7em;
}

.dropdown {
  display: none;
  flex-direction: column;
  background: linear-gradient(to left, #372f26, #c3ad8d);
  margin-top: 0.5rem;
  margin-left: 0.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  position: relative;
  border-radius: 0;
}

.dropdown li {
  padding: 1rem;
}

.dropdown a {
  color: #c3ad8d;
}

/* Hover-based dropdown (can be changed to click if needed) */

.has-dropdown:hover .dropdown {
  display: flex;
}

/* Hero section */

.hero {
  background-color: #f4f4f4;
  height: 500px;
  padding-top: 150px;
  text-align: center;
}

/* Hover styles for nav and dropdown links */

.nav-menu a:hover, .dropdown a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #f0e0c0;
}

/* Active page highlight */

.nav-menu a.active, .dropdown a.active {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-weight: bold;
}

/* End Navigation CSS */

/* Testimonial start */

.testimonial-footer {
  padding: 40px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.testimonial-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.testimonial-logos a {
  display: inline-block;
  transition: transform 0.2s ease-in-out;
}

.testimonial-logos a:hover {
  transform: scale(1.05);
}

.testimonial-logos img {
  height: 25px;
  max-width: 100%;
  object-fit: contain;
}

.testimonial-logo-special {
  height: 50px !important;
}

/* Responsive adjustment */

@media (max-width: 576px) {
  .testimonial-logos img {
    height: 20px;
  }
}

@media (max-width: 576px) {
  .testimonial-logo-special {
    height: 40px !important;
  }
}

/* Testimonial end */

#Testimonial {
  background-color: #232323;
  padding: 10px;
}

#Footer {
  background-color: black;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 25px;
}

.footer-email {
  color: #c7a254;
  font-size: 0.70rem;
  text-decoration: none;
  font-style: normal;
  transition: color 0.2s ease;
}

.footer-email:hover {
  color: #e6c98b;
}

.footer-email:visited, .footer-email:active {
  color: #c7a254;
}

#Home {
  padding-top: 96px !important;
  background-image: url('../../assets/img/dg_home_lg_1024x575.jpg');
  background-size: cover;
  background-position: top center !important;
  background-attachment: fixed;
  background-repeat: no-repeat;
  transition: background-image 0.5s ease-in-out;
  position: relative;
  min-height: 100vh;
  padding-top: 30%;
  padding-bottom: 25px;
}

/* Small screens (sm: up to 767px) */

@media (max-width: 767px) {
  #Home {
    padding-top: 96px !important;
    background-image: url('../../assets/img/dg_home_sm_480x575.jpg');
    background-size: cover;
    background-position: top center !important;
    background-attachment: scroll;
    background-repeat: no-repeat;
    transition: background-image 0.5s ease-in-out;
    position: relative;
    min-height: 100vh;
    padding-top: 65%;
    padding-bottom: 5px;
  }
}

/* Medium screens (md: 768px and up) */

@media (min-width: 768px) and (max-width: 1023px) {
  #Home {
    padding-top: 96px !important;
    background-image: url('../../assets/img/dg_home_md_768x431.jpg');
    background-size: cover;
    background-position: top center !important;
    background-attachment: fixed;
    background-repeat: no-repeat;
    transition: background-image 0.5s ease-in-out;
    position: relative;
    min-height: 100vh;
    padding-top: 30%;
    padding-bottom: 15px;
  }
}

/* Large screens (lg: 1024px and up) */

@media (min-width: 1024px) and (max-width: 1279px) {
  #Home {
    padding-top: 96px !important;
    background-image: url('../../assets/img/dg_home_lg_1024x575.jpg');
    background-size: cover;
    background-position: top center !important;
    background-attachment: fixed;
    background-repeat: no-repeat;
    transition: background-image 0.5s ease-in-out;
    position: relative;
    min-height: 100vh;
    padding-top: 30%;
    padding-bottom: 25px;
  }
}

/* Extra-large screens (xl: 1280px and up) */

@media (min-width: 1280px) {
  #Home {
    padding-top: 96px !important;
    background-image: url('../../assets/img/dg_home_xl_1280x719.jpg');
    background-size: cover;
    background-position: top center !important;
    background-attachment: fixed;
    background-repeat: no-repeat;
    transition: background-image 0.5s ease-in-out;
    position: relative;
    min-height: 100vh;
    padding-top: 20%;
    padding-bottom: 50px;
  }
}

#LeadTagline {
  background-color: #e7e2de;
  color: #555;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  /*gap: 2rem;*/
  padding: 20px 10%;
  align-content: center;
  justify-content: center;
  text-align: center !important;
}

#ThankYouTagline {
  background-color: #e7e2de;
  color: #555;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  /*gap: 2rem;*/
  padding: 20px 10%;
  align-content: center;
  justify-content: center;
  text-align: center !important;
}

#ServicesTagline {
  background-color: #e7e2de;
  color: #555;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  /*gap: 2rem;*/
  padding: 20px 10%;
  align-content: center;
  justify-content: center;
  text-align: center !important;
}

#AboutTagline {
  background-color: #e7e2de;
  color: #555;
  display: flex;
  flex-wrap: wrap;
  /*gap: 2rem;*/
  padding: 20px 10%;
  align-content: center;
  justify-content: center;
  text-align: center !important;
}

#Leadership {
  padding-top: 120px;
  /*padding-bottom: 120px;*/
}

#ContactPg {
  padding-top: 120px;
  /*padding-bottom: 120px;*/
}

#About {
  padding-top: 120px;
  /*padding-bottom: 120px;*/
}

/* Container for the two-column layout */

#ServicesMain {
  display: flex;
  background-color: #f9f5f2;
  justify-content: space-between;
  gap: 2rem;
  padding: 4rem 8%;
}

@media (max-width: 767px) {
  #ServicesMain {
    flex-direction: column;
    padding: 1rem;
    text-align: center;
  }
}

#LeadershipMain {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 10%;
  background-color: #f9f5f2;
}

#CoreValues {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 10%;
  background-color: #f9f5f2;
}

/* Individual value blocks */

.value-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.value-item {
  background-color: #ffffff10;
  border-left: 4px solid #c7a254;
  padding: 1rem;
  border-radius: 6px;
  color: #ffffff;
}

.value-item h4 {
  color: #c7a254;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.value-item p {
  font-size: 0.85rem;
  margin: 0;
}

@media (min-width: 768px) {
  .leadership-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* end values */

.value-heading {
  font-weight: 700 !important;
}

.signature {
  font-family: 'Gaston Villa', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  font-style: italic;
  padding: 0;
  margin: 0 !important;
}

/* The Home carousel */

.carousel-wrapper {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 55%;
  margin: 0;
}

@media (max-width: 767px) {
  .carousel-wrapper {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    margin: 0;
  }
}

@media (max-width: 768px) {
  #Deals {
    background-color: #010d25;
    color: white;
    padding: 10px !important;
    text-align: center;
  }
}

#Deals {
  background-color: #010d25;
  color: white;
  padding: 2rem 1rem;
  text-align: center;
}

#Deals .carousel-inner {
  width: 100%;
}

#Deals .carousel-item {
  padding: 1rem;
}

/* Hide Bootstrap's default arrow images */

#Deals .carousel-control-prev-icon, #Deals .carousel-control-next-icon {
  display: none;
}

/* Custom arrow appearance */

#Deals .custom-carousel-arrow {
  font-size: 4rem;
  color: #a4a7ae;
  background: none;
  border: none;
  text-decoration: none;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.6);
}

#Deals .carousel-control-prev, .carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  height: auto;
  padding: 0 1rem;
  background: none;
  border: none;
  z-index: 2;
}

#Deals .carousel-control-prev {
  left: -2.5rem;
  text-decoration: none;
}

#Deals .carousel-control-next {
  right: -2.5rem;
  text-decoration: none;
}

#Deals .carousel-indicators {
  display: none;
}

/* Button A */

.ButtonA {
  background-color: #192943;
  color: white;
  font-size: 0.75rem;
  padding: 0.5rem 1rem;
  border: 1px solid #667183;
  border-radius: 0.375rem;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  width: auto;
  max-width: max-content;
}

/* Optional hover effect */

.ButtonA:hover {
  background-color: #223654;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.button-wrapper {
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .deals-para {
    font-size: .65rem;
    padding-left: 10px;
    padding-right: 10px;
  }
}

.deals-para {
  font-size: .95rem;
  padding-left: 20px;
  padding-right: 20px;
}

/* End Home Page Deals Etc. */

#WhyUs {
  display: flex;
  flex-direction: column;
  background-color: #f9f5f2;
  padding: 20px 20%;
}

/* Testimonial and Testimonial Carousel */

.test-carousel-wrapper {
  position: relative;
  background-color: #e7e2de;
  width: 100%;
  margin: 0 auto;
}

#Test-Carousel {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

/* Test-Carousel Custom arrow appearance */

#Test-Carousel .custom-carousel-arrow {
  font-size: 2rem;
  color: #667183;
  background: none;
  border: none;
  text-decoration: none;
}

#Test-Carousel .carousel-control-prev, .carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  height: auto;
  padding: 0 1rem;
  background: none;
  border: none;
  z-index: 2;
}

#Test-Carousel .carousel-control-prev {
  left: -2.5rem;
  text-decoration: none;
}

#Test-Carousel .carousel-control-next {
  right: -2.5rem;
  text-decoration: none;
}

#Test-Carousel .carousel-indicators {
  display: none;
}

#Test-Top {
  background-color: white;
  padding-top: 120px;
}

#Test-Wrapper {
  background-color: #fff;
}

@media (max-width: 768px) {
  .testimonial-interior {
    display: flex;
    flex-direction: column !important;
  }
}

.testimonial-interior {
  display: flex;
  flex-direction: row;
}

@media (max-width: 768px) {
  .testimonial-interior-left {
    width: 100% !important;
    padding: 10px;
  }
}

.testimonial-interior-left {
  width: 60%;
  padding: 10px;
  background-color: #faf5f2;
  margin-top: 0;
}

.testimonial-interior-right {
  width: 40%;
  padding: 10px;
  /*border-left: 2px solid #555;*/
  background-color: #ebe1d8;
  margin-top: 0;
}

@media (max-width: 768px) {
  .testimonial-interior-right {
    width: 100%;
    padding: 10px;
  }
}

#Test-Bottom {
  background-color: white;
  padding-top: 120px;
}

.testimonial-top {
  display: flex;
  justify-content: center;
  width: 100%;
  background-color: #faf5f2;
  margin-bottom: 0;
}

.test-signature {
  padding-left: 20px;
  font-style: italic;
}

/* Testimonial Stop */

.test-text {
  font-size: .95rem;
}

/* Services Add-On */

.services-section {
  max-width: 60%;
  margin: 0 auto;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (max-width: 576px) {
  .services-section {
    max-width: 90%;
    margin: 0 auto;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}

.service-item {
  background-color: #ffffff10;
  border-left: 4px solid #c7a254;
  padding: 1.25rem 1rem;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.service-item:hover {
  background-color: #ffffff20;
}

.service-item h4 {
  color: #555;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.service-item p {
  font-size: 0.85rem;
  color: #555;
  margin: 0;
}

/* Leadership Bio Switcher */

.bio-switcher {
  display: flex;
  flex-direction: column-reverse;
  gap: 1rem;
  max-width: 1000px;
  margin: 2rem auto;
  padding: 1rem;
}

.bio-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  align-items: stretch;
}

.bio-buttons button {
  background-color: #192943;
  color: white;
  border: 1px solid #667183;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.bio-buttons button:hover, .bio-buttons button.active {
  background-color: #c7a254;
  color: #010d25;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.bio-contents .bio-content {
  display: none;
  background-color: #ffffff10;
  padding: 1rem;
  border-radius: 6px;
  font-size: .90rem;
}

.bio-contents .bio-content.active {
  display: block;
  padding-top: 0;
}

@media (min-width: 768px) {
  .bio-switcher {
    flex-direction: row;
    align-items: flex-start;
  }
}

@media (min-width: 768px) {
  .bio-buttons {
    flex-direction: column;
    justify-content: flex-start;
    min-width: 180px;
  }
}

@media (min-width: 768px) {
  .bio-contents {
    flex: 1;
  }
}

/* End Bio Switcher */

/* Services Add-On End */

#LeadTagText {
  clear: both;
  max-width: 900px;
}

#ServicesTagText {
  clear: both;
  max-width: 900px;
}

/* Leadership Area */

.leadership-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.leader-item {
  background-color: #ffffff10;
  border-left: 4px solid #c7a254;
  padding: 1rem;
  border-radius: 6px;
  color: #ffffff;
}

.leader-item h4 {
  color: #c7a254;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.leader-item p {
  font-size: 0.85rem;
  margin: 0;
}

@media (min-width: 768px) {
  .leadership-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  #BioSwitcher {
  }
}

#BioSwitcher {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 10%;
  padding-right: 10%;
}

#Biographies {
  background-color: #f9f5f2;
  margin: 0;
}

/* Contact Tagline */

#ContactTagline {
  background-color: #e7e2de;
  color: #555;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 20px 0;
  align-content: center;
  justify-content: center;
  text-align: center !important;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding-left: 15%;
  padding-right: 15%;
  box-sizing: border-box;
}

.contact-left, .contact-right {
  flex: 0 1 auto;
  min-width: 250px;
}

.contact-left {
  text-align: center;
  max-width: 300px;
}

.contact-right {
  text-align: center;
  max-width: 300px;
}

.contact-left h3, .contact-right h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.1rem;
  line-height: 1.1;
}

.contact-left p, .contact-right p, .contact-email {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.3;
}

.contact-email {
  color: #555;
  text-decoration: none;
  font-size: 0.80rem;
  display: inline-block;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.contact-email:hover {
  color: #c7a254;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
}

/* Responsive: stack for small screens */

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    padding: 0 5%;
  }
}

@media (max-width: 768px) {
  .contact-left, .contact-right {
    width: 100%;
    margin: 0;
    max-width: 100%;
  }
}

/* End Contact Tagline */

/* Contact Form */

#ContactMain {
  display: flex;
  background-color: #f9f5f2;
  justify-content: center;
  padding: 2rem 4%;
}

.contact-form {
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-row {
  display: flex;
  gap: 0.5rem 1rem;
  flex-wrap: wrap;
  width: 100%;
}

/* Large screens */

.form-group {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.form-group label {
  font-weight: 500;
  font-size: 0.75rem;
  margin-bottom: 0.2rem;
  color: #555;
}

.form-control {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.85rem;
  background-color: white;
  color: #333;
  width: 100%;
}

/* Multiline input gets full width */

.full-width {
  width: 100%;
}

/* Submit button */

.btn {
  background-color: #192943;
  color: white;
  font-size: 0.75rem;
  padding: 0.4rem 1rem;
  border: none;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  cursor: pointer;
  width: fit-content;
  align-self: flex-start;
}

.btn:hover {
  background-color: #223654;
}

/* ✅ Responsive: stack inputs on small screens */

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 0.75rem;
  }
}

@media (max-width: 768px) {
  .form-group {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .form-group label {
    margin-bottom: 0.15rem;
  }
}

@media (max-width: 768px) {
  #ContactMain .btn {
    width: 100%;
    align-self: stretch;
    text-align: center;
  }
}

#ContactMain .btn:hover {
  background-color: #c7a254;
  color: #010d25;
}

#ContactMain .btn:focus {
  background-color: #c7a254;
  color: #010d25;
}

