/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3rem;

  /*========== Colors ==========*/
  --white-color: hsl(0, 0%, 100%);
  --black-color: hsl(0, 0%, 0%);

  /*========== Font and Typography ==========*/
  --body-font: "Inter", sans-serif;
  --h1-font-size: 1.5rem;
  --normal-font-size: 0.938rem;

  /*========== Font Weight ==========*/
  --font-regular: 400;
  --font-medium: 500;

  /*========== Z-Index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive Typography ==========*/
@media screen and (min-width: 1150px) {
  :root {
    --normal-font-size: 1rem;
  }
}

/*=============== BASE STYLES ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--white-color);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

/*=============== PAGE LOADER ===============*/
#page-loader {
  position: fixed;
  inset: 0;
  background-color: #fff; /* Or your brand color */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

body.loaded #page-loader {
  opacity: 0;
  visibility: hidden;
}



/*=============== HEADER & NAV ===============*/
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #ffffff;
  z-index: var(--z-fixed);
}

/*=============== NAV BASE ===============*/
.nav {
  position: relative;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 1rem;
  padding-right: 1rem;
}

.nav__logo {
  color: #2B2B2B;
  font-weight: var(--font-medium);
}

.nav__logo img {
  max-width: 150px;
  height: auto;
}

.nav__toggle,
.nav__close {
  display: flex;
  color: #2B2B2B;
  font-size: 1.5rem;
  cursor: pointer;
}

.nav__close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

/*=============== NAV MENU (Mobile) ===============*/
@media screen and (max-width: 1150px) {
  .nav__menu {
    position: fixed;
    left: -100%;
    top: 0;
    background-color: #fff;
    width: 100%;
    height: 100%;
    padding: 6rem 3.5rem 4.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: left 0.4s;
    scrollbar-width: none;            /* Firefox */
    -ms-overflow-style: none;         /* IE 10+ */
  }

  .nav__menu::-webkit-scrollbar {
    display: none;                    /* Chrome, Safari */
  }

  .nav__item {
    transform: translateX(-150px);
    visibility: hidden;
    transition: transform 0.4s ease-out, visibility 0.4s;
  }

  .nav__item:nth-child(1) { transition-delay: 0.1s; }
  .nav__item:nth-child(2) { transition-delay: 0.2s; }
  .nav__item:nth-child(3) { transition-delay: 0.3s; }
  .nav__item:nth-child(4) { transition-delay: 0.4s; }
  .nav__item:nth-child(5) { transition-delay: 0.5s; }
}

.show-menu {
  left: 0;
}

.show-menu .nav__item {
  visibility: visible;
  transform: translateX(0);
}

/*=============== NAV LIST & LINKS ===============*/
.nav__list,
.nav__social {
  display: flex;
}

.nav__list {
  flex-direction: column;
  row-gap: 3rem;
}

.nav__link {
  position: relative;
  color: #2B2B2B;
  font-size: var(--h1-font-size);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.4s ease;
  justify-content: flex-start;
}

.nav__link i {
  font-size: 2rem;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.nav__link span {
  position: relative;
  transition: margin 0.4s;
}

.nav__link span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background-color: #2B2B2B;
  transition: width 0.4s ease-out;
}

.nav__link:hover {
  color: #007AFF;
}

.nav__link:hover span {
  margin-left: 2.5rem;
}

.nav__link:hover i {
  opacity: 1;
  visibility: visible;
}

.nav__link:hover span::after {
  width: 100%;
  background-color: #007AFF;
}

/* Sibling fade animation */
.nav__list:has(.nav__link:hover) .nav__link:not(:hover) {
  opacity: 1000;
  color: #2B2B2B;
}

/*=============== CONTACT BUTTON ===============*/
.nav__contact-button {
  background-color: #007AFF;
  color: #ffffff;
  font-weight: 800;
  padding: 0.9rem 1.5rem;
  border-radius: 9999px;
  font-size: var(--normal-font-size);
  border: 0;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-align: center;
}

.nav__contact-button:hover {
  background-color: #2B2B2B;
  color: #ffffff;
  transform: none;
}

/*=============== LARGE DEVICES ===============*/
@media screen and (min-width: 1150px) {
  .container {
    margin-inline: auto;
  }

  .nav {
    height: calc(var(--header-height) + 2rem);
  }

  .nav__toggle,
  .nav__close {
    display: none;
  }

  .nav__link {
    font-size: var(--normal-font-size);
  }

  .nav__link i {
    font-size: 1.5rem;
  }

  .nav__list {
    flex-direction: row;
    column-gap: 3.5rem;
  }

  .nav__menu {
    display: flex;
    align-items: center;
    column-gap: 3.5rem;
  }
}

/*=============== MEDIUM DEVICES ===============*/
@media screen and (max-width: 768px) {
  .nav {
    padding: 1rem 0;
  }

  .nav__menu {
    padding-top: 6rem;
    padding-bottom: 2rem;
    row-gap: 3rem;
  }

  .nav__list {
    row-gap: 2.5rem;
  }

  .nav__link {
    font-size: 1.5rem;
  }

  .nav__contact-button {
    padding: 0.8rem 1.2rem;
    font-size: 1rem;
  }
}

/*=============== SMALL DEVICES ===============*/
@media screen and (max-width: 480px) {
  .nav__link {
    font-size: 1.2rem;
  }

  .nav__contact-button {
    width: 100%;
    text-align: center;
    margin-top: 2rem;
  }
}














/*=============== HERO SECTION ===============*/
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-image: url('/images/warehouse.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow-x: hidden;
  padding: 0 1rem;
  box-sizing: border-box;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 610px;
  width: 100%;
  padding-top: 5vh;
  margin-left: 4rem;
  text-align: left;
}

/* Hero Title */
.hero__title {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.4;
  margin-bottom: 1rem;
  color: #fff;
  font-family: 'Inter', sans-serif;
  text-align: left;
}

/* Hero Subtitle */
.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  margin-bottom: 2rem;
  font-weight: 400;
  line-height: 1.6;
  color: #f0f0f0;
  font-family: 'Inter', sans-serif;
  text-align: left;
}

/* Buttons Container */
.hero__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* Button Base */
.hero__btn {
  padding: 0.9rem 1.8rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 999px;
  transition: all 0.3s ease;
  text-align: center;
  white-space: nowrap;
}

/* Primary Button */
.hero__btn--primary {
  background-color: #007AFF;
  color: #fff;
}

.hero__btn--primary:hover {
  background-color: #ffffff;
  color: #007AFF;
}

/* Outline Button */
.hero__btn--outline {
  border: 2px solid #fff;
  color: #fff;
}

.hero__btn--outline:hover {
  background-color: #fff;
  color: #2B2B2B;
}

/* Image Row Under Hero */
.image-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 2rem 1rem;
}

.image-row img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 0.5rem;
  object-fit: cover;
}

/* Utility class to prevent text wrapping */
.nowrap {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Allow wrapping on mobile */
@media (max-width: 768px) {
  .nowrap {
    white-space: normal;
  }

  .hero {
    justify-content: flex-start;
    padding: 1rem 1rem;
  }

  .hero__content {
    margin-left: 0;
    padding-top: 0rem;
  }

  .hero__buttons {
    justify-content: flex-start;
  }

  .hero__btn {
    font-size: 1rem;
    padding: 0.7rem 1.5rem;
  }

  .hero__title {
    font-size: 1.8rem;
    line-height: 1.4;
  }
}

/* Rotating word styling */
#rotating-word {
  text-decoration: underline;
  color: #2c8ef7;
}





/*=============== TRUST SECTION HEADING ===============*/
.trust-heading {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: #2B2B2B;
  margin-top: 2.2rem;
  font-family: 'Inter', sans-serif;
}

/*=============== UNDERLINE UTILITY ===============*/
/* Currently unused – utility class for underlined text */
.underline {
  text-decoration: underline;
  text-underline-offset: 4px; /* Adjusts underline position slightly */
}

/*=============== BLINK ANIMATION ===============*/
/* Currently unused – could be used for blinking border effect */
@keyframes blink {
  0%, 100% {
    border-color: transparent;
  }
  50% {
    border-color: #ffffff;
  }
}

/*=============== ABOUT SECTION ===============*/
.about {
  padding: 4rem 2.5rem;
  padding-top: 35px; /* Overrides top padding from shorthand above */
}

.about__title {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 1.4rem;
}

.about__intro-text {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 2.3rem;
  max-width: 1024px;
}

.about__content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  line-height: 1.7rem;
  align-items: flex-start;
}

.about__text {
  flex: 1;
  min-width: 280px;
  font-size: 1.2rem;
}

.about__text p {
  line-height: 1.8rem;
}
.about__image img {
  max-width: 450px;
  width: 100%;
  height: auto;
  object-fit: contain;
}
/* Allow wrapping on mobile */
@media (max-width: 768px) {


  .about__title {
    font-size: 1.8rem;
  }

  .about__intro-text{
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .about__text{
    font-size: 1rem;
    margin-bottom: 1rem;
     }

}



/*=============== TEXT HIGHLIGHT ===============*/
.nexora {
  color: #007AFF;
}

/*=============== LINK STYLES ===============*/
.about__link {
  color: #007AFF;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.about__link:hover {
  color: #2B2B2B;
  text-decoration: underline;
}


/*=============== PARTNER SECTION ===============*/
.partner {
  padding: 1rem 2.5rem; /* Left/right spacing */
  text-align: center;
}

.partner-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #2B2B2B;
}

/*=============== GRID OF PARTNER LOGOS ===============*/
.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 0 auto;
}

.partner-grid img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/*=============== CEO SECTION ===============*/
.ceo-section {
  padding-top: 4rem;
  padding-left: 1.2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.ceo-title {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #2B2B2B;
  text-align: left;
  margin-left: -50px;
}

.ceo-intro {
  font-size: 1.12rem;
  line-height: 1.5;
  margin-bottom: 2.3rem;
  text-align: left;
  margin-left: -50px;
}

.ceo-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}

.ceo-text {
  flex: 1;
  font-size: 1.12rem;
  line-height: 1.6;
  min-width: 280px;
  margin-left: -50px;
}

.ceo-image img {
  max-width: 450px;
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-top: -80px;
}




/*=============== FOOTER SECTION ===============*/
.footer {
  background-color: #1f1f1f;
  padding: 3rem 1.5rem 1rem;
  font-family: 'Segoe UI', sans-serif;
  color: #ffffff;
}

/* Container layout */
.footer__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.footer__column {
  flex: 1;
  min-width: 220px;
}

.footer__column h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.footer__column ul {
  list-style: none;
  padding: 0;
}

.footer__column ul li {
  margin-bottom: 0.5rem;
}

.footer__column ul li a {
  text-decoration: none;
  color: #ffffff;
  transition: color 0.3s ease;
}

.footer__column ul li a:hover {
  color: #007AFF;
}

.footer__column p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0.3rem 0;
}

/*=============== SOCIAL ICONS ===============*/
.socials {
  margin-top: 1rem;
}

.socials a {
  display: inline-block;
  margin-right: 0.6rem;
  font-size: 1.2rem;
  color: #ffffff;
  transition: transform 0.3s ease, color 0.3s ease;
}

.socials a:hover {
  transform: scale(1.2);
  color: #007AFF;
}

/*=============== NEWSLETTER ===============*/
.footer__newsletter {
  text-align: center;
  padding: 1rem 1.5rem;
  margin: 1rem auto 70px;
  max-width: 650px;
  border-radius: 20px;
}

.footer__newsletter h3 {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.newsletter__text {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 1.8rem;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.newsletter-form input {
  padding: 0.9rem 1.2rem;
  border: none;
  border-radius: 50px;
  outline: none;
  width: 350px;
  font-size: 1rem;
  background: #fff;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}

.newsletter-form input:focus {
  box-shadow: 0 0 0 2px #007AFF55;
}

.newsletter-form button {
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(to right, #007AFF, #0056c5);
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}

.newsletter-form button:hover {
  background: linear-gradient(to right, #0056c5, #003e99);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 86, 197, 0.4);
}

/*=============== BOTTOM LINE ===============*/
.footer__bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.9rem;
  color: #c2c2c2;
  border-top: 1px solid #eee;
}

/*=============== FOOTER LINK HOVER EFFECT ===============*/
.footer-link {
  position: relative;
  color: #ffffff;
  text-decoration: none;
  font-weight: 400;
  display: inline-block;
  padding-bottom: 1px;
  transition: color 0.3s ease;
}

.footer-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #007AFF;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.footer-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.footer-link:hover {
  color: #007AFF;
}

/*=============== ICON FIX ===============*/
.fa-phone-alt {
  transform: none !important;
}









/*=============== RESPONSIVE: Partner Section ===============*/
@media (max-width: 992px) {
  .partner-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .partner-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}


/*=============== RESPONSIVE: CEO Section ===============*/
@media (max-width: 992px) {
  .ceo-title,
  .ceo-intro,
  .ceo-text {
    text-align: left;
  }

  .ceo-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .ceo-text {
    font-size: 1rem;
  }

  .ceo-image img {
    margin-top: 0;
    max-width: 100%;
  }
}
