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

:root {
  /* Container */
  --container-md: 1100px;
  --container-lg: 1400px;
  --container-sm: 900px;

  /* Brand Colors */
  --primary: #214007;
  --primary-hover: #2c550a;
  --primary-active: #183005;

  --secondary: #5e7a2f;
  --accent: #8fbf3d;

  /* Backgrounds */
  --background-light: #f8faf5;
  --background-dark: #0f140a;
  --background-dark-secondary: #191e0f;

  /* Text */
  --text-primary: #1a1a1a;
  --text-secondary: #4b5563;
  --text-muted: #6b7280;
  --text-light: #f5f7f2;

  /* Status */
  --success: #4caf50;
  --warning: #f59e0b;
  --error: #dc2626;
  --info: #2563eb;
}

html,
body {
  font-family: "Open Sans", sans-serif;
  scroll-behavior: smooth;
  scroll-padding-top: 115px;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

p {
  line-height: 1.6;
}

/* Margins and Padding */

/* margin top */
.mt-0 {
  margin-top: 0.5rem;
}
.mt-2 {
  margin-top: 2rem;
}

/* margin bottom */
.mb-1 {
  margin-bottom: 1rem;
}

/* margin top and bottom */
.mx-0 {
  margin: 0.5rem 0;
}
.mx-1 {
  margin: 1rem 0;
}
.mx-2 {
  margin: 2rem 0;
}

/* padding */
.p-0 {
  padding: 0.5rem;
}
.p-1 {
  padding: 1rem;
}
.p-2 {
  padding: 2rem;
}

/* Utilities */
.bg-dark {
  background: var(--background-dark);
  color: var(--text-light);
}

.bg-light {
  background: var(--background-light);
  color: var(--text-primary);
}

.container {
  width: 90%;
  max-width: var(--container-md);
  margin: 0 auto;
}

.container-sm {
  width: 50%;
  max-width: var(--container-sm);
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

.heading-border-dark {
  width: 4rem;
  height: 0.2rem;
  background: var(--background-dark);
  margin: 0.25rem auto 2rem;
}

.heading-border-light {
  width: 4rem;
  height: 0.2rem;
  background: white;
  margin: 0.25rem auto 2rem;
}

.btn-primary {
  background: var(--primary);
  color: var(--text-light);
  border: none;
  border-radius: 2rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.btn-primary:hover {
  background: var(--primary-hover);
}

/* Header */
.bg-img {
  background: url("../images/spice-bg-1.jpg") no-repeat center center/cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
.overlay {
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
}

/* Navbar */
.navbar {
  background: transparent;
  color: var(--text-light);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background-color 0.3s ease-in-out;
}

.navbar.navbar-scroll {
  background-color: var(--primary);
}

.navbar-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 4rem;
}

.navbar ul {
  display: flex;
  gap: 1rem;
  font-weight: 500;
}

.navbar ul a {
  color: var(--text-light);
}

.navbar ul a:hover {
  background: var(--secondary);
  color: var(--text-light);
  border-radius: 5px;
  transition: all 0.3s ease;
}

.navbar .logo img {
  height: 80px;
}

/* Home Section */
.home-section {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.home-section a {
  display: inline-block;
  border: 1px solid white;
}

/* Products Section */
.products-section h2 {
  font-size: 2rem;
}

.products-section .product-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.products-section .product-item img {
  border-radius: 10px;
  border: 1px solid black;
}

.products-section p {
  font-size: 1rem;
}

.products-section .view-catalogue {
  text-align: right;
}
.products-section a {
  display: inline-block;
}

/* About Section */
.about-section h2 {
  font-size: 2rem;
}

.about-section .about-item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.about-section .about-item img {
  border-radius: 10px;
  height: 25rem;
  margin: 0 auto;
}

/* Why Us */
.why-us-section h2 {
  font-size: 2rem;
}
.why-us-section ul li i {
  color: var(--success);
}

.why-us-section .why-us,
.why-us-section .export-process,
.why-us-section .industries {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.why-us-section .why-us li,
.why-us-section .export-process li:nth-child(odd),
.why-us-section .industries li {
  border: 1px solid var(--background-dark);
  border-radius: 1.5rem;
  padding: 0.5rem 1rem;
}

.why-us-section .export-process li:nth-child(even) {
  padding: 0.5rem 0;
}

/* Contact Section */
.contact-section h2 {
  font-size: 2rem;
}

.contact-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.contact-items iframe {
  width: 100%;
  height: 40%;
  border: none;
}

.contact-items ul li a {
  color: var(--text-light);
}

.contact-items form {
  width: 100%;
  margin: 0 auto;
}

.form-group label::after {
  content: " *";
  color: var(--error);
}

.form-group label[for="website"]::after {
  content: none;
}

/* intlTelInput */

.iti {
  width: 100%;
  color: var(--text-primary);
}

.iti__tel-input {
  width: 100%;
}

#iti-0__search-input {
  font-size: 1rem;
  outline: 0;
}

.form-group label {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  background: var(--background-light);
  color: var(--text-primary);
  outline: 0;
}

.form-group textarea {
  font-family: "Open Sans", sans-serif;
  height: 10rem;
  resize: none;
}

/* validation message */
.form-status,
.form-group .error-message {
  display: block;
  padding: 0.5rem;
  border-radius: 5px;
  margin-top: 0.5rem;
}

.form-status.success {
  background: var(--success);
  color: var(--text-light);
}

.form-status.error,
.form-group .error-message {
  background: var(--error);
  color: var(--text-light);
}

.contact-section form button {
  width: 100%;
}

.contact-section form button:hover {
  cursor: pointer;
}

/* FAQ Section */
.faq-section .qa {
  border-left: 4px solid var(--warning);
  padding-left: 2rem;
}

.faq-section .qa:nth-child(even) {
  margin: 1rem 0;
}
