/*==============================
=       Navigation Base        =
==============================*/
.sobonix-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  height: 80px;
  background-color: #fff !important;
  font-weight: 500;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000),
    var(--tw-shadow,
      0 4px 6px -1px rgba(0, 0, 0, 0.1),
      0 2px 4px -2px rgba(0, 0, 0, 0.1)
    );
}

/*==============================
=      Header Styles           =
==============================*/
.sobonix-head,
.sobonix-mobile-nav {
  width: 100%;
  height: 80px !important;
  padding: 16px;
  background-color: #fff !important;
}

.sobonix-head {
  display: none;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}

.sobonix-mobile-nav {
  display: flex;
  flex-direction: column;
  position: relative;
}

/*==============================
=      Navigation Containers   =
==============================*/
.nav-container {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 0 12px;
  color: black;
}

.mobile-nav-button {
  background-color: transparent;
}

.mobile-nav-head {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.mobile-nav-sidebar {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  padding-bottom: 16px;
  z-index: 1000;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.mobile-nav-sidebar.open {
  display: flex;
}

.mobile-nav-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
}

/*==============================
=      Logo Styling            =
==============================*/
.sobonix-site-logo {
  width: 200px !important;
  height: 44.3px !important;
  margin: 0 !important;
  max-width: none !important;
}

/*==============================
=     Content Wrapper          =
==============================*/
.sobonix-content {
  margin-top: 80px;
}

/*==============================
=     Navigation Buttons       =
==============================*/
.nav-dropdown,
.nav-simple {
  background-color: #fff;
  border: none;
  display: flex;
  align-items: center;
  padding: 0 28px;
  gap: 12px;
  width: 100%;
  position: relative;
}

.nav-dropdown {
  justify-content: space-between;
}

.nav-dropdown:hover,
.nav-dropdown:active,
.nav-simple a:hover,
.nav-simple a:active {
  color: rgb(15 89 198);
}

.nav-simple {
  width: max-content !important;
}

.nav-simple a {
  display: block;
  width: 100%;
  height: 100%;
}

/*==============================
=      Dropdown Styles         =
==============================*/
.dropdown-box {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  flex-direction: column;
  font-size: 14px;
  padding: 8px 0;
  border-top: 4px solid rgb(15 89 198);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000),
    var(--tw-shadow,
      0 10px 15px -3px rgba(0, 0, 0, 0.1),
      0 4px 6px -4px rgba(0, 0, 0, 0.1)
    );
  z-index: 10000;
  max-width: none;
}

.dropdown-box.show {
  display: flex !important;
}

.dropdown-link {
  list-style: none;
  padding: 16px 40px;
  line-height: 1 !important;
  margin-top: 0 !important;
  width: max-content;
}

.dropdown-link a {
  display: block;
  width: 100%;
  height: 100%;
}

.dropdown-link:hover {
  color: rgb(15 89 198);
}

/*==============================
=      Contact Button          =
==============================*/
.contact-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  margin: 0 28px;
  font-weight: 600;
  line-height: 1.5;
  border: none;
  border-radius: 100px;
  background: linear-gradient(270deg, #2dbbf2, #0c4fc1);
}

.contact-btn a {
  width: 87.6px;
}

.contact-link {
  color: #fff;
}

/*==============================
=        Icons                 =
==============================*/
.dropdown-icon,
.phone-icon,
.contact-icon {
  width: 16px;
  height: 16px;
}

.dropdown-icon {
  width: 12px;
  height: 12px;
}

.phone-icon {
  width: 18px;
  height: 18px;
}

/*==============================
=         Footer               =
==============================*/
.footer {
  background-color: white;
  padding-top: 32px;
  color: white;
}

.footer-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 16px;
}

/* Footer Top */
.footer-top {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
  padding: 16px 0;
}

.footer-logo {
  grid-column: span 8;
}

.footer-contact-panel {
  grid-column: span 8;
  background: url(../images/theme/footer-bg.svg) no-repeat center / cover;
  padding: 16px 8px;
  margin: 16px 0;
}

.footer-contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  padding-right: 16px;
}

.footer-contact-item {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 12px;
}

/* Footer Links */
.footer-links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 2fr;
  gap: 16px;
  margin-top: 16px;
  color: #1a202c;
}

.footer-links-column {
  grid-column: span 3;
}

.footer-links-column:last-child {
  grid-column: span 2;
}

.footer-column-title {
  font-weight: bold;
  font-size: 16px;
  color: #1a202c;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.footer-link {
  font-size: 12px;
  font-weight: 400;
  color: #1a202c;
  text-decoration: none;
  margin: 4px 0;
  width: fit-content;
}

.footer-link:hover {
  color: rgb(15 89 198);
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 32px;
  border-top: 1px solid #ccc;
  padding: 16px 0;
  margin-top: 48px;
  color: #1a202c;
  justify-content: space-between;
}

.footer-social {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer-copyright {
  font-size: 12px;
  font-weight: 500;
  color: #4c4c4c;
}

.footer-legal {
  display: flex;
  gap: 8px;
  font-size: 12px;
  color: #1a202c;
}

.legal-link {
  font-weight: 500;
  color: #4c4c4c;
  text-decoration: none;
}

.legal-link:hover {
  color: rgb(15 89 198);
}

/* Social Icons */
.social-icon,
.facebook-icon,
.behance-icon,
.linkedin-icon,
.twitter-icon,
.upwork-icon {
  height: auto;
  width: auto;
}

.facebook-icon { height: 15.5px; }
.behance-icon { height: 11.7px; }
.linkedin-icon { height: 14.4px; }
.twitter-icon { height: 13.8px; }
.upwork-icon { height: 13.2px; }

/*==============================
=     Responsive Breakpoints   =
==============================*/
@media (min-width: 640px) {
  .sobonix-head,
  .footer-container {
    max-width: 640px;
  }
  .footer-container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .sobonix-head,
  .footer-container {
    max-width: 768px;
  }

  .footer-link,
  .footer-contact-item {
    font-size: 16px;
  }

  .contact-icon {
    height: auto;
    width: auto;
  }
}

@media (min-width: 1024px) {
  .sobonix-head {
    display: flex;
    max-width: 1024px;
  }

  .sobonix-mobile-nav {
    display: none;
  }

  .nav-dropdown,
  .nav-simple {
    padding: 0;
    width: auto;
  }

  .nav-dropdown {
    justify-content: flex-start;
  }

  .dropdown-box {
    top: 200%;
    left: -50%;
    display: none;
    width: auto;
  }

  .contact-btn {
    margin: 0;
  }

  .footer-container {
    max-width: 1024px;
  }

  .footer-links {
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: 1fr;
    margin-top: 32px;
  }

  .footer-logo {
    grid-column: span 2;
  }

  .footer-links-column {
    grid-column: span 3;
  }

  .footer-links-column:last-child {
    grid-column: span 2;
  }

  .footer-contact-wrapper {
    padding-left: 64px;
  }

  .footer-contact-panel {
    grid-column: span 6;
    margin: 0;
  }

  .footer-column-title {
    font-size: 18px;
  }

  .footer-legal {
    font-size: 16px;
  }

  .footer-bottom {
    flex-direction: row;
  }

  .footer-copyright {
    font-size: 16px;
  }

  .social-icon {
    height: 23.3px;
  }

  .facebook-icon { height: 22.5px; }
  .behance-icon { height: 17px; }
  .linkedin-icon { height: 20.8px; }
  .twitter-icon { height: 20px; }
  .upwork-icon { height: 19.2px; }
}

@media (min-width: 1280px) {
  .sobonix-head,
  .footer-container {
    max-width: 1280px;
  }
  .footer-container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  .sobonix-head,
  .footer-container {
    max-width: 1536px;
  }
  .footer-container {
    max-width: 1536px;
  }
}
