@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;
}

/* 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: 80vw;
}

.width-65 {
  width: 65vw;
}

.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;
  text-decoration: none;
  letter-spacing: var(--letter-spacing-large);
}

.dropdown-links > a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.dropdown-links {
  position: relative;
  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;
}

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

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

/* Hero section start */
.hero {
  background-image: url("/public/buy-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 */

/* Contact section start */
.contact-section {
  padding: 0 var(--small-padding);
  margin-bottom: 5rem;
}

.contact-details-flex {
  display: flex;
  flex-direction: row;
  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);
}

.whatsapp-button {
  display: inline-block;
  text-decoration: none;
  color: white;
  font-size: 1.1rem;
  font-variation-settings: "wght" 400;
  letter-spacing: -0.055rem;
  line-height: 163.5%;
  background-color: var(--whatsapp-green);
  border: none;
  border-radius: 5px;
  padding: 0.375rem 2rem;
  margin-top: 1rem;
}

.whatsapp-button i {
  font-size: 1.5rem;
  margin-right: 0.5rem;
  line-height: 1rem;
  transform: translateY(0.1rem);
}

.whatsapp-button:focus {
  outline: none;
}

/* Quote section start */
.quote .title {
  position: relative;
  font-variation-settings: "wght" 400;
  line-height: 163.5%;
}

.quote {
  position: relative;
  padding: 3rem var(--small-padding);
}

.quote img {
  position: absolute;
  top: 0;
  right: var(--small-padding);
  opacity: 0.1;
}
/* Quote section end */

/* Map start */
#map {
  width: 100%;
  height: 30rem;
  border: none;
}
/* Map 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);
  }

  .contact-section {
    padding: 0 var(--medium-padding);
  }
.contact-grid-three-column {
   padding:1.5rem var(--small-padding);
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr !important; /* Explicitly set 3 columns */
  gap: 40px !important;
  align-items: start !important;
  margin-top: 20px !important;
}

.details-unit {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
}

.details-unit .iconify {
  font-size: 2rem !important;
  margin-bottom: 10px !important;
}

.details-title {
  font-weight: bold !important;
  margin-bottom: 5px !important;
}

.details-desc {
  font-size: 1rem !important;
  line-height: 1.5 !important;
}

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

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

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

  .quote .title {
    font-size: 2.1rem;
  }

  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: 2rem var(--large-padding);
  }

  .title {
    font-size: 3rem;
    font-variation-settings: "wght" 500;
    letter-spacing: -0.05em;
    line-height: 114.5%;
    margin: 1.5rem 0;
  }

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

  /* RESPONSIVE Contact form start */
  .contact-grid-three-column {
      padding:1.5rem var(--small-padding);
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr !important;
  gap: 20px !important;
  align-items: start !important;
  margin-top: 20px !important;
}

.details-unit {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
}

.details-unit .iconify {
  font-size: 2rem !important;
  margin-bottom: 10px !important;
}

.details-title {
  font-weight: bold !important;
  margin-bottom: 5px !important;
}

.details-desc {
  font-size: 1rem !important;
  line-height: 1.5 !important;
}

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

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

  /* RESPONSIVE Contact form end */

  /* RESPONSIVE Quote section start */
  .quote .title {
    font-size: 3rem;
    font-variation-settings: "wght" 450;
    line-height: 163.5%;
  }

  .quote {
    padding: 3rem var(--large-padding);
    margin-bottom: 1rem;
  }
  /* RESPONSIVE Quote section end */

  /* RESPONSIVE Map start */
  #map {
    width: 100%;
    height: 45rem;
    border: none;
  }
  /* RESPONSIVE Map 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 */
}

