@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");

:root {
  --primary-blue: #2950a3;
  --secondary-orange: #f68527;
  --whatsapp-green: #49c858;
  --small-padding: 10rem;
  --medium-padding: 15rem;
  --large-padding: 21rem;
  --letter-spacing-large: -0.05em;
  --letter-spacing-medium: -0.03em;
  --line-height-small: 114.5%;
  --line-height-medium: 145.5%;
  --line-height-large: 163.5%;
}

::-moz-selection {
  background-color: var(--secondary-orange);
  color: white;
}

::selection {
  background-color: var(--secondary-orange);
  color: white;
}

::-webkit-scrollbar {
  background-color: black;
  width: 0.5rem;
}

::-webkit-scrollbar-thumb {
  background-color: #eeeeee;
  border-radius: 10px;
}

* {
  -webkit-font-smoothing: antialiased;
}

html {
  margin: 0;
  padding: 0;
  min-height: 100%;
  box-sizing: border-box;
  font-family: Inter, sans-serif;
  font-size: 16px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-transform: translate3d(0);
  -webkit-backface-visibility: hidden;
  -moz-transform: translate3d(0);
}

body {
  margin: 0;
  padding: 0;
}

strong {
  font-variation-settings: "wght" 600;
}

/* Navbar Light start */
.nav-logo {
  width: 8rem;
  margin-right: 1rem;
}

.nav-logo img {
  width: 100%;
}

.nav-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  /* background-color: #f6f6f6; */
  background-color: white;
  padding: 0 var(--small-padding);
  box-shadow: 2px 2px 20px 5px rgba(0, 0, 0, 0.05);
}

.nav-bar-flex {
  display: flex;
  padding: 2rem 0;
  justify-content: space-between;
  align-items: center;
}

.nav-link .iconify {
  color: var(--primary-blue);
  font-size: 0.45rem;
}

.nav-link {
  display: inline-block;
  color: var(--primary-blue);
  text-decoration: none;
  font-size: 1rem;
  font-variation-settings: "wght" 400;
  letter-spacing: -0.05em;
  cursor: pointer;
}

.nav-link a {
  display: inline-block;
  color: var(--primary-blue);
  text-decoration: none;
  font-size: 1rem;
  font-variation-settings: "wght" 400;
  letter-spacing: -0.05em;
}

.nav-link span > i {
  font-size: 0.7rem;
  margin-left: 0.5rem;
}

.nav-link > span {
  display: inline-flex;
  align-items: center;
}

.nav-link::after {
  content: "";
  display: block;
  width: 100%;
  border-bottom: 2px var(--secondary-orange) solid;
  margin-top: 0.3rem;
  transition: transform 300ms;
  transform: scaleX(0);
  transform-origin: center;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

/* Dropdown styles */
ul {
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
}

.has-dropdown {
  position: relative;
}

.has-dropdown:hover .dropdown-container {
  display: block;
  max-height: 50rem;
}

.dropdown-container {
  display: none;
  max-height: 0;
}

.width-80 {
  width: 85vw;
}

.width-65 {
  width: 70vw;
}

.width-20 {
  width: 20vw;
}

.dropdown-flex {
  display: flex;
  justify-content: space-between;
  /* height: 10rem; */
  position: absolute;
  top: 100%;
  left: 0;
  box-sizing: border-box;
  transform: translateX(-42%);
  background-color: white;
  padding: 1.5rem 2rem;
  box-shadow: 2px 2px 20px 5px rgba(0, 0, 0, 0.05);
}

.dropdown-unit {
  width: 25%;
}

.dropdown-links > a {
  color: black;
  display: inline-block;
  width: 100%;
  text-decoration: none;
  letter-spacing: var(--letter-spacing-large);
}

.dropdown-links {
  padding: 1rem 1rem;
  border-left: 0px solid var(--secondary-orange);
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.05);
  transition: all 100ms ease;
}

.dropdown-links:hover {
  box-shadow: 6px 6px 10px 5px rgba(0, 0, 0, 0.05);
  border-left: 3px solid var(--secondary-orange);
}

.dropdown-title {
  color: var(--primary-blue);
  letter-spacing: 0.15em;
  font-size: 1rem;
  font-variation-settings: "wght" 600;
  margin: 0.5rem 0 0.7rem 0;
  padding-left: 1rem;
}

#industries-dropdown-flex {
  flex-wrap: wrap;
  flex-shrink: 0;
  flex-grow: 0;
}

#industries-dropdown-unit {
  width: 20%;
}

#contact-dropdown-unit {
  width: 100%;
}

#contact-dropdown-flex {
  transform: translateX(-35%);
}
/* Dropdown styles */

.search-box {
  display: flex;
  align-items: center;
  margin-left: 5rem;
}

.search-box .iconify {
  font-size: 1rem;
  color: var(--primary-blue);
}

.Search {
  color: var(--primary-blue);
  font-weight: 400;
  margin-left: 0.5rem;
  letter-spacing: -0.05em;
}
/* Navbar Light end */

/* Hero section start */
.hero {
  background-image: url("/public/work-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 5rem var(--small-padding);
}

.hero-title {
  display: inline-block;
  color: white;
  font-size: 2.8rem;
  font-variation-settings: "wght" 600;
  letter-spacing: -0.05em;
  border-bottom: 5px var(--secondary-orange) solid;
}
/* Hero section end */

/* Text section start */
.text {
  padding: 1.5rem var(--small-padding);
}

.title {
  font-size: 2.2rem;
  font-variation-settings: "wght" 500;
  letter-spacing: -0.05em;
  margin: 1.5rem 0;
}

.desc {
  margin: 1rem 0;
  font-size: 1.1rem;
  font-variation-settings: "wght" 450;
  letter-spacing: -0.05em;
  line-height: 163.5%;
}
/* Text section end */

/* Job Accordion start */
.job-grid {
  display: grid;
  gap: 0 3.5rem;
  grid-template-columns: max-content max-content;
  padding: 0 var(--small-padding);
  margin-bottom: 3rem;
}

.no-job {
  font-size: 2rem;
  text-align: center;
  font-variation-settings: "wght" 550;
  letter-spacing: var(--letter-spacing-large);
}

.accordion {
  width: 30rem;
  letter-spacing: var(--letter-spacing-large);
  /* text-align: center; */
  vertical-align: center;
}

.accordion-item {
  background-color: #eeeeee;
  margin: 1rem 0;
}

.accordion-item:first-child {
  margin-top: 0;
}

.accordion-item:last-child {
  margin-bottom: 0;
}

.accordion-link {
  display: flex;
  align-items: center;
  width: 100%;
  height: 3rem;
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  font-variation-settings: "wght" 350;
  letter-spacing: -0.05em;
  background-color: var(--primary-blue);
  user-select: none;
}

.accordion-link .iconify {
  font-size: 2rem;
  margin: 0 0.5rem;
  pointer-events: none;
}

.accordion-desc > p {
  padding: 1.5rem;
  margin: 0;
}

.accordion-desc {
  max-height: 30rem;
  overflow: hidden;
  letter-spacing: -0.05em;
  font-size: 1.1rem;
  line-height: 163.5%;
  transition: max-height 200ms ease-in-out;
}

.collapse {
  max-height: 0rem;
}

.hidden {
  display: none;
}
/* Job Accordion end */

/* Goal text start */
.goal-text {
  width: 25rem;
  height: 20rem;
  background-image: url("/public/goal.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
  letter-spacing: -0.05em;
}

.goal-text .title {
  margin: 0 0 1rem 0;
}

.small-text {
  font-size: 0.9rem;
  font-variation-settings: "wght" 450;
  letter-spacing: -0.05em;
  line-height: 163.5%;
}

.text-container {
  width: 15rem;
}
/* Goal text end */

/* Contact details start */
.contact-details-flex {
  display: flex;
  flex-direction: row;
  padding: 0 var(--small-padding);
  justify-content: space-between;
  margin-bottom: 3rem;
}

.contact-details-grid {
  display: grid;
  gap: 0rem 0.5rem;
  padding: 2rem 0;
  grid-template-columns: max-content max-content;
}

.details-title {
  font-size: 1.125rem;
  font-variation-settings: "wght" 600;
  letter-spacing: -0.05rem;
  margin: 0.5rem 0;
}

.details-desc {
  font-size: 1.1rem;
  font-variation-settings: "wght" 450;
  letter-spacing: -0.05rem;
  line-height: 163.5%;
  margin: 0;
}

.details-desc > a {
  text-decoration: none;
  color:inherit;
}

.details-desc > a:hover {
  text-decoration: underline;
}

.contact-details-grid .iconify {
  font-size: 2.2rem;
  color: var(--secondary-orange);
}
/* Contact details end */

/* Footer */
footer {
  color: white;
  background-color: var(--primary-blue);
  letter-spacing: -0.05em;
  padding: 3rem var(--small-padding);
}

footer a {
  text-decoration: none;
  color: white;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
}

.footer-logo img {
  width: 100%;
}

.footer-logo {
  width: 13rem;
}

.footer-logo p {
  font-size: 0.8rem;
  font-variation-settings: "wght" 300;
  margin-left: 1rem;
  margin-top: 0.5rem;
}

.footer-address {
  font-size: 0.9rem;
  font-variation-settings: "wght" 300;
  line-height: 163.5%;
}

.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-links a {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-variation-settings: "wght" 500;
}

footer h4 {
  margin: 0 0 0.5rem 0;
  font-size: 0.8rem;
  font-variation-settings: "wght" 400;
}

.footer-contact p {
  font-size: 0.8rem;
  font-variation-settings: "wght" 300;
  margin-bottom: 0.5rem;
  line-height: 163.5%;
}

.copyright {
  font-size: 0.9rem;
  font-variation-settings: "wght" 300;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
}

.footer-social-media i {
  font-size: 2rem;
  margin-top: 0.5rem;
  margin-right: 0.5rem;
}
/* Footer */

/* RESPONSIVENESS */
@media screen and (min-width: 1366px) {
  .nav-bar {
    padding: 0 var(--medium-padding);
  }

  .hero {
    padding: 5rem var(--medium-padding);
  }

  .text {
    padding: 1.5rem var(--medium-padding);
  }

  .job-grid,
  .contact-details-flex {
    padding: 0 var(--medium-padding);
  }

  footer {
    padding: 3rem var(--medium-padding);
  }
}

@media screen and (min-width: 1920px) {
  /* RESPONSIVE Navbar start */
  .nav-bar {
    padding: 0 var(--large-padding);
  }

  .nav-logo {
    width: 11rem;
  }

  .nav-link {
    font-size: 1.3rem;
  }

  .nav-link a {
    font-size: 1.3rem;
  }

  .nav-link span > i {
    font-size: 0.9rem;
    margin-left: 0.6rem;
  }

  .search-box .iconify {
    font-size: 1.3rem;
  }

  .Search {
    font-size: 1.3rem;
    margin-left: 0.5rem;
  }
  /* RESPONSIVE Navbar end*/

  /* RESPONSIVE Hero section start */
  .hero {
    padding: 6.5rem var(--large-padding);
  }

  .hero-title {
    font-size: 3.6rem;
    letter-spacing: -0.05em;
  }
  /* RESPONSIVE Hero section end */

  /* RESPONSIVE Text section start */
  .text {
    padding: 3.5rem var(--large-padding);
  }

  .title {
    font-size: 3rem;
    line-height: 114.5%;
    margin: 1.5rem 0;
  }

  .desc {
    margin: 1rem 0;
    font-size: 1.5rem;
    line-height: 163.5%;
  }
  /* RESPONSIVE Text section end */

  /* RESPONSIVE Job Accordion start */
  .job-grid {
    gap: 0 5rem;
    padding: 0 var(--large-padding);
    margin-bottom: 3rem;
  }

  .accordion {
    width: 40rem;
  }

  .accordion-item {
    background-color: #eeeeee;
    margin: 1rem 0;
  }

  .accordion-item:first-child {
    margin-top: 0;
  }

  .accordion-item:last-child {
    margin-bottom: 0;
  }

  .accordion-link {
    width: 100%;
    height: 4rem;
    font-size: 1.5rem;
  }

  .accordion-link .iconify {
    font-size: 2.5rem;
    margin: 0 1rem;
  }

  .accordion-desc > p {
    padding: 1.5rem;
    margin: 0;
  }

  .accordion-desc {
    max-height: 30rem;
    overflow: hidden;
    font-size: 1.5rem;
    line-height: 163.5%;
  }

  .collapse {
    max-height: 0rem;
  }
  /* RESPONSIVE Job Accordion end */

  /* Goal text start */
  .goal-text {
    width: 34rem;
    height: 25rem;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
  }

  .goal-text .title {
    margin: 0 0 1rem 0;
  }

  .small-text {
    font-size: 1.2rem;
  }

  .text-container {
    width: 20rem;
  }
  /* Goal text end */

  /* RESPONSIVE Contact details start */
  .contact-details-flex {
    padding: 0 var(--large-padding);
  }

  .contact-details-grid {
    gap: 0rem 1rem;
    padding: 2rem 0;
  }

  .details-title {
    font-size: 1.5rem;
    margin: 0.5rem 0;
  }

  .details-desc {
    font-size: 1.5rem;
  }

  .contact-details-grid .iconify {
    font-size: 2.5rem;
  }
  /* RESPONSIVE Contact details end */

  /* RESPONSIVE FOOTER START */
  footer {
    padding: 3rem var(--large-padding);
  }

  .footer-logo {
    width: 15rem;
  }

  .footer-logo p {
    font-size: 1rem;
    margin-top: 0.8rem;
  }

  .footer-address {
    font-size: 1rem;
  }

  .footer-links a {
    font-size: 1rem;
  }

  footer h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
  }

  .footer-contact p,
  .copyright {
    font-size: 1rem;
  }
  /* RESPONSIVE FOOTER END */
}
