/* =========================
   HEADER / NAVBAR CSS
   ========================= */

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 997;
  background: #1d283a;
  transition: all 0.3s ease;
  font-family: poppins, sans-serif;
}

.header .logo {
  text-decoration: none;
}

.header .sitename {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

/* Nav Menu */
.navmenu {
  display: flex;
  align-items: center;
}

.navmenu ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.navmenu ul li {
  padding: 15px 14px;
}

.navmenu ul li a {
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.navmenu ul li a:hover,
.navmenu ul li a.active {
  color: white;
}
@media (min-width: 1200px) {
  .navmenu > ul > li > a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #ffc91f;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu li {
    position: relative;
  }
  .navmenu .active ul li:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li ::before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #ffc91f;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }
}
/* Mobile Toggle */
.mobile-nav-toggle {
  font-size: 28px;
  cursor: pointer;
  display: none;
}
nav i {
  color: white;
}

/* =========================
   MOBILE NAV
   ========================= */

@media (max-width: 1199px) {
  .mobile-nav-toggle {
    display: block;
    z-index: 9999;
    padding-right: 10px;
  }

  .navmenu ul {
    position: fixed;
    top: 80px;
    right: -100%;
    /* width: 100%; */
    display: block;
    height: 100vh;
    background: rgba(33, 37, 41, 0.95);
    flex-direction: column;
    padding-top: 40px;
    transition: right 0.3s ease-in-out;
    margin-left: 36%;
  }

  .navmenu ul li a {
    color: #ffffff;
    font-size: 18px;
  }

  .navmenu ul li a.active {
    color: rgb(26, 182, 2);
  }
  .mobile-nav-active .navmenu ul {
    right: 0;
    top: 66px;
  }
}
@media (max-width: 768px) {
  .header .sitename {
    font-size: 1.5rem;
    font-weight: 400;
    padding-left: 20px;
  }
  .navmenu ul {
    position: fixed;
    right: -100%;
    background: white;
    flex-direction: column;
    padding-top: 0;
    transition: right 0.3s ease-in-out;
    margin-left: 36%;
  }

  .navmenu ul li {
    /* margin: 15px 0; */
    padding: 10px 20px 10px 0px;
    /* text-align: center; */
  }

  .navmenu ul li a {
    color: black;
    font-size: 17px;
    font-weight: 500;
    padding: 10px 20px;
  }

  .navmenu ul li a:active {
    color: #ffc91f;
  }

  .mobile-nav-active .navmenu ul {
    right: 0;
    top: 0;
    width: 65%;
    padding-top: 10px;
    color: black;
  }
  .mobile-nav-active i {
    color: black;
  }
}
/* footer================================================================================ */
/* =========================
   FOOTER CSS
   ========================= */

.footer {
  background: #051c34;
  color: #ffffff;
  padding: 70px 0 30px 0;
}

.footer .logo img {
  max-width: 100px;
}

.footer-about p {
  font-size: 15px;
  margin-bottom: 10px;
}

.footer-contact img {
  width: 18px;
  margin-right: 8px;
}
.footer-links{
  text-align: left;
}

/* Footer Links */
.footer-links h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  padding: 6px 0;
}

.footer-links ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #ffc91f;
}
/*--------------------------------------------------------------
# Custom Store Buttons
--------------------------------------------------------------*/
.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 0 auto;
}
.store-button {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  border-radius: 10px;
  background-color: #1d283a;
  color: var(--contrast-color);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.store-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(26, 32, 44, 0.2);
  background-color: #e6b20e;
  color: #1d283a;
}
.store-button i {
  font-size: 32px;
  margin-right: 15px;
  line-height: 1;
}
.store-text {
  text-align: left;
}
.store-text span {
  font-size: 12px;
  display: block;
  line-height: 1;
  font-weight: 500;
}
.store-text strong {
  font-size: 18px;
  display: block;
  line-height: 1;
  margin-top: 4px;
  font-weight: 700;
}
/* Specific styling for the download section buttons */
#download-app .store-button {
  background-color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.store-buttons a:hover {
  color: #1d283a;
}

/* Copyright */
.footer .copyright {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 40px;
}
.footer .social-links {
  justify-content: center;
}
.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, white, transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, white, transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

/* =========================
   MOBILE FOOTER
   ========================= */

@media (max-width: 767px) {
  .footer {
    text-align: center;
  }

  .footer-about {
    align-items: center;
    display: flex;
    flex-direction: column;
  }
}
