@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

/* Root Variables */
:root {
  --default-font:
    "Open Sans", "Roboto", sans-serif, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Open Sans", "Roboto", sans-serif;
  --nav-font: "Open Sans", "Roboto", sans-serif;

  --primary-color: #000;
  --secondary-color: #080808;
  --bg-color: #fff;
  --border-color: #ccc;
  --border-radius: 6px;
  --transition-speed: 0.3s;
  --btn-background: #22c55e;
  --btn-hover: #16a34a;
}

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

:root {
  scroll-behavior: smooth;
}

/* Body */
body {
  font-family: var(--default-font);
  font-weight: 400;
  color: var(--primary-color);
  background-color: var(--bg-color);
  line-height: 1.5;
}

/* Links */
a {
  text-decoration: none;
  font-family: var(--nav-font);
  color: var(--primary-color);
  transition: color var(--transition-speed);
}
a:hover {
  color: var(--secondary-color);
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  /* color: var(--primary-color); */
  font-weight: 700 !important;
  font-family: var(--heading-font);
  opacity: 0.8 !important;
  line-height: 1.3;
  /* margin-bottom: 0.5em; */
}

/* Paragraphs and Labels */
p,
label {
  font-size: 15px;
  font-family: var(--default-font);
  color: var(--secondary-color);
  opacity: 0.7;
  margin-bottom: 0.8em;
  letter-spacing: 0.5px;
  line-height: 25px;
}

/* Buttons */
button {
  font-family: var(--default-font);
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  background-color: var(--btn-background);
  border: none;
  border-radius: var(--border-radius);
  padding: 0.6em 1.2em;
  cursor: pointer;
  transition:
    background-color var(--transition-speed),
    transform var(--transition-speed);
}
button:hover {
  background-color: var(--btn-hover);
  transform: translateY(-2px);
}
button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Inputs, Textareas, Selects */
input,
textarea {
  width: 100%;
}
input,
textarea,
select {
  font-family: var(--default-font);
  font-size: 16px;
  color: var(--secondary-color);
  padding: 0.5em 0.8em;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  outline: none;
  transition:
    border-color var(--transition-speed),
    box-shadow var(--transition-speed);
}
input:focus,
textarea:focus,
select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 4px rgba(40, 56, 81, 0.3);
}

/* Textarea */
textarea {
  resize: vertical;
}

/* Form Labels and Fieldsets */
label {
  display: block;
  margin-bottom: 0.3em;
}

/* Optional: Inputs with error state */
input.error,
textarea.error,
select.error {
  border-color: red;
  box-shadow: 0 0 4px rgba(255, 0, 0, 0.3);
}

/* Lists */
ul,
ol {
  /* padding-left: 1.5em;
  margin-bottom: 1em; */
}

/* Images */
img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ========== Mobile screens NAVBAR ========= */
.logo {
  width: 65px;
}
.show-menu {
  transform: translateX(0);
}
.active {
  color: #22c55e;
  border-bottom: 2px solid #22c55e;
}

/* ============= HERO HOME =======  */
.swiper-slide {
  width: 100% !important;
  flex-shrink: 0;
}
.swiper-wrapper {
  margin: 0;
  padding: 0;
}
.swiper-button-next,
.swiper-button-prev {
  color: #22c55e !important;
}
.swiper-button-next {
  padding-left: 15px;
}
.swiper-button-prev {
  padding-right: 15px;
}
.swiper-pagination-bullet-active {
  background-color: #22c55e !important;
}
.hero {
  height: 600px;
}
.hero-image {
  background: url("images/hero_primary.jpeg");
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
}
.hero-image2 {
  background: url("images/hero_secondary.jpeg");
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
}
.hero-swiper {
  overflow: hidden;
}

.hero-content h1 {
  font-size: 48px;
  color: white;
}
@media screen and (max-width: 768px) {
  .hero-content h1 {
    font-size: 36px;
  }
}
.hero-content p {
  color: white;
}

/* ============ HERO OTHER PAGE ======= */
.hero-other {
  padding-bottom: 100px;
  min-height: 500px;
  /* max-height: 500px; */
}

/* ========== FEATURE =======   */
.heading-one {
  color: #22c55e;
}
.feature-icon {
  color: rgb(34, 197, 94);
  font-size: 20px;
}

.feature-heading {
  font-size: 48px;
}
@media (max-width: 1024px) {
  .feature-wrapper img {
    height: 500px;

    object-fit: cover;
  }
}
@media (max-width: 768px) {
  .feature-wrapper img {
    height: auto;
    aspect-ratio: 16/12;

    object-fit: cover;
  }
}
@media screen and (max-width: 768px) {
  .feature-heading {
    font-size: 36px;
  }
}
.feature-list-items p {
  color: var(--primary-color);
}

/* ======= OUR RANGE =======  */
.card {
  /* transition: all 3s ease-in-out; */
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  background-color: white;
}

.card:hover {
  transform: scale(1.05) !important;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.card p {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .card img {
    width: 100%;
    height: 350px;
    aspect-ratio: 16/12;
    object-fit: cover;
  }
}
.card-icon {
  font-size: 14px;
  color: rgb(34, 197, 94);
}

/* ======= INDUSTRY ====   */
.industry-wrapper {
  background-color: #1d2e28;
}
.industry {
  background-color: #18292b;
}
.industry h4,
.industry p {
  color: white;
}

/* ====== Footer ======  */
#footer p,
#footer li a {
  color: var(--secondary-color) !important;
  opacity: 0.7;
}

/* ===== Product ======  */
.product-card p {
  margin-bottom: 0px;
}

/* ===== Contact =====  */
.contact-wrapper p {
  color: white;
  font-weight: 600;
}

/* ===== FAQ ====  */
.faq-content {
  display: none;
}
.faq-icon {
  min-width: 30px;
  min-height: 30px;
}
.faq-icon i {
  transition: all 0.3s ease;
}

.faq-item.faq-active .faq-icon i {
  transform: rotate(180deg);
}
.faq-item.faq-active .faq-content {
  display: block;
}

/* ========= blog =======  */
.blog-details-feature-image {
  height: auto;
}
@media screen and (min-width: 992px) {
  .blog-details-feature-image {
    max-height: 600px;
  }
}
