@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Italiana&family=Poppins:wght@300;400;500;600;700&display=swap");

:root {
  --italiana: "Italiana", serif;
  --dm-sans: "DM Sans", sans-serif;
  --poppins: "Poppins", sans-serif;
  --brown: #b19540;
  --blue: #7464ff;
  --red: #ff1f26;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--dm-sans);
}

body {
  overflow-x: hidden;
  width: 100%;
  margin: 0 auto;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

h1,
h2,
h2 span,
h3,
h4,
h5,
h6 {
  font-family: var(--poppins);
  margin: 0;
  color: #202020;
}

h1 {
  font-weight: 500;
  font-size: 56px;
  margin: 0 0 20px 0;
}

a,
ul,
li,
p {
  font-family: var(--dm-sans);
  color: #202020;
}

p {
  line-height: 1.7em;
  font-size: 1.1em;
}

.container {
  width: 95%;
  margin: auto;
  padding: 20px 30px;
}

.blue {
  color: var(--blue);
}

.red {
  color: var(--red);
}

/* ===== Header - Navbar ====== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 4rem;
  background: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.logo {
  width: 17%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.logo img {
  width: 100%;
  border-radius: 10px;
}

.navbar .nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: -1;
}

.navbar ul {
  display: flex;
  justify-content: flex-end;
  padding: 0;
  list-style: none;
}

.navbar ul li {
  padding: 0.5rem 0.6rem;
  transition: 0.3s;
  margin: 0 10px 0 0;
}

.navbar ul li a {
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  font-family: var(--poppins);
  line-height: 27px;
  letter-spacing: 2px;
  padding-bottom: 10px;
  text-align: center;
  position: relative;
  transition: 0.5s;
}

.navbar ul li a::after,
.popup-mobilemenu .content .mainmenu-nav .navbar-list1 li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2.3px;
  left: 0;
  transition: 0.5s;
  background-color: var(--brown);
  bottom: 3px;
}

.navbar ul li a:hover::after,
.navbar ul li a.active::after,
.popup-mobilemenu .content .mainmenu-nav .navbar-list1 li a.active::after {
  width: 60%;
}

.navbar ul li a.active {
  color: #fff;
}

.navbar.scroll-on,
.navbar.responsive-navbar.scroll-on {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 0.125rem 1.75rem 0 rgb(0, 0, 0, 0.3);
  transition: all 0.15s ease-in-out 0s;
  background: #fff;
  z-index: 1000;
  animation: headerSlideDown 0.5s ease forwards;
}

.navbar.scroll-on ul li a {
  color: #202020;
}

@keyframes headerSlideDown {
  0% {
    margin-top: -100px;
    opacity: 0;
  }

  30% {
    margin-top: -50px;
    opacity: 0;
  }

  100% {
    margin-top: 0;
    opacity: 1;
  }
}

/* ===== Mobile Navbar ===== */
#bar {
  display: none;
  color: var(--brown);
  font-size: 26px;
}

.popup-mobilemenu {
  z-index: 1000000;
  position: fixed;
  content: "";
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(119, 114, 104, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out;
}

.popup-mobilemenu.menu-open {
  visibility: visible;
  opacity: 1;
}

.popup-mobilemenu .menu-inner {
  padding: 25px 40px;
  width: 375px;
  z-index: 999;
  position: absolute;
  background: #202020;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 10px 0 rgb(0 0 0 / 70%);
  opacity: 0;
  right: -150px;
  transition: all 0.5s ease-out;
}

.popup-mobilemenu.menu-open .menu-inner {
  opacity: 1;
  right: 0;
  overflow-y: auto;
}

.popup-mobilemenu .menu-inner .menu-top {
  border-bottom: 1px solid var(--brown);
  padding: 0 0 10px 0;
  display: flex;
  justify-content: flex-end;
}

.menu-top i {
  color: var(--brown);
  font-size: 29px;
}

.popup-mobilemenu .content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-bottom: 20px;
  margin-top: 20px;
}

.popup-mobilemenu .content .mainmenu-nav .navbar-list1 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin: 0;
  margin-top: 20px;
  text-align: right;
}

.popup-mobilemenu .content .mainmenu-nav .navbar-list1 li {
  /* display: inherit; */
  margin: 5px 0px !important;
  margin-bottom: 15px !important;
  width: 100%;
}

.popup-mobilemenu .content .mainmenu-nav .navbar-list1 li a {
  color: #fff;
  position: relative;
  transition: 0.4s;
  font-size: 18px;
  text-transform: capitalize;
  letter-spacing: 2px;
  font-family: var(--dm-sans);
  margin: 0;
  display: inline-block;
  font-weight: 400;
  padding: 0;
  padding-bottom: 10px;
  opacity: 1;
}

.popup-mobilemenu .content .mainmenu-nav .navbar-list1 li a.active {
  color: var(--brown);
}

nav#sideNavMobile {
  width: 100%;
}

/* ====== Landing Section ===== */
.landing {
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: url("../images/main-bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  background-color: rgba(0, 0, 0, 0.7);
  background-blend-mode: overlay;
}

.landing::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 160px;
  background: linear-gradient(to top, #050505, transparent);
  z-index: 9;
}

.landing .container {
  position: relative;
}

.landing .main-left {
  width: 100%;
  padding: 5rem 5rem 0rem 5rem;
}

.landing h1 {
  margin-bottom: 10px;
  line-height: 1.1em;
  font-weight: 500;
  color: #fff;
}

.landing h2 {
  font-size: 1.6em;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 10px;
  color: #fff;
}

.landing h2 .blue {
  font-weight: 600;
}

.btn {
  padding: 15px 20px;
  border: 2px solid var(--brown);
  background: var(--brown);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  margin-top: 20px;
  margin-right: 10px;
  transition: 0.5s;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  z-index: 10;
}

.btn.contact-btn {
  background: #fff;
  border-color: #fff;
  color: #202020;
}

.btn:hover {
  background: transparent;
  color: #fff;
}

.services.home {
  background: #202020;
}

.services.home h2 {
  color: #fff;
}

.services.home .card {
    background: none;
}

.services.home .card-title h4 {
  color: #fff;
}

.services.home .card:hover::before {
  opacity: 0;
}

.mission.home {
  padding: 30px !important;
}

.mission.home p {
  width: 50%;
  text-align: center;
  display: flex;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.mission .images {
  display: flex;
  align-items: center;
  width: 50%;
  margin: 0 auto;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
}

.images img {
  width: 100%;
  transition: 0.5s;
  border-radius: inherit;
}

.images img:hover {
  transform: scale(1.03);
}

/* ===== Header Page ===== */
.page-header {
  height: 75vh;
  background: url("/images/contact.jpg");
  background-color: rgb(0, 0, 0, 0.5);
  background-blend-mode: multiply;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.page-header.about-header {
  background-image: url("/images/about.jpg");
}

.page-header.services-header {
  background-image: url("/images/services.jpg");
}

.page-header h1 {
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 2;
}

.page-header h2 {
  color: #ccc;
  font-weight: 400;
  font-size: 26px;
}

.page-header h2 a {
  color: #d7b757;
  font-size: 28px;
  font-weight: 500;
}

/* ====== About Section ===== */

.section {
  padding: 30px;
  /* padding-bottom: 80px; */
}
section:not(#home) h1 {
  text-align: center;
  font-weight: 600;
  margin-bottom: 30px;
}

.section h2,
.our-experience h2 {
  font-size: 38px;
  line-height: 1.3;
  margin-bottom: 50px;
  font-weight: 600;
  text-align: center;
}

.section .blue {
  display: inline-block;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  text-transform: uppercase;
  text-align: center;
  display: flex;
  justify-content: center;
}

.flex {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-evenly;
  margin-bottom: 60px;
}

.flex-img {
  overflow: hidden;
  border-radius: 6px;
}

.flex img {
  width: 100%;
  border-radius: 6px;
  transition: 0.5s;
}

.flex img:hover {
  transform: scale(1.05);
}

.flex-content {
  width: 50%;
}

.flex-content h3 {
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 10px;
  font-weight: 500;
}

.flex-content p {
  font-size: 18px;
  margin-bottom: 20px;
}

.flex-content p strong {
  color: var(--blue);
  font-size: 20px;
}

.our-experience {
  padding: 30px 0;
  background: #f7f7f7;
}

.flex.experience {
  align-items: stretch;
}

.flex .box {
  text-align: center;
  padding: 30px 40px;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  font-size: 20px;
  width: 40%;
  height: auto;
}

.box h3 {
  font-weight: 400;
}

.box p {
  font-size: 46px;
  font-weight: 600;
  color: var(--brown);
  line-height: 1.3;
}

/* ===== MISSION PAGE ===== */
.mission.section {
  padding: 0;
}

.mission.section h2 {
  margin-bottom: 20px;
}

.mission .flex-img {
  width: 50%;
  border-radius: unset;
}

.mission .flex {
  background: var(--brown);
  gap: 0;
  margin: 0;
  align-items: stretch;
}

.mission .flex-img img {
  border-radius: unset;
  height: 100%;
}
.mission .flex-content {
  padding: 40px;
  align-self: center;
}

.mission .flex-content p,
.mission .flex-content h3 {
  color: #fff;
}

.points li {
  padding: 10px 0;
  font-size: 18px;
  color: #f7f7f7;
  border-left: 4px solid var(--red);
  padding-left: 20px;
}

/* ===== SERVICES PAGE ===== */
.services {
    background-color: #f7f7f7;
}
.services h3 {
  color: var(--brown);
  font-size: 28px;
  width: 60%;
  margin: 0 auto;
  line-height: 1.2;
  font-weight: 500;
  text-align: center;
}

.section.services h2 {
  margin-bottom: 20px;
}

.row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px 50px;
  margin-top: 40px;
}

.col {
  width: 25%;
  height: auto;
}

.card {
  height: 100%;
  padding: 25px;
  border: 1px solid #e1e1e1;
  background: #fff;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0.125rem 1rem 0 rgb(0, 0, 0, 0.2);
  transition: 0.5s;
  position: relative;
  z-index: 1;
}

.card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, #e0dcff 0, #bab1ff 100%);
  transition: 0.5s;
  opacity: 0;
  z-index: -1;
}

.card:hover {
  transform: translateY(-10px);
}

.card:hover::before {
  opacity: 1;
}

.card-title h4 {
  font-size: 20px;
  font-weight: 500;
  margin-top: 20px;
}

.page-header.banner {
  height: 50vh;
  background-color: rgb(0, 0, 0, 0.7);
  text-align: left;
  position: relative;
}

.page-header.banner::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, #0e0d0d, transparent);
  z-index: 1000;
}

.banner .flex {
  justify-content: center;
}

.banner .call {
  border-left: 1px solid var(--brown);
  padding-left: 20px;
}

.banner h2 {
  color: #d7b757;
  margin: 0;
  margin-bottom: 30px;
}

.banner .btn {
  padding: 10px 20px;
  font-size: 18px;
  color: var(--brown);
  border-radius: unset;
  background: transparent;
}

.banner .btn:hover {
  background: var(--brown);
  color: #fff;
}

.banner p {
  color: #fff;
  font-size: 26px;
}

.banner a {
  color: #d7b757;
  font-size: 26px;
  font-weight: 600;
}

/* ===== Contact Section ===== */
.contact {
  padding: 30px;
  padding-bottom: 80px;
  margin-top: 20px;
}

.contact-info {
  display: flex;
  align-items: stretch;
  justify-content: space-evenly;
  box-shadow: 0 0 29px 0 rgb(0 0 0 / 20%);
  width: 60%;
  margin:  0 auto;
}

.float-right {
  padding: 40px;
  width: 100%;
  background: var(--brown);
}

.float-right h2 {
  font-size: 38px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #fff;
}

.float-right h4 {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
}

.info-details {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.info-details i {
  font-size: 22px;
  color: #fff;
}

.info-details p {
  font-size: 18px;
  text-align: left;
  color: #fff;
}

.info-details p a {
  color: #fff;
}

.email-btn {
  background: #fff;
  color: var(--brown);
  border-color: #fff;
  margin-top: 0;
  padding: 10px 20px;
}

.email-btn i {
  color: var(--brown);
  margin-right: 10px;
  vertical-align: middle;
}

.email-btn:hover i {
  color: #fff;
}


/* ===== Footer ===== */
footer {
  position: relative;
  height: auto;
  padding: 20px 0 0 0;
  background: #202020;
  text-align: center;
  color: #fff;
}

footer .container {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}

footer .logo {
  margin: 0 auto;
  margin-bottom: 20px;
}

footer .links {
  margin-bottom: 10px;
}

footer .links ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

footer .links ul li {
  padding: 20px 15px;
}

footer .links ul li a {
  color: #fff;
  font-size: 18px;
  font-family: var(--dm-sans);
  transition: all 0.4s ease-in-out;
}

footer .links ul li a:hover {
  color: var(--brown);
}

footer .branding {
  padding-top: 30px;
  border-top: 1px solid #e1e1e1;
}

.branding p {
  color: #fff;
}

/* section::before,
section::before {
  display: block;
  content: " ";
  height: 80px;
  visibility: hidden;
  pointer-events: none;
} */

/* ====== Responsive Design ====== */
@media (max-width: 991px) {
  .navbar .nav-menu {
    display: none;
  }

  #bar {
    display: block;
    font-size: 30px;
  }

  .col {
    width: 35%;
    margin-bottom: 20px;
  }

  .contact-info {
    width: 90%;
  }
  .float-right {
    padding-left: 30px;
    padding-right: 30px;
  }

  .landing .main-left {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .services h3,
  .mission.home p {
    width: 100%;
  }

  /* ----- About Page ----- */
  .flex .box{
    width: 70%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 10px 2em;
  }

  .logo {
    width: 30%;
  }

  h1 {
    font-size: 48px;
  }

  .flex {
    flex-direction: column;
  }

  .flex-content {
    width: 100%;
  }

  .col {
    width: 50%;
  }

  .mission .images {
    width: 100%;
  }

  .services,
  .contact,
  .about {
    padding-top: 0;
  }

  .contact-info {
    flex-direction: column;
  }

  .float-left,
  .float-right {
    width: 100%;
  }

  .float-right {
    text-align: center;
  }

  .info-details:last-child {
    gap: 10px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  /* ----- Mission Page ----- */
  .mission .flex {
    flex-direction: column-reverse;
  }

  .mission .flex-img {
    width: 100%;
  }

  .mission .flex:nth-child(2) {
    flex-direction: column;
  }
}

@media (max-width: 540px) {
  h1 {
    font-size: 38px;
    line-height: 1.2em !important;
  }

  .landing h2 {
    font-size: 1.3em;
  }

  .navbar {
    padding-left: 1rem;
    padding-right: 2rem;
  }

  .logo{
    width: 35%;
  }

  .section h2, .our-experience h2 {
    margin-bottom: 20px;
    font-size: 28px;
  }

  .flex-content p,
  .plan-details p {
    padding: 0;
    font-size: 16px;
  }

  .container {
    padding: 10px 10px;
  }

  .services,
  .contact,
  .about {
    padding: 15px;
  }

  .services h3 {
    font-size: 18px;
  }

  .row {
    gap: 30px 30px;
  }

  .col {
    width: 60%;
  }

  .flex-content h2 {
    font-size: 28px;
  }

  footer .links ul {
    flex-wrap: wrap;
  }

  .page-header h2,
  .page-header h2 a {
    font-size: 18px;
  }

  .contact-info {
    width: 100%;
  }
}

@media (max-width: 425px) {
  .logo {
    width: 40%;
  }

  section:not(#home) h1 {
    line-height: 1.7;
  }

  .landing h2 {
    font-size: 1.1em;
  }

  h1 {
    font-size: 30px;
  }

  .landing .main-left {
    padding-left: 0;
    padding-right: 0;
  }

  .col {
    width: 70%;
  }

  .mission.home {
    padding: 30px 15px !important;
  }

  .popup-mobilemenu .menu-inner {
    width: 280px;
  }

  .float-right {
    padding: 30px 20px;
  }

  .float-right h2,
  .float-left h2 {
    font-size: 30px;
  }

  .info-details p,
  .float-right h4 {
    font-size: 14px;
  }

  /* ---- About Page ---- */
  .flex .box {
    width: 90%;
  }

  .page-header {
    height: 60vh;
  }

  .box h3 {
    font-size: 18px;
  }

  /* ----- Mission ----- */
  .mission .flex-content {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 375px) {
  .logo {
    width: 50%;
  }

  h1 {
    font-size: 28px;
  }
}
