.main-nav {
  background: #fff8ee;
}
body {
  background-color: #f8f9fa;
}
.page-title-area {
  position: relative;
  z-index: 2;
}
.about .feature-area {
  background-color: transparent;
}
.page-title-area::after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #000;
  opacity: 0.7;
  top: 0;
  left: 0;
  z-index: 1;
}
.page-title-content {
  z-index: 3;
}
#toTop {
  bottom: 100px;
  right: -10px;
}
/* Card */
.card {
  position: relative;
  padding: 40px;
  background-color: white;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  flex: 1;
  height: 480px;
}
@media (max-width: 768px) {
  .card {
    height: 450px;
  }
}
.card:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: calc(-100% + 5px);
  width: 100%;
  height: 100%;
  background-color: #fdb819;
  z-index: 1;
  transition: 0.5s;
}

.card:hover:before {
  bottom: 0;
}

.card .content {
  position: relative;
  color: #777;
  z-index: 2;
  transition: 0.5s;
}

.card:hover .content {
  color: white;
}
/* Footer */
.service-page .subscribe-area {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-page .subscribe-area p {
  max-width: 900px;
  width: 100%;
}
/* Section */
.split-section {
  position: relative;
  overflow: hidden;
  z-index: 3;
}

.split-image {
  background-image: url("https://picsum.photos/800/600");
  background-size: cover;
  background-position: center;
  min-height: 500px;
}

.split-text {
  background-color: #fff8ee;
  padding: 50px;
  margin-left: -100px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  z-index: 2;
  position: relative;
}

@media (max-width: 991.98px) {
  .split-text {
    margin-left: 0;
    margin-top: -50px;
  }
}
.bg-image {
  position: absolute;
  opacity: 32%;
  pointer-events: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  right: 0;
}
.service-page footer {
  margin-top: 150px;
}

.split-section .flex-row-reverse .split-text {
  margin-right: -100px;
}
@media (max-width: 991.98px) {
  .split-section .flex-row-reverse .split-text {
    margin-right: 0;
  }
}
/* Menu */
@media screen and (max-width: 991px) {
  .main-nav {
    display: block !important;
  }
}

@media only screen and (max-width: 767px) {
  .subscribe-area {
    top: -162px;
  }
}
.menu-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fdb819;
  z-index: 9999;

  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.menu-container ul li {
  list-style: none;
  text-align: center;
}

.menu-container a {
  color: #333;
  text-decoration: none;
  font-size: 3em;
  padding: 5px 20px;
  display: inline-flex;
  font-weight: 700;
  transition: 0.5s;
}
.has-dropdown .nav-sublinks {
  padding-top: 20px;
}
.menu-container a.nav-sublink {
  font-size: 1.5em;
  padding: 10px 20px;
}
.menu-container ul:hover a {
  color: #0002;
}

.menu-container ul li a:hover {
  color: #000;
  background: #fff;
}

.menu-container a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 4em;
  z-index: -1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 500px;
  opacity: 0;
  transition: letter-spacing 0.5s;
  width: 100vw;
  height: 100vh;
}
.menu-container a:hover:before {
  content: attr(data-text);
  opacity: 1;
  letter-spacing: 10px;
}

.menu-container li:nth-child(1) a:before {
  background: #fdb819;
}

.menu-container ul li:nth-child(2) a:before {
  background: #fdb819;
}
.menu-container ul li:nth-child(3) a:before {
  background: #fdb819;
}
.menu-container ul li:nth-child(4) a:before {
  background: #fdb819;
}
.menu-container ul li:nth-child(5) a:before {
  background: #fdb819;
}
.close-button {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 50px;
  color: white;
  cursor: pointer;
  transition: 0.5s;
}
.close-button:hover {
  color: #333;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .nav-sublinks {
    display: block !important;
  }
}
.menu-container ul {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .menu-container ul {
    overflow-y: scroll;
  }
}
/* Contact */
.card-body {
  border-color: #fdb819;
}
.contact-card {
  background: #fff8ee;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 30px 20px;
  text-align: center;
  transition: 0.3s;
  height: 100%;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.contact-icon {
  font-size: 2.5rem;
  color: #fdb819;
  margin-bottom: 15px;
}

.contact-title {
  font-weight: 700;
  margin-bottom: 5px;
  color: #333;
}

.contact-text {
  color: #555;
  font-size: 1rem;
}
.card-header span {
  color: #fff !important;
}
.popup-form {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.4s ease;
}

.popup-content {
  background: #fff;
  padding: 50px;
  width: min(90vw, 600px);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  text-align: center;
  animation: slideUp 0.5s ease;
}

.popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  color: #999;
  cursor: pointer;
  transition: color 0.2s ease;
}

.popup-close:hover {
  color: #000;
}

.popup-icon {
  font-size: 60px;
  color: #ff7f07;
  margin-bottom: 20px;
}

#popup-message {
  font-size: 26px;
  color: #333;
  margin: 20px 0;
  line-height: 1.5;
}

.popup-button {
  margin-top: 20px;
  padding: 14px 32px;
  background-color: #ff7f07;
  color: white;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.popup-button:hover {
  background-color: #e96e00;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.hero-video-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
  object-fit: cover;
}

.mdp-readabler-trigger-button-box button {
  background-color: #da9f17;
}

.service-page .container .content p {
  margin-top: 30px;
}
.cookie-popup-container .tab + label {
  font-size: 14px;
  font-weight: bolder;
}

.why-choose {
  position: relative;
}
.why-choose h2,
.why-choose p,
.why-choose ul li {
  position: relative;
  z-index: 2;
  color: #e0e0e0;
}
.why-choose::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.4;
  top: 0;
  left: 0;
  z-index: -1;
}
