@import url("https://fonts.googleapis.com/css2?family=Kufam:ital,wght@0,400..900;1,400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kufam:ital,wght@0,400..900;1,400..900&family=Murecho:wght@100..900&display=swap");

/* ====================
  Reset Default CSS Start
  ==================== */

:root {
  --primary-font: "Kufam", sans-serif;
  --secondary-font: "Murecho", sans-serif;
  --primary-color: #6be6e65d;
  --secondary-color: #a6af2e;
  --btn-hover: #a6af2e;
  --bg-1: #f6f9ffb2;
  --bg-2: #000000;
  --text-color-1: #2a5055;
  --text-color-2: #424242;
  --text-color-3: #ffffff;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
}

a {
  text-decoration: none !important;
}

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

button {
  border: none;
  outline: none;
}

input {
  outline: none;
}

.container {
  max-width: 1340px !important;
}

/*====================
Reset Default CSS End
====================*/

/* Preloader Start */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-2);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden;
}

.center-circle {
  width: 130px;
  height: 130px;
  background: none;
  border-radius: 50%;
  border: 3px solid var(--secondary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: pulseOutline 3s infinite;
}

#preloader-logo {
  width: 80px;
  opacity: 0;
  animation: fadeIn 2.5s ease-in-out forwards,
    zoomBounce 2.5s ease-in-out infinite;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes pulseOutline {
  50% {
    box-shadow: 0 0 0 30px rgba(250, 180, 29, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(169, 255, 30, 0.5);
  }

  0% {
    box-shadow: 0 0 0 0 rgba(169, 255, 30, 0.5);
  }
}

@keyframes zoomBounce {
  0% {
    transform: scale(1) translateY(0);
  }

  20% {
    transform: scale(1.1) translateY(-4px);
  }

  40% {
    transform: scale(1) translateY(0);
  }

  60% {
    transform: scale(1.1) translateY(-4px);
  }

  80% {
    transform: scale(1) translateY(0);
  }

  100% {
    transform: scale(1) translateY(0);
  }
}

/* Preloader End */

/* Navbar Start */
#header .brand {
  width: 150px;
}

#header .brand img {
  width: 100%;
}

#header .logo_name .brand {
  width: 100%;
  display: flex;
  align-items: center;
}

#header .logo_name .brand img {
  width: 140px;
}

#header {
  position: sticky;
  top: 0px;
  left: 0px;
  width: 100%;
  height: auto;
  z-index: 100;
  padding: 10px 0;
  margin: 0 auto;
  background-color: var(--bg-2);
}

#header .navbar {
  padding: 0px;
}

#header .navbar #menu .menu_link {
  padding: 24px 0px !important;
  text-transform: uppercase !important;
}

#header .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-bottom: 1px solid var(--ac-1);
}

#header .navbar .menu_heading_box {
  display: flex;
  align-items: center;
  padding: 10px 0;
  padding-bottom: 30px;
  justify-content: space-between !important;
}
#header .navbar .sidebar_heading {
  display: none;
}
#header .navbar .close_icon {
  background: var(--ac-2);
  border-radius: 6px;
  width: 35px;
  height: 35px;
}
#header .navbar .close_icon i {
  color: var(--text-color-3);
  font-size: 18px;
}

#header .menu_item {
  position: relative;
  display: inline-block;
  margin: 0px 10px;
}
#header .menu_link {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: inherit;
  font-size: 16px;
  font-family: var(--secondary-font);
  font-weight: 600;
  color: var(--text-color-3);
  cursor: pointer;
  transition: 0.3s;
}
#header .menu_item .active {
  color: var(--secondary-color);
  
}

#header .menu_dropdown .submenu_link.active {
  background: var(--primary-color);
  
}

#header .menu_link .fa-angle-down {
  transition: 0.3s;
  margin-left: 5px !important;
  color: var(--text-color-3);
}

#header .menu_item:hover .menu_link {
  outline: none;
  color: var(--secondary-color);
}
#header .menu_item .menu_link.active {
  color: var(--secondary-color);
}

#header .menu_item:hover .fa-angle-down {
  rotate: 180deg;
  color: var(--secondary-color);
}

#header .contact_us_btn {
  background: var(--bg-1);
  position: relative;
  display: inline-block;
  padding: 12px 20px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  z-index: 1 !important;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}
#header .contact_us_btn span {
  color: var(--bg-2);
  transition: 0.4s;
  font-family: var(--secondary-font);
  font-size: 18px;
  font-weight: 600;
}

#header .contact_us_btn::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--secondary-color);
  transition: 0.4s;
  z-index: -1 !important;
}

#header .contact_us_btn:hover span {
  color: var(--text-color-1);
}

#header .contact_us_btn:hover::after {
  height: 100%;
}

#header .social {
  display: none;
}

#header .submenu {
  position: absolute;
  top: 73px;
  left: 0;
  min-width: 13rem;
  max-height: auto !important;
  margin-bottom: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(1rem);
  border-radius: 0 0 0.25rem 0.25rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  background-color: var(--bg-2);
  transition: 0.2s;
  border-radius: 12px;
  overflow: hidden;
  z-index: 10;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}

#header .submenu_item {
  display: block;
  margin-top: 0.75rem;
}

#header .submenu_item:nth-child(1) {
  margin-top: 0px;
}

#header .submenu_link {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  line-height: inherit;
  cursor: pointer;
  padding: 8px 20px;
  color: var(--secondary-color);
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
#header .submenu_link:hover {
  outline: none;
  color: var(--secondary-color);
  background: var(--primary-color);
}

#header .burger {
  position: relative;
  display: none;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  opacity: 0;
  visibility: hidden;
  background: transparent;
}

#header .overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease-in-out;
  background-color: rgba(0, 0, 0, 0.65);
}

@media screen and (max-width: 1200px) {
  #header .brand {
    width: 140px;
  }
}

@media screen and (max-width: 992px) {
  #header .navbar .sidebar_heading {
    display: block;
  }

  #header .navbar {
    display: block;
    position: fixed;
    top: 0px;
    left: -100%;
    width: 75%;
    height: 100%;
    z-index: 10;
    opacity: 0;
    padding-top: 0px;
    overflow-y: auto;
    visibility: hidden;
    box-shadow: var(--shadow-medium);
    background-color: var(--color-white-100);
    transition: all 0.5s ease;
  }
  #header .navbar.active {
    left: 0rem;
    opacity: 1;
    visibility: visible;
    background: var(--text-color-1);
    overflow-x: hidden;
    padding: 10px;
  }
}

@media only screen and (min-width: 993px) {
  #header .menu_dropdown:hover > .submenu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
  }
}

@media screen and (max-width: 992px) {
  #header .menu {
    width: 100%;
    height: auto;
    padding: 1rem 0;
  }
  #header .menu_item {
    display: block;
    margin: 0 auto;
  }
  
  #header .menu_link {
    justify-content: space-between;
  }

  #header .navbar #menu .menu_link {
    padding: 10px 10px !important;
    font-size: 16px;
  }

  #header .navbar #menu .menu_link {
    border-radius: 8px;
    margin-top: 6px;
  }

  #header .navbar #menu .menu_link:hover {
    background: var(--shade-1);
    color: var(--secondary-color);
  }

  #header .contact_us_btn {
    display: none;
  }

  #header .social {
    border-top: 1px solid var(--ac-1);
    margin-top: 20px;
  }

  #header .social .item {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 20px 0;
    transition: 0.4s;
  }

  #header .social .link:hover i {
    color: var(--primary-color);
  }

  #header .social .item i {
    font-size: 26px;
    color: var(--secondary-color);
    transition: 0.4s;
  }

  #header .social .mobile {
    display: block;
    width: 100%;
    border-radius: 30px;
    padding: 10px 20px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

  #header .social .mobile span {
    font-size: 16px;
  }

  #header .social {
    display: block;
  }
}

@media only screen and (max-width: 992px) {
  #header .submenu {
    position: relative;
    top: 4px;
    left: 0;
    width: 100%;
    max-height: 0px;
    padding: 0px !important;
    border-radius: 12px;
    background: var(--bg-2) !important;
    border: none;
    outline: none;
    opacity: 1;
    overflow: hidden;
    visibility: visible;
    transform: translateY(0px);
    box-shadow: none;
    background: transparent;
  }
  #header .submenu .submenu_link {
    display: block;
    color: var(--secondary-color);
    margin: 8px 0;
    padding: 6px 10px;
    transition: 0.4s;
  }

  #header .submenu .submenu_link:hover {
    background: var(--primary-color);
    color: var(--bg-2);
  }

  #header .submenu .submenu_item {
    margin: 5px 0;
  }
  #header .submenu .submenu_item:nth-child(1) {
    margin-top: 12px;
  }

  #header .wrapper {
    padding: 10px;
  }
  #header .submenu_item:nth-child(1) {
    margin-top: 0px !important;
  }

  .menu_item.active .menu_link {
    background-color: var(--shade-1) !important;
  }
  .menu_item.active .menu_link .fa-angle-down {
    rotate: 180deg;
  }

  .menu_dropdown.active {
    margin-bottom: 10px !important;
  }

  .menu_dropdown.active .submenu {
    padding: 20px !important;
  }
}

@media only screen and (max-width: 992px) {
  #header .overlay.active {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  #header .burger {
    display: block;
    opacity: 1;
    visibility: visible;
  }
}
/* Navbar End */

/* Map Start */
.map-section {
  position: relative;
  width: 100%;
  height: 430px;
  background: var(--bg-1);
}

.map-section iframe {
  width: 100%;
  height: 100%;
}

.contact-box-wrapper {
  position: absolute;
  top: 50px;
}

.contact-box {
  width: 100%;
  margin-top: -12px;
  background: var(--bg-1);
  padding: 30px;
  border-radius: 24px;
  border: 1px solid var(--Accent-v2-Ash-1, #c9c9c9);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-box p {
  font-size: 16px;
  font-family: var(--secondary-font);
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--text-color-2);
}

.contact-box .contact {
  display: flex;
  flex-direction: column;
}

.contact-box .contact a {
  font-size: 16px;
  font-family: var(--secondary-font);
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--text-color-2);
}

.contact-box h2 {
  font-size: 22px;
  font-family: var(--primary-font);
  font-weight: 600;
  margin-bottom: 30px;
}

.contact-box .direction-btn {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--secondary-font);
  background: transparent;
  color: var(--text-color-1);
  border: 1px solid var(--secondary-color);
  padding: 10px 30px 12px 30px;
  cursor: pointer;
  border-radius: 40px;
  transition: 0.4s;
  margin: 30px 0px 10px 0px;
}

.contact-box .direction-btn:hover {
  background: var(--secondary-color);
}

.social-icons {
  display: flex;
  align-items: center;
  margin-top: 10px;
  gap: 10px;
}

.social-icons a i {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  padding: 10px;
  border-radius: 50%;
  color: var(--text-color-3);
  background: var(--text-color-1);
  border: 1px solid var(--text-color-1);
  transition: 0.4s;
}

.social-icons a i:hover {
  border: 1px solid var(--secondary-color);
  background: var(--secondary-color);
  color: var(--bg-2);
}

@media screen and (max-width: 992px) {
  .map-section {
    height: 430px;
  }

  .contact-box-wrapper {
    width: 95%;
    top: 40px;
  }

  .contact-box {
    max-width: 40%;
    padding: 30px;
  }
}

@media screen and (max-width: 768px) {
  .map-section {
    width: 100%;
    height: 420px;
    padding: 0px !important;
  }

  .contact-box {
    max-width: 50%;
    padding: 30px;
  }

  .contact-box p {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .contact-box h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .contact-box .direction-btn {
    font-size: 18px;
    padding: 6px 20px 8px 20px;
    margin: 10px 0px 10px 0px;
  }
}

@media screen and (max-width: 576px) {
  .contact-box {
    display: none;
  }

  .map-section {
    height: 440px;
  }
}

/* Map End */

/* Footer Start */
#footer {
  background: var(--bg-2);
  padding: 30px 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-content .footer-logo {
  width: 120px;
  margin: 10px 0px 20px 0px;
}

.footer-content .footer-logo img {
  width: 200px;
}

#footer .footer-item ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
}

#footer .footer-item ul li {
  margin: 5px 12px 10px 12px;
}

#footer .footer-item ul li a {
  font-size: 16px;
  color: var(--text-color-3);
  font-family: var(--secondary-font);
  font-weight: 500;
  transition: 0.4s;
}

#footer .footer-item ul li a:hover {
  color: var(--secondary-color);
}

#footer p {
  font-size: 16px;
  margin-top: 40px;
  padding: 0 60px;
  font-family: var(--secondary-font);
  color: var(--text-color-2);
}

/* Footer End */

/* Back to top button Start */
.back-to-top {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 60px;
  right: 40px;
  display: none;
  background-color: transparent;
  border: 4px solid var(--secondary-color);
  border-radius: 50%;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.back-btn-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.back-to-top i {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--text-color-1);
  width: 44px;
  font-size: 24px;
  height: 44px;
  border-radius: 50%;
  background: var(--secondary-color);
}

.back-to-top.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.back-to-top.hide {
  opacity: 0;
  transform: translateY(20px);
}

/* Back to top button End */
