@font-face {
  font-family: "Gotham";
  src: url("/fonts/gotham-300.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Gotham";
  src: url("/fonts/gotham-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Gotham";
  src: url("/fonts/gotham-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Gotham";
  src: url("/fonts/gotham-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
}

/* General header styles */
.slide-inner .container {
  padding-top: 100px;
}
.slide-btn iframe {
  width: 480px;
  height: 270px;
}
#new-header {
  background-color: #fff;
  color: #000;
  padding: 0px 20px;
  position: fixed;
  top: 0;
  width: 100%;
  align-items: center;
  display: flex;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

#new-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100% !important;
}

#new-logo {
  font-size: 24px;
  font-weight: bold;
}

/* Desktop menu styles */
#new-desktop-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  text-align: center;
}
#new-desktop-menu ul {
  display: flex;
  align-items: center;
  margin-bottom: 0 !important;
}

#desktop-menu-list {
  list-style: none;
  display: inline-flex;
  padding: 0;
  gap: 40px;
  display: flex;
}

#desktop-menu-list li {
  position: relative;
  /* margin: 0 15px; */
}

#desktop-menu-list li a {
  color: #000;
  font-weight: 700;
  text-decoration: none;
  padding: 8px 12px;
  display: block;
  font-size: 20px;
}

/* Dropdown menu styles */
#about-dropdown-menu,
#people-dropdown-menu,
#work-dropdown-menu {
  position: absolute;
  top: 95%;
  left: -120px;
  background-color: #e6e9f2;
  list-style: none;
  display: none !important;
  padding: 10px 0 !important;
  border-radius: 6px;
  width: 330px;
  padding: 15px 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
#about-dropdown-menu:before,
#people-dropdown-menu::before,
#work-dropdown-menu::before {
  position: absolute;
  left: 50%;
  bottom: 100%;
  content: "";
  margin: 0 0 0 -1em;
  border: 1em solid transparent;
  border-bottom-color: #e6e9f2;
  font: 16px;
}
#desktop-menu-list li:hover .dropdown-menu {
  display: block !important;
  z-index: 10000 !important;
}
#desktop-menu-list .dropdown a {
  padding: 50px 20px !important;
}
#desktop-menu-list .dropdown-menu a {
  padding: 10px 20px !important;
}
#about-dropdown-menu li a,
#people-dropdown-menu li a,
#work-dropdown-menu li a {
  color: #000;
  display: block;
  color: #000000;
  font-weight: 700;
}

#about-dropdown-menu li a:hover,
#people-dropdown-menu li a:hover,
#work-dropdown-menu li a:hover {
  background-color: #0e0e0e;
  color: #fff;
}

/* Hamburger menu styles */
#hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  z-index: 1000;
}

/* Sidebar styles */
.mobile-sidebar {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: -100%;
  width: 270px;
  height: 100%;
  background-color: #fff;
  color: #000;
  padding: 20px;
  transition: left 0.3s ease;
}

.show-sidebar {
  right: 0;
}

/* Dropdown menu styles for mobile */
.mobile-sidebar .dropdown-menu {
  display: none;
  padding-left: 15px;
  background-color: #f0f0f0;
}

/* Show dropdown on mobile when the class is added */
.mobile-sidebar .dropdown-menu.show-dropdown {
  display: block;
}

/* Close button styles */
.close-menu {
  font-size: 48px;
  text-align: right;
  cursor: pointer;
}

/* Mobile menu styles */
#mobile-sidebar-list {
  list-style: none;
  padding: 0;
}

#mobile-sidebar-list li {
  position: relative;
}

#mobile-sidebar-list li a {
  color: #000;
  text-decoration: none;
  padding: 10px 0;
  display: block;
  font-size: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#mobile-sidebar-list li .dropdown-menu {
  display: none;
  position: relative;
  padding-left: 15px;
  background-color: #ffffff;
}

#mobile-sidebar-list li .dropdown-menu li a {
  padding: 10px 15px;
}
#mobile-sidebar-list {
  overflow-y: auto;
  height: 800px;
}

/* Dropdowns for mobile */
#mobile-about-dropdown-menu,
#mobile-people-dropdown-menu,
#mobile-work-dropdown-menu {
  display: none;
}

#mobile-sidebar-list li.show .dropdown-menu {
  display: block;
}
/* Dropdown menu visibility on mobile */
.dropdown-menu {
  display: none;
  /* Add other styles like background, padding, etc. */
}

.show-dropdown {
  display: block;
  /* You can add transition or animation here if you want */
}
.address-margin-top img {
  height: 120px !important;
}
.address-margin-top address {
  font-size: 1.5rem;
}
footer {
  background-color: #000000 !important;
}
/* Mobile styles */
@media screen and (max-width: 768px) {
  #new-header {
    padding: 10px 0px;
  }
  #hamburger {
    display: block;
    position: relative;
    z-index: 1000;
  }

  #new-desktop-menu {
    display: none;
  }

  #mobile-sidebar-list li a {
    font-size: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  #mobile-sidebar-list li .dropdown-menu {
    display: none;
    /* padding-left: 15px; */
    margin-bottom: 15px;
    background-color: #ffffff;
    border: 0;
  }

  #mobile-sidebar-list li.show .dropdown-menu {
    display: block;
  }
  .address-margin-top {
    margin-top: 30px;
  }
  .slide-btn iframe {
    width: 280px;
    height: 170px;
  }
}

/* landing page */

/* Hero Section */
.hero {
  background: #000000;
  color: #ffffff;
  padding: 4rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 130px;
  min-height: 80vh;
}

.hero h1 {
  font-size: 3.625rem;
  font-weight: 800;
  margin-bottom: 2rem;
  font-family: "Gotham", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: -0.03rem;
}

.alert-message p {
  font-family: "Gotham", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  line-height: 30.5px;
  font-size: 30px;
  border-radius: 20px;
  background-color: #ffffff;
  padding: 30px 25px;
  max-width: 900px;
  margin: 0 auto 1rem;
  color: #000;
}
.highlight {
  color: white;
  font-weight: 800;
  text-decoration: underline;
}
.contact-options {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.contact-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  width: 300px;
  color: #000000;
}
.box-outer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.hero-box {
  background: #000000;
  color: #ffffff;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 130px;
  min-height: 80vh;
}
.inside-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.rotated-text {
  text-align: start;
  display: flex;
  justify-content: end;
  align-items: end;
}
.rotate {
  rotate: -90deg;
  left: 30px;
  right: 0px;
  bottom: -10px;
}
.position-absolute.font.rotate {
  white-space: nowrap; /* Prevent text wrapping */
  display: inline-block; /* Ensure it's inline */
}

.box-text {
  width: 200px;
  font-size: 23px;
  line-height: 30px;
  font-weight: 400;
}
.font {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
}
.boxes {
  background-color: #ffffff;
  color: #000;
  min-width: 557px;
  border-radius: 16px;
  padding: 43px 38px;
  min-height: 557px;
  display: flex;
  justify-content: space-between;
}
.position-end {
  display: flex;
  align-items: end;
}
/* Services Section */
.services {
  background: #ffffff;
  padding: 4rem 2rem;
  text-align: center;
  color: #000000;
}
.title1-underline {
  padding-top: 30px;
  filter: contrast(0) brightness(2);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 800px;
  margin: 2rem auto;
}
.services-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}
.services-header h2 {
  font-size: 3.625rem;
  margin-left: 20px;
  font-weight: 800;
  font-family: "Gotham", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: -0.03rem;
}
.service-btn {
  font-family: "Gotham", "Helvetica Neue", Arial, sans-serif;
  background: #000000;
  font-size: 20px;
  font-weight: 800;
  padding: 1rem;
  border-radius: 30px;
  color: #ffffff;
  text-decoration: none !important;
}
.card-btn {
  font-family: "Gotham", "Helvetica Neue", Arial, sans-serif;
  background: #000000;
  display: flex;
  font-size: 28px;
  font-weight: 800;
  padding: 2rem;
  border-radius: 30px;
  color: #ffffff;
  text-decoration: none !important;
}
.card-btn:hover {
  background-color: #0e0e0ede;
  color: #ffffff;
}
.quotes {
  position: relative;
}
.quotes::before {
  position: absolute;
  content: "";
  display: block;
  right: 0px;
  width: 100px;
  height: 100px;
  background: url("/images/quote.svg") no-repeat center top;
  background-size: contain;
  top: -100px;
  right: 0;
}

.service-btn:hover {
  background-color: #0e0e0e83;
  color: #000000;
}
.boxes:hover {
  background-color: #000;
  color: #ffffff;
}
/* Bottom Banner */
.bottom-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #ffd7ba;
  padding: 1rem;
}

.contact-banner {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.box-outer {
  position: relative; /* Ensure the pseudo-element is positioned relative to this box */
}

.box-outer::before {
  position: absolute;
  content: "";
  display: block;
  top: 50%; /* Start at the vertical center */
  left: 50%; /* Start at the horizontal center */
  transform: translate(-45%, -50%); /* Adjust to truly center the image */
  width: 500px; /* Set desired width */
  height: 500px; /* Set desired height */
  z-index: 10;
  background: url("/images/birds.png") no-repeat center center;
  background-size: contain; /* Adjust to keep the image aspect ratio */
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-options {
    flex-direction: column;
    align-items: center;
  }
  .services-grid,
  .box-outer {
    grid-template-columns: 1fr;
  }
  .boxes {
    min-width: 350px;
    max-width: 300px;
    min-height: 400px;
  }

  .testimonial-content {
    flex-direction: column;
  }
  .hero {
    margin-top: 80px;
  }
  .hero h1,
  .services-header h2 {
    font-size: 2rem;
  }

  .alert-message p {
    font-size: 20px;
    line-height: 24px;
  }
  .card-btn {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .text-margin {
    margin-top: 150px !important;
  }
  .address-margin-top img {
    height: 60px !important;
  }
  .address-margin-top address {
    font-size: 1rem;
  }
  .box-outer::before {
    display: none;
  }
}
