@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

/* || RESET */

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea {
  font: inherit;
}

/* ||||||||||||||||||||||||||||||||||||||||||||||||||||| */

/* || VARIABLES */

:root {
  /* FONTS */
  --FF: "Poppins", sans-serif;
  --FF-BODY-WEIGHT: 400;
  --FF-BUTTON-WEIGHT: 500;
  --FF-HEADING-WEIGHT: 600;
  --FF-BOLDER-WEIGHT: 700;
  --FS-SMALL: clamp(0.75rem, 0.8vw, 0.875rem); /* Small text (e.g., captions) */
  --FS-MEDIUM: clamp(0.875rem, 1.2vw, 1rem); /* Body text */
  --FS-LARGE: clamp(1rem, 1.8vw, 1.25rem); /* Subheadings */
  --FS-XLARGE: clamp(1.25rem, 2.5vw, 1.75rem); /* Headings (h2, h3) */
  --FS-XXLARGE: clamp(1.75rem, 3.5vw, 2.5rem); /* Main Headings (h1) */
  --FS-XXXLARGE: clamp(
    2.5rem,
    5vw,
    3.5rem
  ); /* Larger than Main Headings (h1) */

  /* TEXT SHADOWS */
  --TEXT-SHADOWS-HEADING: 2px 2px 5px rgba(0, 0, 0, 0.5);
  --TEXT-SHADOWS: 1px 1px 4px rgba(0, 0, 0, 0.3);

  /* BACKGROUND COLORS */
  --BODY-BGCOLOR: #fff;
  --HEADER-BGCOLOR: #000;
  --TABLE-HEADING-BGCOLOR: whitesmoke;

  --BGCOLOR: #eee; /* used on many container */

  --BGCOLOR-FADE: rgb(252, 220, 160);
  --WHY-US-BGCOLOR: #eee;
  --FOOTER-BGCOLOR: #e8e8e8;
  --BOX-BGCOLOR: #f9f9f9;
  --BANNER-BGCOLOR: lightgray;
  --BOX-DARK-BGCOLOR: lightgray;
  --HERO-BGCOLOR: rgba(51, 178, 51, 0.75);
  --NAV-BGCOLOR: #fff;
  --BGIMAGE: linear-gradient(to bottom, var(--BGCOLOR), var(--BGCOLOR-FADE));

  /* BORDER COLOR */
  --BORDER-COLOR: #333;
  --BORDER-COLOR-LIGHT: silver;

  /* FONT COLOR */
  --FONT-COLOR: #000;
  --LIGHT-FONT-COLOR: #fff;
  --HIGHLIGHT-COLOR: rgb(51, 178, 51);
  --LINK-COLOR: #000;
  --LINK-HOVER: var(--SIXTH-DARKER-TEAL) /* hsla(0, 0%, 0%, 0.6) */;
  --LINK-ACTIVE: var(--FIRST-PURPLE);;
  --HEADER-COLOR: #fff;
  --HERO-COLOR: #fff;

  /* HERO BUTTON COLORS */
  --BUTTON-COLOR: #fff;
  --HERO-BUTTON-BGCOLOR: #000;
  --HERO-BUTTON-COLOR: #fff;
  --HERO-BUTTON-SECONDARY-BGCOLOR: transparent;

  /* GRADIENT COLORS WITH OPACITY */
  --FIRST-PURPLE-OP: rgba(147, 98, 250, 0.5);
  --SECOND-LIGHT-PURPLE-OP: rgba(135, 120, 238, 0.8);
  --THIRD-LIGHT-BLUE-OP: rgba(117, 151, 221, 0.8);
  --FOURTH-TEAL-OP: rgba(94, 174, 206, 0.8);
  --FIFTH-MINT-GREEN-OP: rgba(54, 212, 179, 0.8);
  --SIXTH-DARKER-TEAL-OP: rgba(50, 190, 161, 0.8);

  /* GRADIENT COLORS */
  --FIRST-PURPLE: rgb(147, 98, 250);
  --SECOND-LIGHT-PURPLE: rgb(135, 120, 238);
  --THIRD-LIGHT-BLUE: rgb(117, 151, 221);
  --FOURTH-TEAL: rgb(94, 174, 206);
  --FIFTH-MINT-GREEN: rgb(54, 212, 179);
  --SIXTH-DARKER-TEAL: rgb(50, 190, 161);

  /* BORDERS */
  --BORDERS: 1px solid var(--BORDER-COLOR);
  --BORDER-RADIUS: 15px;
  --BUTTON-BORDER-RADIUS: 7.5px;

  --FS-SMALL: clamp(0.75rem, 0.8vw, 0.875rem); /* Small text (e.g., captions) */
  --FS-MEDIUM: clamp(0.875rem, 1.2vw, 1rem); /* Body text */
  --FS-LARGE: clamp(1rem, 1.8vw, 1.25rem); /* Subheadings */
  --FS-XLARGE: clamp(1.25rem, 2.5vw, 1.75rem); /* Headings (h2, h3) */
  --FS-XXLARGE: clamp(1.75rem, 3.5vw, 2.5rem); /* Main Headings (h1) */
  --FS-XXXLARGE: clamp(
    2.5rem,
    5vw,
    3.5rem
  ); /* Larger than Main

  /* STANDARD PADDING */
  --PADDING-XSMALL: clamp(0.25rem, 0.8vh, 0.5rem);
  --PADDING-SMALL: clamp(0.5rem, 1.2vh, 1rem);
  --PADDING-STANDARD: clamp(1rem, 1.8vh, 1.25rem);
  --PADDING-LARGE: clamp(1.25rem, 2.5vh, 1.75rem);
  --PADDING-XLARGE: clamp(1.75rem, 3.5vh, 2.5rem);
  --PADDING-XXLARGE: clamp(2.5rem, 5vh, 3.5rem);
  --PADDING-XXXLARGE: clamp(3.5rem, 7.5vh, 4.5rem);

  /* STANDARD CONTENT AREA */
  --CONTENT-MAX-WIDTH: 80%;
}

@media (prefers-color-scheme: dark) {
  :root {
  /*
    --BGCOLOR: #000;
    --BGCOLOR-FADE: gray;
    --HEADER-COLOR: whitesmoke;
    --NAV-BGCOLOR: rgb(20, 20, 20);
    --HERO-COLOR: #333;
    --BODY-BGCOLOR: #333;
    --FONT-COLOR: whitesmoke;
    --HIGHLIGHT-COLOR: whitesmoke;
    --BORDER-COLOR: whitesmoke;
    --LINK-COLOR: whitesmoke;
    --LINK-HOVER: orange;
    --LINK-ACTIVE: rgb(252, 200, 103);
    --BUTTON-COLOR: #000;
  */
  
    /* BACKGROUND COLORS */
    --BODY-BGCOLOR: #121212;
    --HEADER-BGCOLOR: #1f1f1f;
    --TABLE-HEADING-BGCOLOR: #2a2a2a;
    
    --BGCOLOR: #1e1e1e; /* used on many containers */
    --BGCOLOR-FADE: #2c2c2c;
    --WHY-US-BGCOLOR: #1e1e1e;
    --FOOTER-BGCOLOR: #1a1a1a;
    --BOX-BGCOLOR: #252525;
    --BANNER-BGCOLOR: #333;
    --BOX-DARK-BGCOLOR: #2d2d2d;
    --HERO-BGCOLOR: rgba(51, 178, 51, 0.3); /* Keep same tint but fade more */
    --NAV-BGCOLOR: #1f1f1f;
    --BGIMAGE: linear-gradient(to bottom, var(--BGCOLOR), var(--BGCOLOR-FADE));
    
    /* BORDER COLOR */
    --BORDER-COLOR: #444;
    --BORDER-COLOR-LIGHT: #666;
    
    /* FONT COLOR */
    --FONT-COLOR: #f1f1f1;
    --LIGHT-FONT-COLOR: #ccc;
    --HIGHLIGHT-COLOR: rgb(51, 178, 51); /* same */
    --LINK-COLOR: #bbb;
    --LINK-HOVER: var(--SIXTH-DARKER-TEAL);
    --LINK-ACTIVE: orange;
    --HEADER-COLOR: #eee;
    --HERO-COLOR: #fff;
    
    /* HERO BUTTON COLORS */
    --BUTTON-COLOR: #000;
    --HERO-BUTTON-BGCOLOR: #fff;
    --HERO-BUTTON-COLOR: #000;
    --HERO-BUTTON-SECONDARY-BGCOLOR: transparent;
    
    /* GRADIENT COLORS WITH OPACITY */
    --FIRST-PURPLE-OP: rgba(147, 98, 250, 0.3);
    --SECOND-LIGHT-PURPLE-OP: rgba(135, 120, 238, 0.4);
    --THIRD-LIGHT-BLUE-OP: rgba(117, 151, 221, 0.4);
    --FOURTH-TEAL-OP: rgba(94, 174, 206, 0.4);
    --FIFTH-MINT-GREEN-OP: rgba(54, 212, 179, 0.4);
    --SIXTH-DARKER-TEAL-OP: rgba(50, 190, 161, 0.4);
    
    /* GRADIENT COLORS */
    --FIRST-PURPLE: rgb(147, 98, 250);
    --SECOND-LIGHT-PURPLE: rgb(135, 120, 238);
    --THIRD-LIGHT-BLUE: rgb(117, 151, 221);
    --FOURTH-TEAL: rgb(94, 174, 206);
    --FIFTH-MINT-GREEN: rgb(54, 212, 179);
    --SIXTH-DARKER-TEAL: rgb(50, 190, 161);
  }
}

/* ||||||||||||||||||||||||||||||||||||||||||||||||||||| */

/* || UTILITY CLASSES */
.offscreen {
  position: absolute;
  left: -10000px;
}

.nowrap {
  white-space: nowrap;
}

.center {
  text-align: center;
}

/* ||||||||||||||||||||||||||||||||||||||||||||||||||||| */

/* || GENERAL STYLES */

html {
  scroll-behavior: smooth;
  font-size: var(--FS-MEDIUM);
  font-family: var(--FF);
  /* background-color: var(--BGCOLOR); */
  /* background-image: var(--BGIMAGE); */
}

body {
  background-color: var(--BODY-BGCOLOR);
  color: var(--FONT-COLOR);
  min-height: 100vh;
  max-width: 100%;
  margin: 0 auto;
  /* border-left: var(--BORDERS);
  border-right: var(--BORDERS);
  box-shadow: 0 0 10px var(--BORDER-COLOR); */
}

.content {
  max-width: var(--CONTENT-MAX-WIDTH);
  margin: 0 auto;
  width: 100%;
  display: grid;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: var(--PADDING-XXXLARGE) 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--FF-HEADING-WEIGHT);
  letter-spacing: 0.00em;
}

h1 {
  font-size: var(--FS-XXLARGE);
}

h2 {
  font-size: var(--FS-XLARGE);
}

h3 {
  font-size: var(--FS-LARGE);
}

p {
  font-weight: var(--FF-BODY-WEIGHT);
  line-height: 1.5;
  font-size: var(--FS-MEDIUM);
}

.smaller {
  font-size: var(--FS-SMALL);
}

.larger {
  font-size: var(--FS-XXXLARGE);
}

.purple {
  color: var(--FIRST-PURPLE);
}

button {
  font-weight: var(--FF-BUTTON-WEIGHT);
}

/* a:any-link {
  color: var(--LINK-COLOR);
}

a:hover,
a:focus-visible {
  color: var(--LINK-HOVER);
}

a:active {
  color: var(--LINK-ACTIVE);
} */

/* ||||||||||||||||||||||||||||||||||||||||||||||||||||| */

/* || COMMON */

/* BUTTON */

.button a {
  display: inline-block;
  cursor: pointer;
  background-color: var(--SIXTH-DARKER-TEAL);
  color: var(--BUTTON-COLOR);
  /* margin: 0px 10px; */
  padding: var(--PADDING-SMALL) var(--PADDING-STANDARD);
  text-decoration: none;
  border-radius: 5px;
  font-weight: var(--FF-BUTTON-WEIGHT);
  text-align: center;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
}

.button a:hover {
  background-color: var(--FIFTH-MINT-GREEN);
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  gap: 0.5rem;
}

.social-icons a {
  align-items: center;
  font-size: var(--FS-LARGE);
  transition: transform 0.1s ease-in-out;
}

.social-icons a.facebook {
  color: #1877f2; /* Facebook Blue */
}

.social-icons a.instagram {
  background: linear-gradient(
    45deg,
    #feda75,
    #fa7e1e,
    #d62976,
    #962fbf,
    #4f5bd5
  );
  background-clip: text; /* Standard property */
  -webkit-background-clip: text; /* For WebKit browsers (Chrome, Safari) */
  -webkit-text-fill-color: transparent; /* Make text transparent */
  display: inline-block; /* Needed for proper rendering */
}

.social-icons a.linkedin {
  color: #0077b5; /* LinkedIn Blue */
}

.social-icons .social-icon-img {
  width: 1em;
  height: 1em;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
}

.social-icons a:hover {
  transform: scale(1.2); /* Slight zoom effect */
}

/* ||||||||||||||||||||||||||||||||||||||||||||||||||||| */

/* || HEADER */

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--HEADER-BGCOLOR);
}

.header-content {
  max-width: var(--CONTENT-MAX-WIDTH);
  margin: var(--PADDING-SMALL) auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.header-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--NAV-BGCOLOR);
  width: 100%;
  position: relative;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0.3rem 0;
  padding: 0;
}

.header-content img {
  width: 80px;
  height: auto;
}

.header-menu-button-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}

.header-menu {
  display: flex;
  gap: 2em;
  position: relative;
  margin-left: auto;
  margin-right: 2em;
}

.header-menu li {
  list-style-type: none;
  position: relative;
}

.header-menu a {
  text-transform: uppercase;
  color: var(--FONT-COLOR);
  font-weight: var(--FF-BUTTON-WEIGHT);
  text-decoration: none;
  font-size: var(--FS-MEDIUM);
  padding: var(--PADDING-XSMALL) var(--PADDING-SMALL);
}

.header-menu a:hover {
  background-color: transparent;
  border-radius: var(--BORDER-RADIUS);
  color: var(--LINK-HOVER);
}

.header-menu a:focus,
.header-menu a:active {
  text-decoration: none;
  color: var(--LINK-ACTIVE);
}

.header-submenu {
  display: none;
  position: absolute;
  top: 100%;
  background-color: var(--NAV-BGCOLOR);
  padding: var(--PADDING-XSMALL);
  border-radius: var(--BORDER-RADIUS);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  min-width: 220px;
  z-index: 1000;
}

.header-submenu li a {
  font-weight: var(--FF-BODY-WEIGHT);
  padding: var(--PADDING-XSMALL);
  display: block;
  color: var(--FONT-COLOR);
}

.header-submenu li a:hover {
  border-radius: 0;
}

.header-submenu-parent {
  position: relative; /* Ensure it is the reference for absolute positioning */
}

.header-submenu-parent:hover .header-submenu {
  display: block; /* Show submenu when hovering over parent */
}

.header-menu-toggle {
  display: none; /* Hide hamburger menu */
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  position: absolute;
  right: 20px; /* Align hamburger to the right side of the navbar */
  top: 20px; /* Position the hamburger icon a bit lower */
  z-index: 1000; /* Ensure it stays above other elements */
}

.header-menu-bar {
  width: 25px;
  height: 3px;
  background-color: var(--BODY-BGCOLOR);
  border-radius: 5px;
}

@media (max-width: 768px) {
  /* Initially hide the menu */
  .header-menu {
    display: none; /* Hide menu */
    /* gap: 0.5em; */
  }

  .header-menu.active {
    display: grid; /* Show menu when active */
    grid-template-columns: repeat(3, 1fr) ;
    /*flex-direction: row;*/
    background-color: var(--NAV-BGCOLOR);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: var(--PADDING-SMALL) var(--PADDING-STANDARD);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    z-index: 1000;
  }

  .header-menu li {
    width: 100%;
    text-align: left;
  }

  .header-menu a {
    display: block;
    padding: 10px;
  }

  /* Show hamburger menu */
  .header-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%; /* Move to the middle */
    transform: translateY(-50%); /* Adjust for perfect centering */
    z-index: 1000;
    padding: var(--PADDING-SMALL);
  }

  /* The blinking cursor in the background when
     clicking the hamburger menu happens because
     an invisible focus is being placed on an element */
  /* Fix: Remove Focus Outline & Prevent Focus */
  .header-menu-toggle:focus,
  .header-menu-toggle:active {
    outline: none;
    border: none;
    user-select: none;
  }

  .header-menu-toggle .bar {
    width: 30px;
    height: 3px;
    background-color: var(--FONT-COLOR);
    border-radius: 5px;
    transition: all 0.2s ease-in-out;
  }

  /* Transform to 'X' when menu is active */
  .header-menu-toggle.active .bar:first-child {
    transform: rotate(45deg) translate(5.5px, 5.55px);
  }

  .header-menu-toggle.active .bar:nth-child(2) {
    opacity: 0; /* Hide the middle bar */
  }

  .header-menu-toggle.active .bar:last-child {
    transform: rotate(-45deg) translate(5.5px, -5.5px);
  }

  /* Ensure X stays visible when hovering over menu */
  .header-menu-toggle:hover .bar:nth-child(2),
  .header-menu-toggle:focus .bar:nth-child(2),
  .header-menu.active ~ .header-menu-toggle .bar:nth-child(2) {
    opacity: 0;
    transition: all 0.1s ease-in-out;
  }

  .header-menu.active ~ .header-menu-toggle .bar:first-child {
    transform: rotate(45deg) translate(5.5px, 5.5px);
  }

  .header-menu.active ~ .header-menu-toggle .bar:last-child {
    transform: rotate(-45deg) translate(5.5px, -5.5px);
  }

  /* Reset to 3-line hamburger when inactive */
  .header-menu-toggle:not(.active) .bar:nth-child(2) {
    opacity: 1; /* Ensure middle bar is visible when menu is closed */
    transition: all 0.1s ease-in-out;
  }

  /* Hide booking button on small screens */
  .header-content .button {
    display: none;
  }
}

/* ||||||||||||||||||||||||||||||||||||||||||||||||||||| */

/* || HERO */

.hero-gradient {
  position: relative;
  min-height: 50vh;
  padding: var(--PADDING-XXXLARGE) 0;
  background: linear-gradient(
      to bottom,
      var(--FIRST-PURPLE-OP) 0%,
      var(--FIRST-PURPLE-OP) 50%,
      var(--SECOND-LIGHT-PURPLE-OP) 50%,
      var(--SECOND-LIGHT-PURPLE-OP) 60%,
      var(--THIRD-LIGHT-BLUE-OP) 60%,
      var(--THIRD-LIGHT-BLUE-OP) 70%,
      var(--FOURTH-TEAL-OP) 70%,
      var(--FOURTH-TEAL-OP) 80%,
      var(--FIFTH-MINT-GREEN-OP) 80%,
      var(--FIFTH-MINT-GREEN-OP) 90%,
      var(--SIXTH-DARKER-TEAL-OP) 90%,
      var(--SIXTH-DARKER-TEAL-OP) 100%
    ),
    url(../img/home-bg.webp);
  background-size: cover;
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Prevent image from repeating */
  display: flex;
  align-items: center;
  justify-content: center; /* Center content horizontally */
  /* z-index: 1; */
  color: var(--HERO-COLOR);
}

.hero-content {
  max-width: var(--CONTENT-MAX-WIDTH);
  display: grid;
  justify-content: flex-start;
  align-items: center;
  padding: var(--PADDING-XSMALL) 0;
  padding-right: 25%;
  text-align: left;
  color: var(--HERO-COLOR);
  position: relative;
}

.hero-content h1 {
  padding-bottom: 0.5em;
  line-height: 1.25;
  text-shadow: var(--TEXT-SHADOWS-HEADING);
}

.hero-content p {
  padding-bottom: 0.5em;
  text-shadow: var(--TEXT-SHADOWS);
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: left;
}

.hero-btn {
  background-color: var(--HERO-BUTTON-BGCOLOR);
  margin: var(--PADDING-STANDARD) 0;
  padding: var(--PADDING-SMALL) var(--PADDING-STANDARD);
  align-items: center;
  text-decoration: none;
  border-radius: 5px;
  transition: opacity 0.3s ease;
  text-transform: uppercase;
  color: var(--HERO-BUTTON-COLOR);
}

.hero-btn:hover {
  opacity: 0.8;
}

.hero-btn.secondary {
  background-color: var(--HERO-BUTTON-SECONDARY-BGCOLOR);
  border: 2px solid var(--BODY-BGCOLOR);
}

.hero-btn.secondary:hover {
  opacity: 0.8;
}

/* ||||||||||||||||||||||||||||||||||||||||||||||||||||| */

/* || SERVICES */

.service-content {
  max-width: var(--CONTENT-MAX-WIDTH);
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: var(--PADDING-XXLARGE) 0;
}

.service-content h2 {
  margin: 0 auto var(--PADDING-XXLARGE) auto;
  color: var(--FIRST-PURPLE);
  text-align: center;
}

.service-content-layout {
  display: grid;
  grid-template-columns: repeat(
    3,
    minmax(0, 1fr)
  ); /* Prevents grid from exceeding parent */
  gap: 80px;
  max-width: 100%;
  box-sizing: border-box; /* Include padding in width calculation */
  margin: 0 auto; /* Center the grid within the parent */
  padding: 0;
  padding-bottom: var(--PADDING-XXXLARGE);
}

.service-content-layout-item {
  width: 100%;
  aspect-ratio: 1 / 1; /* Maintain square shape */
  display: flex;
  justify-content: center;
  align-items: center; /* Center the image within the box */
  text-align: center;
  transition: transform 0.3s ease;
}

.service-content-layout-item:hover {
  transform: translateY(-5px);
}

.service-content-layout-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.3s;
  aspect-ratio: 1 / 1; /* Forces the image itself to be square */
}

.service-content-layout-item:hover img {
  transform: scale(1.05);
}

.service-content-layout-item p {
  margin-top: var(--PADDING-SMALL);
  font-weight: var(--FF-HEADING-WEIGHT);
  text-transform: uppercase;
}

.service-content-layout-item a {
  text-decoration: none;
  color: inherit;
}

@media screen and (max-width: 768px) {
  .service-content-layout {
    grid-template-columns: repeat(2, 1fr); /* 2 columns for medium screens */
    justify-content: center;
    gap: 40px;
  }
}

@media screen and (max-width: 480px) {
  .service-content-layout {
    grid-template-columns: 1fr; /* 1 column on small screens */
    text-align: center;
  }
}

/* ||||||||||||||||||||||||||||||||||||||||||||||||||||| */

/* || WHY CHOOSE US */

.why-us-container {
  width: 100%;
  display: flex;
  padding: var(--PADDING-XXLARGE) 0;
  background-color: var(--BGCOLOR);
  justify-content: center;
}

.why-us-main-content {
  display: grid;
  grid-template-columns: 2.6fr 1fr 1fr 1fr;
  gap: 20px;
  max-width: 80%;
  width: 100%;
  align-items: center;
  text-align: center;
}

.why-us-content {
  text-align: left;
}

.why-us-content h2 {
  margin-bottom: 0.75em;
}

.why-us-content h3 {
  color: var(--FIRST-PURPLE);
  margin-bottom: 0.5em;
}

.why-us-content p {
  /* text-align: justify; */
  margin-bottom: 1em;
}

.why-us-content button {
  padding: 10px 20px;
  font-size: var(--FS-MEDIUM);
  color: var(--BODY-BGCOLOR);
  background-color: var(--SIXTH-DARKER-TEAL);
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.why-us-content button:hover {
  background-color: var(--SIXTH-DARKER-TEAL-OP); /* Darker green on hover */
}

.why-us-sphere-container {
  position: relative;
  display: flex;
  flex-direction: column; /* Stack the content vertically */
  justify-content: center;
  align-items: center;
}

.why-us-sphere {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
    circle at 40% 120%,
    /* Adjust the focal point to bottom-left */ var(--SIXTH-DARKER-TEAL) 0%,
    var(--SIXTH-DARKER-TEAL) 30%,
    var(--FIFTH-MINT-GREEN) 30%,
    var(--FIFTH-MINT-GREEN) 42%,
    var(--FOURTH-TEAL) 42%,
    var(--FOURTH-TEAL) 54%,
    var(--THIRD-LIGHT-BLUE) 54%,
    var(--THIRD-LIGHT-BLUE) 66%,
    var(--SECOND-LIGHT-PURPLE) 66%,
    var(--SECOND-LIGHT-PURPLE) 78%,
    var(--FIRST-PURPLE) 78%,
    var(--FIRST-PURPLE) 100%
  );
  box-shadow: inset -20px -20px 30px rgba(0, 0, 0, 0.3),
    0 10px 20px rgba(0, 0, 0, 0.5);
  position: relative; /* Ensure the overlay text is centered relative to the sphere */
}

.why-us-sphere-overlay-text {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%); /* center the text */
  color: var(--BODY-BGCOLOR);
  font-size: var(--FS-XLARGE);
  font-weight: bold;
  text-shadow: var(--TEXT-SHADOWS-HEADING);
  text-align: center;
  line-height: 1.2;
}

.why-us-sphere-text p {
  margin-top: 10px; /* Add spacing between the sphere and the text */
  font-weight: bold;
  color: var(--FONT-COLOR);
  text-align: center;
}

/* Media query for smaller screens */
@media screen and (max-width: 768px) {
  .why-us-main-content {
    grid-template-columns: 1fr; /* Change to single column */
  }

  .why-us-sphere-container {
    align-items: center; /* Align items to the left */
    text-align: center;
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .why-us-main-content {
    grid-template-columns: 1fr; /* Ensure single column on even smaller screens */
  }

  .why-us-sphere-container {
    align-items: center; /* Align items to the left */
    text-align: center;
    width: 100%;
  }
}

/* ||||||||||||||||||||||||||||||||||||||||||||||||||||| */

/* || 3PL Services */

.threepl {
  width: 100%;
  background-size: cover;
  background-position: center;
  min-height: 40vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.threepl-content {
  max-width: var(--CONTENT-MAX-WIDTH);
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}

.threepl-content-left {
  max-width: var(--CONTENT-MAX-WIDTH);
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

.threepl-content-text-overlay {
  width: 50%;
  text-align: left;
  padding: var(--PADDING-XXLARGE) 0;
  position: relative;
}

.threepl-content-text-overlay h2 {
  padding-bottom: var(--PADDING-SMALL);
}

/* ||||||||||||||||||||||||||||||||||||||||||||||||||||| */

/* || EXPRESS DELIVERIES */

.express-gray {
  width: 100%;
  background-color: var(--BGCOLOR);
  background-size: cover;
  background-position: center;
  min-height: 25vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--PADDING-XSMALL);
  position: relative;
}

.express-gray img {
  width: auto;
  height: 100%;
  max-height: 100%;
  position: absolute;
  padding-top: var(--PADDING-SMALL);
  bottom: 0;
  left: 70%;
  transform: translateX(-50%);
  object-fit: contain;
}

.express-gradient {
  width: 100%;
  height: 6.5vh;
  background: linear-gradient(
    to bottom,
    var(--FIRST-PURPLE) 0%,
    var(--FIRST-PURPLE) 16.67%,
    var(--SECOND-LIGHT-PURPLE) 16.67%,
    var(--SECOND-LIGHT-PURPLE) 33.33%,
    var(--THIRD-LIGHT-BLUE) 33.33%,
    var(--THIRD-LIGHT-BLUE) 50%,
    var(--FOURTH-TEAL) 50%,
    var(--FOURTH-TEAL) 66.67%,
    var(--FIFTH-MINT-GREEN) 66.67%,
    var(--FIFTH-MINT-GREEN) 83.33%,
    var(--SIXTH-DARKER-TEAL) 83.33%,
    var(--SIXTH-DARKER-TEAL) 100%
  );
  display: flex;
  justify-content: center;
  align-items: center;
}

.express-content {
  width: 100%;
  max-width: var(--CONTENT-MAX-WIDTH);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: var(--PADDING-LARGE) 0;
}

.express-content-text {
  width: 35%;
  text-align: left;
  color: var(--FONT-COLOR);
  padding: var(--PADDING-XSMALL) 0;
  position: relative;
}

.express-content-text h2 {
  padding-bottom: var(--PADDING-SMALL);
}

/* ||||||||||||||||||||||||||||||||||||||||||||||||||||| */

/* || OUR BRANCHES */

.branches-content {
  max-width: var(--CONTENT-MAX-WIDTH);
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: var(--PADDING-XXLARGE) 0;
}

.branches-content h2 {
  margin-bottom: 2.5rem;
  color: var(--FIRST-PURPLE);
}

.branches-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.branches-container {
  width: 100%;
  overflow: hidden; /* Hide overflowing content */
}

.branches-content-layout {
  display: flex;
  gap: 40px;
  justify-content: flex-start; /* Align items to the start for smooth scrolling */
  width: max-content; /* Ensure it takes only necessary space */
  padding: 0;
  scroll-behavior: smooth; /* Enable smooth scrolling */
  align-items: stretch; /* Ensures all items stretch equally */
  scrollbar-width: none; /* Hide scrollbar for Firefox */
}

/* Hide scrollbar for Webkit browsers (Chrome, Safari) */
.branches-content-layout::-webkit-scrollbar {
  display: none;
}

.services-content-layout {
  display: flex;
  gap: 40px;
  justify-content: flex-start; /* Align items to the start for smooth scrolling */
  width: max-content; /* Ensure it takes only necessary space */
  padding: 0;
  scroll-behavior: smooth; /* Enable smooth scrolling */
  align-items: stretch; /* Ensures all items stretch equally */
  scrollbar-width: none; /* Hide scrollbar for Firefox */
}

/* Hide scrollbar for Webkit browsers (Chrome, Safari) */
.services-content-layout::-webkit-scrollbar {
  display: none;
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  color: var(--SIXTH-DARKER-TEAL);
  border: none;
  cursor: pointer;
  font-size: var(--FS-XXLARGE);
  border-radius: 50%;
  z-index: 10;
  transition: background 0.3s;
}

/* Positioning the buttons outside the 80% width */
.left {
  left: -4%; /* Position outside the left boundary */
}

.right {
  right: -4%; /* Position outside the right boundary */
}

.scroll-btn:hover {
  color: var(--FIRST-PURPLE);
}

.branches-box {
  flex: 0 0 calc((79vw - 80px) / 3); /* Show only 3 items at a time */
  max-width: calc((79vw - 80px) / 3);
  /* position: relative;  */ /* Position arrows inside the box */
  display: flex;
  flex-direction: column;
  align-items: center; /* Center the image within the box */
  justify-content: stretch;
  overflow: hidden;
  position: relative;
  /* border: var(--BORDERS); */ /* Full border around the element */
  background-color: var(--BOX-BGCOLOR);
  border-radius: var(--BORDER-RADIUS);
  /* transition: transform 0.3s ease-in-out; */
}

/* Gradient border using pseudo-element */
.branches-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(
    --BORDER-COLOR
  ); /* linear-gradient(45deg, var(--FIRST-PURPLE), var(--SIXTH-DARKER-TEAL)); */
  border-radius: var(--BORDER-RADIUS);
  padding: 1px; /* Border thickness */

  /* Apply mask to hide border in the image area */
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;

  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;

  z-index: 1; /* Ensure it wraps around the whole element */
}

/* Image styling (no border) */
.branches-box img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1 / 0.8; /* Maintain a square shape */
  position: relative; /* Keep it above the border */
  z-index: 2;
  transition: transform 0.3s;
}

.branches-box:hover img {
  transform: scale(1.05);
}

.branches-box-no-border {
  flex: 0 0 calc((79vw - 80px) / 3); /* Show only 3 items at a time */
  max-width: calc((79vw - 80px) / 3);
  /* position: relative;  */ /* Position arrows inside the box */
  display: flex;
  flex-direction: column;
  align-items: center; /* Center the image within the box */
  justify-content: stretch;
  overflow: hidden;
  position: relative;
  /* border: var(--BORDERS); */ /* Full border around the element */
  /*   background-color: var(--BOX-BGCOLOR); */
  /* border-radius: var(--BORDER-RADIUS); */
  /* transition: transform 0.3s ease-in-out; */
}

.branches-box-no-border img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1 / 0.8; /* Maintain a square shape */
  position: relative; /* Keep it above the border */
  z-index: 2;
  transition: transform 0.3s;
}

.branches-box-no-border:hover img {
  transform: scale(1.05);
}

.branches-box-no-border a {
  text-decoration: none;
  color: inherit;
}

.branches-box-no-border p {
  /* color: var(--FONT-COLOR); */
  text-transform: uppercase;
  font-weight: var(--FF-HEADING-WEIGHT);
  padding: var(--PADDING-STANDARD) 0;
}

/* Text content inside the box with border */
.branches-text-content {
  padding: var(--PADDING-LARGE);
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centers text inside */
  flex-grow: 1; /* Ensures even height distribution */
  min-height: 20vh;
  position: relative;
  /* z-index: 2; */ /* Keep it behind the image */
  /* background-color: var(--BOX-BGCOLOR); */
  border-top: none; /* Hide the top border so it doesn't overlap the image */
}

.branches-box a {
  text-decoration: none;
  color: inherit;
}

/* Heading styles */
.branches-text-content h3 {
  color: var(--FIRST-PURPLE);
  text-transform: uppercase;
  padding-bottom: var(--PADDING-STANDARD);
}

/* Description styles */
.branches-text-content p {
  color: var(--FONT-COLOR);
  flex-grow: 1; /* Allows text to expand evenly */
}

@media screen and (max-width: 768px) {
	.branches-box {
		flex: 0 0 calc((79vw - 40px) / 2); /* Show only 3 items at a time */
		max-width: calc((79vw - 40px) / 2);
	}
}

/* ||||||||||||||||||||||||||||||||||||||||||||||||||||| */

/* || Question */

.question {
  background: linear-gradient(to bottom, grey 80%, lightgrey 100%);
  width: 100%;
  background-size: cover;
  background-position: center;
  min-height: 30vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--PADDING-LARGE) 0;
  position: relative;
}

.question-content {
  width: 100%;
  max-width: var(--CONTENT-MAX-WIDTH);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: var(--PADDING-STANDARD) 0;
}

.question-content-text {
  width: 40%;
  text-align: left;
  padding: var(--PADDING-STANDARD) 0;
  position: relative;
}

.question-content-text h2 {
  margin-bottom: var(--PADDING-STANDARD);
  color: var(--HEADER-COLOR);
}

.question-content-text p {
  margin-bottom: var(--PADDING-LARGE);
  color: var(--HEADER-COLOR);
}

.question img {
  min-height: 30vh;
  position: absolute;
  right: 5%;
  bottom: 16%;
}

/* ||||||||||||||||||||||||||||||||||||||||||||||||||||| */

/* || PAGE HEADING */

.heading-gradient {
  position: relative;
  min-height: 40vh;
  padding: var(--PADDING-XXXLARGE) 0;
  background: linear-gradient(
      to bottom,
      var(--FIRST-PURPLE-OP) 0%,
      var(--FIRST-PURPLE-OP) 50%,
      var(--SECOND-LIGHT-PURPLE-OP) 50%,
      var(--SECOND-LIGHT-PURPLE-OP) 60%,
      var(--THIRD-LIGHT-BLUE-OP) 60%,
      var(--THIRD-LIGHT-BLUE-OP) 70%,
      var(--FOURTH-TEAL-OP) 70%,
      var(--FOURTH-TEAL-OP) 80%,
      var(--FIFTH-MINT-GREEN-OP) 80%,
      var(--FIFTH-MINT-GREEN-OP) 90%,
      var(--SIXTH-DARKER-TEAL-OP) 90%,
      var(--SIXTH-DARKER-TEAL-OP) 100%
    ),
    var(--DYNAMIC-IMAGE-BG, none); /* Default to 'none' if no image */
  /* url(../img/services-heading-background.webp) */
  background-size: cover;
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Prevent image from repeating */
  display: flex;
  align-items: center;
  justify-content: center; /* Center content horizontally */
  text-align: left;
  color: var(--HERO-COLOR);
}

.heading-content {
  max-width: var(--CONTENT-MAX-WIDTH);
  width: 100%;
  display: grid;
  justify-content: flex-start;
  align-items: center;
  padding: var(--PADDING-XSMALL) 0;
  color: var(--HERO-COLOR);
  position: relative;
  flex-direction: row;
}

.heading-content h1 {
  padding-bottom: 0.3em;
  text-shadow: var(--TEXT-SHADOWS-HEADING); /* Black shadow with blur */
}

/* HEADING BUTTON */
.heading-btn a {
  display: inline-block;
  background-color: var(--HEADER-BGCOLOR);
  color: var(--HEADER-COLOR);
  /* margin: 0px 10px; */
  padding: var(--PADDING-SMALL) var(--PADDING-STANDARD);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
}

.heading-btn a:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* FOR ERROR PAGE */

.heading-gradient-error {
  position: relative;
  min-height: 40vh;
  /* padding: var(--PADDING-XXXLARGE) 0; */
  background: linear-gradient(
      to bottom,
      var(--FIRST-PURPLE) 0%,
      var(--FIRST-PURPLE) 50%,
      var(--SECOND-LIGHT-PURPLE) 50%,
      var(--SECOND-LIGHT-PURPLE) 60%,
      var(--THIRD-LIGHT-BLUE) 60%,
      var(--THIRD-LIGHT-BLUE) 70%,
      var(--FOURTH-TEAL) 70%,
      var(--FOURTH-TEAL) 80%,
      var(--FIFTH-MINT-GREEN) 80%,
      var(--FIFTH-MINT-GREEN) 90%,
      var(--SIXTH-DARKER-TEAL) 90%,
      var(--SIXTH-DARKER-TEAL) 100%
    ),
    var(--DYNAMIC-IMAGE-BG, none); /* Default to 'none' if no image */
  /* url(../img/services-heading-background.webp) */
  background-size: cover;
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Prevent image from repeating */
  display: flex;
  align-items: center;
  justify-content: center; /* Center content horizontally */
  text-align: left;
  color: var(--HERO-COLOR);
}

.heading-content-error {
  max-width: var(--CONTENT-MAX-WIDTH);
  min-height: 40vh;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 25vh;
  color: var(--HERO-COLOR);
  position: relative;
  flex-direction: row;
}

.heading-content-text {
  flex: 0 0 48%; /* Fixed width for text */
  text-align: left;
  color: var(--FONT-COLOR);
  padding: var(--PADDING-XXXLARGE) 0;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Ensures text is vertically centered */
}

.heading-content-text h1,
.heading-content-text h3,
.heading-content-text p {
  color: var(--HEADER-COLOR);
  padding-bottom: var(--PADDING-STANDARD);
}

.heading-content-text h1,
.heading-content-text h3 {
  text-shadow: var(--TEXT-SHADOWS-HEADING);
}

.heading-content-text p {
  text-shadow: var(--TEXT-SHADOWS-HEADING);
}

.error-link {
  color: var(--LIGHT-FONT-COLOR);
}

.heading-content-image {
  flex: 0 0 52%; /* Fixed width for image container */
  display: flex;
  justify-content: center;
  align-items: center; /* Ensures image is centered */
  overflow: hidden;
}

.heading-content-image img {
  max-width: 100%; /* Ensures the image does not overflow horizontally */
  max-height: 20vh; /* Ensures the image does not overflow vertically */
  width: auto; /* Maintain aspect ratio */
  height: auto; /* Maintain aspect ratio */
  object-fit: contain; /* Ensures the image fits within the container */
}

/* ||||||||||||||||||||||||||||||||||||||||||||||||||||| */

/* || EXPERIENCE DELIVERIES */

.experience {
  width: 100%;
  background-color: var(--BODY-BGCOLOR);
  background-size: cover;
  background-position: center;
  min-height: 25vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.experience-content {
  width: 100%;
  max-width: var(--CONTENT-MAX-WIDTH);
  display: flex; /* Ensures text and image are side by side */
  justify-content: space-between;
  align-items: center;
  padding: var(--PADDING-XXXLARGE) 0;
}

.experience-content-text {
  flex: 0 0 48%; /* Fixed width for text */
  text-align: left;
  color: var(--FONT-COLOR);
  padding: var(--PADDING-XSMALL) 0;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Ensures text is vertically centered */
}

.experience-content-text h2 {
  padding-bottom: var(--PADDING-SMALL);
}

.experience-content-text p {
  padding-bottom: var(--PADDING-SMALL);
}

.experience-content-image {
  flex: 0 0 52%; /* Fixed width for image container */
  display: flex;
  justify-content: center;
  align-items: center; /* Ensures image is centered */
  overflow: hidden;
}

.experience-content-image {
  flex: 0 0 52%; /* Fixed width for image container */
  display: flex;
  justify-content: center;
  align-items: center; /* Ensures image is centered */
  overflow: hidden;
}

.experience-content-image img {
  max-width: 90%; /* Ensures the image does not overflow horizontally */
  max-height: 90%; /* Ensures the image does not overflow vertically */
  width: auto; /* Maintain aspect ratio */
  height: auto; /* Maintain aspect ratio */
  object-fit: contain; /* Ensures the image fits within the container */
  padding: var(--PADDING-LARGE);
}

/* ||||||||||||||||||||||||||||||||||||||||||||||||||||| */

/* || WHY CHOOSE US BULLET POINTS */

.why-us-bullet {
  background-color: var(--BGCOLOR);
  width: 100%;
  padding: 40px 0; /* Top and bottom padding */
  box-sizing: border-box; /* Ensures padding doesn't affect width calculation */
  display: flex;
  justify-content: center; /* Center the inner container */
}

/* Inner container with max width */
.why-us-bullet-content {
  max-width: var(--CONTENT-MAX-WIDTH);
  width: 100%;
  text-align: center;
}

/* Section title */
.why-us-bullet-content h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: rgba(147, 98, 250, 1);
}

/* Grid layout for items */
.why-us-bullet-layout {
  display: flex; /* Use grid to arrange items horizontally */
  flex-wrap: wrap;
  justify-content: center; /* Ensures proper centering */
  /* grid-template-columns: repeat(3, 1fr); */ /* Create 3 equal columns */
  gap: 50px 10px; /* Increased row gap for better spacing */
  /* justify-items: center;  */ /* Center items horizontally */
}

/* Individual item container (ensures proper centering of text and icon) */
.why-us-bullet-item {
  display: flex;
  flex-direction: column;
  align-items: center; /* Centers everything inside */
  gap: 15px; /* Adds space between circle and text */
  width: calc(100% / 3 - 10px); /* Ensures 3 items per row */
  max-width: 33.33%;
}

/* Circle styles */
.why-us-bullet-item-content {
  width: 100px; /* Set the width and height to make it square */
  height: 100px;
  background-color: var(--FIRST-PURPLE); /* Velvet color background */
  border-radius: 50%; /* Make it a circle */
  display: flex; /* Center the icon */
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  cursor: pointer;
}

/* Hover effect */
.why-us-bullet-item-content:hover {
  transform: translateY(-5px); /* Slight lift effect on hover */
}

/* Icon image inside the circle */
.why-us-bullet-item-content img {
  padding: var(--PADDING-LARGE);
  max-width: 100%;
  height: auto;
  color: var(--BODY-BGCOLOR); /* Icon color for contrast */
  transition: transform 0.3s ease;
}

.why-us-bullet-item-content:hover img {
  transform: scale(1.1); /* Slight zoom effect on hover */
}

/* Icon inside the circle */
.why-us-bullet-item-content i {
  font-size: 2rem; /* Adjust icon size */
  color: var(--BODY-BGCOLOR); /* Icon color for contrast */
  transition: transform 0.3s ease;
}

.why-us-bullet-item-content:hover i {
  transform: scale(1.1); /* Slight zoom effect on hover */
}

/* Text Styling for Below Circle */
.why-us-bullet-item p {
  /* margin-top: 100px; */
  /* font-size: 0.7rem; */
  /* font-weight: bold; */
  text-align: center;
  color: var(--FONT-COLOR);
  font-weight: var(--FF-BUTTON-WEIGHT);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .why-us-bullet-layout {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on medium screens */
    gap: 40px 15px; /* More space between rows */
  }

  .why-us-bullet-item-content {
    width: 80px;
    height: 80px;
  }
  .why-us-bullet-item-content i {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 480px) {
  .why-us-bullet-layout {
    grid-template-columns: 1fr; /* Stack items vertically on small screens */
    gap: 20px;
  }

  .why-us-bullet-item-content {
    width: 60px;
    height: 60px;
  }

  .why-us-bullet-item-content i {
    font-size: 2rem;
  }
}

/* ||||||||||||||||||||||||||||||||||||||||||||||||||||| */

/* || 3 COLUMNS SQUARE BOX FOR MISSION VISION AND VALUES */

/* Inner content constrained to 80% of the page */
.square-box-content {
  max-width: var(--CONTENT-MAX-WIDTH);
  width: 100%;
  margin: var(--PADDING-XXLARGE) auto;
  text-align: center;
  padding: var(--PADDING-XXLARGE) 0;
}

/* Grid layout for square boxes */
.square-box-layout {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(250px, 1fr)
  ); /* Responsive grid */
  justify-items: center;
  gap: 5rem;
  width: 100%;
  margin: 0;
  padding: 0;
}

/* Styling for individual square boxes */
.square-box-layout-content {
  width: 100%;
  max-width: none; /* Ensure max width */
  /* aspect-ratio: 1 / 1; */ /* Maintain square shape */
  display: flex;
  justify-content: top;
  align-items: center; /* Center the image within the box */
  background-color: transparent;
  transition: transform 0.3s ease;
  flex-direction: column;
  /* background-color: var(--BOX-BGCOLOR); */
  padding: var(--PADDING-LARGE);
  border: 1px solid var(--BORDER-COLOR);
  border-radius: var(--BORDER-RADIUS);
  /* box-shadow: var(--TEXT-SHADOWS-HEADING); */
}

/* Heading styles */
.square-box-layout-content h3 {
  color: var(--FIRST-PURPLE);
  text-transform: uppercase;
  padding-bottom: var(--PADDING-STANDARD);
}

/* Description styles */
.square-box-layout-content p {
  color: var(--TEXT-COLOR);
  max-width: 90%;
  text-align: center;
}

/* ||||||||||||||||||||||||||||||||||||||||||||||||||||| */

/* || AGNI GROUP - GREY BG BANNER WITH TEXT AND LOGO IMAGE */

.agnigroup {
  width: 100%;
  background-color: var(--BANNER-BGCOLOR);
  background-size: cover;
  background-position: center;
  min-height: 25vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--PADDING-XXLARGE) 0;
  position: relative;
}

.agnigroup-content {
  width: 100%;
  max-width: var(--CONTENT-MAX-WIDTH);
  display: flex; /* Ensures text and image are side by side */
  justify-content: space-between;
  align-items: center;
  padding: var(--PADDING-LARGE) 0;
}

.agnigroup-content-text {
  flex: 0 0 55%; /* Fixed width for text */
  text-align: left;
  color: var(--FONT-COLOR);
  padding: var(--PADDING-XSMALL) 0;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Ensures text is vertically centered */
}

.agnigroup-content-text h2 {
  padding-bottom: var(--PADDING-SMALL);
}

.agnigroup-content-text p {
  padding-bottom: var(--PADDING-SMALL);
}

.agnigroup-content-logo {
  flex: 0 0 40%; /* Fixed width for image container */
  display: flex;
  justify-content: center;
  /* padding-right: 20%;
  padding-bottom: 7.5%; */
  align-items: center; /* Ensures image is centered */
}

.agnigroup-content-logo img {
  max-width: 100%; /* Ensures the image does not overflow horizontally */
  max-height: 20vh; /* Ensures the image does not overflow vertically */
  width: auto; /* Maintain aspect ratio */
  height: auto; /* Maintain aspect ratio */
  object-fit: contain; /* Ensures the image fits within the container */
}

/* ||||||||||||||||||||||||||||||||||||||||||||||||||||| */

/* || CSR TEAMS JOBS 3COLS FLEX */

/* used in about-us page as well */
.csr {
  text-align: center;
  margin: 0 auto; /* Center the entire section horizontally */
  width: 100%; /* Let it take full width until max-width is reached */
  box-sizing: border-box; /* Ensures padding doesn't affect width calculation */
}

.csr-scroll-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.csr-layout {
  display: flex; /* Use grid to arrange items horizontally */
  overflow-x: auto;
  scroll-behavior: smooth;
  white-space: nowrap;
  max-width: 100%;
  scrollbar-width: none; /* Hide scrollbar for Firefox */
  -ms-overflow-style: none; /* Hide scrollbar for IE and Edge */
  /* grid-template-columns: repeat(3, 1fr); */ /* Create 3 equal columns */
  /* justify-items: center;
  gap: 0px; */ /* Space between items */
  /* padding-bottom: var(--PADDING-XXXLARGE); */
}

.csr-layout::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome, Safari, and Opera */
}

/* used in about-us page as well */
.csr-layout-content {
  flex: 0 0 33.33%;
  max-width: 33.33%;
  text-align: center;
  position: relative; /* Needed for absolute positioning of text */
  width: 100%; /* Each service block will take up 30% of the width */
  max-height: 40vh; /* fixed height for equal image sizes */
  overflow: hidden;
  cursor: pointer;
  user-select: none; /* Prevents text selection */
  outline: none; /* Removes the outline that could cause the cursor to appear */
  transition: transform 0.3s ease-in-out;
}

/* Overlay text styling for about-us page */
.csr-layout-content h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--BODY-BGCOLOR);
  white-space: wrap;
  padding: var(--PADDING-XSMALL);
  text-align: center;
  text-shadow: var(--TEXT-SHADOWS-HEADING);
  width: 100%;
  text-transform: uppercase;
}

/* Overlay text styling */
.csr-layout-content h3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--BODY-BGCOLOR);
  white-space: wrap;
  padding: var(--PADDING-XSMALL);
  text-align: center;
  text-shadow: var(--TEXT-SHADOWS-HEADING);
  width: 100%;
}

/* .csr-layout-content:hover {
  transform: scale(1.01);
} */

.csr-layout-content h3:hover {
  font-weight: var(--FF-BOLDER-WEIGHT);
}

/* .csr-layout-content.active {
  border: 5px solid var(--SIXTH-DARKER-TEAL);
} */

.csr-layout-content.active h3 {
  display: block;
}

.csr-layout-content a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative; /* Needed for child absolute positioning like h2 */
  z-index: 2; /* Ensure it sits above the ::before overlay */
}

.csr-layout-content img {
  width: 100%;
  height: 100%; /* Ensure image covers the full height */
  object-fit: cover; /* Ensure the image covers the entire container without distortion */
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%) brightness(50%);
}

.colorize img {
  -webkit-filter: none;
  filter: none;
}

.csr-layout-content.active img {
  filter: none;
}

/* Black transparent overlay */
.csr-layout-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* Black overlay with 0.2 opacity */
  z-index: 1;
}

.csr-scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  font-size: var(--FS-XXLARGE);
  border-radius: 50%;
  z-index: 10;
  transition: background 0.3s;
}

.csr-scroll-btn:hover {
  color: var(--SIXTH-DARKER-TEAL);
}

.csr-left {
  left: var(--PADDING-STANDARD);
}

.csr-right {
  right: var(--PADDING-STANDARD);
}

#news-title {
padding-bottom: var(--PADDING-XLARGE);

}

#news-text {
  padding-bottom: var(--PADDING-XLARGE);
  line-height: 1.8;
}

#news-link-container {
  display: flex;
  flex-wrap: wrap;   /* Allows wrapping to the next line if space runs out */
  gap: var(--PADDING-XLARGE);         /* Adds some space between the logos */
  /* margin-top: var(--PADDING-STANDARD); */
}

#news-link-container a {
  display: inline-block;
  width: auto;       /* Allows the logos to retain their original size */
  max-width: 75px;   /* Limits the size of logos to 75px */
}

#news-link-container img {
  width: 75px;       /* Ensure the logos are all 75px wide */
  height: auto;      /* Maintain aspect ratio */
  margin-right: var(--PADDING-SMALL);
}

/* ||||||||||||||||||||||||||||||||||||||||||||||||||||| */

/* || FAQs */

.faqs {
  max-width: var(--CONTENT-MAX-WIDTH);
  width: 100%;
  margin: auto;
}

.faqs-row {
  margin-bottom: var(--PADDING-SMALL);
  border-radius: var(--BORDER-RADIUS);
}

.faqs-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  text-align: left;
  cursor: pointer;
  padding: var(--PADDING-STANDARD) 0;
  border-bottom: 1px solid var(--BORDER-COLOR-LIGHT);
}

.faqs-toggle-btn {
  background: none;
  border: none;
  align-items: center;
  color: var(--SIXTH-DARKER-TEAL);
  font-size: var(--FS-XLARGE);
  cursor: pointer;
}

/* Default state - hidden answer */
.faqs-wrapper {
  max-height: 0;
  overflow: hidden;
  padding: 0 var(--PADDING-XLARGE); /* No padding when collapsed */
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out,
    padding 0.3s ease-in-out;
  opacity: 0;
}

.faqs-wrapper.active {
  display: block;
  max-height: 500px; /* Adjust as needed */
  opacity: 1;
  padding: var(--PADDING-XLARGE); /* Restore padding when expanded */
  border-bottom: 1px solid var(--BORDER-COLOR-LIGHT);
}

.faqs-answer {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-right: var(--PADDING-XLARGE);
}

.faqs-answer ol {
  margin-top: 0.5em; /* Adds some space between the text and the list */
  padding-left: 40px; /* Add some padding for better list indentation */
  margin-bottom: 0; /* Ensures no bottom margin between list items */
}

.faqs-answer li {
  padding-left: 5px;
  padding-top: 5px;
}

/*
.faqs-answer p {
  margin-bottom: 1em; */ /* Ensures spacing between the paragraph and the list */
}

/* ||||||||||||||||||||||||||||||||||||||||||||||||||||| */

/* || CAROUSELS - 2 COLS - CLIENTS AND 'WHAT WE COVER' */

/* CAROUSELS CONTAINER */
.carousels {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--PADDING-LARGE) 0;
}

/* FLEXIBLE LAYOUT FOR TWO BOXES */
.carousel-layout {
  max-width: var(--CONTENT-MAX-WIDTH);
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex: row;
  justify-content: space-between;
  padding: var(--PADDING-XLARGE) 0;
  align-items: center; /* Center the items vertically in the layout */
}

/* CAROUSEL COMMON PROPERTIES AND VALUES */
.testimonial-carousel,
.features-carousel {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  max-width: 45%;
  height: 58vh;
  overflow: hidden;
}

/* TESTIMONIAL CAROUSEL - WITH BACKGROUND */
.testimonial-carousel {
  flex-direction: column;
  background-color: var(--BGCOLOR);
  padding: var(--PADDING-SMALL);
  border-radius: var(--BORDER-RADIUS);
}

/* TESTIMONIALS WRAPPER */
.testimonial-wrapper {
  display: flex;
  flex-direction: row;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

/* TESTIMONIAL ITEM */
.testimonial-item {
  width: 100%;
  flex: 0 0 100%; /* Each item takes full width */
  opacity: 1; /* Keep the testimonials visible */
  position: relative; /* Positioning for sliding */
  transition: opacity 0.5s ease-in-out; /* Smooth fade effect */
  padding: var(--PADDING-XXXLARGE); /* Padding for text */
  display: flex; /* Flexbox layout for easy alignment */
  flex-direction: column; /* Stack the content (text and logo) vertically */
  justify-content: center; /* Center align text and logo */
  align-items: center; /* Horizontally center */
  text-align: center;
  /* height: 100%; */
}

.testimonial-item.active {
  position: relative; /* Keep the active item in view */
}

.testimonial-item-quote {
  font-size: var(--FS-XXXLARGE);
  color: var(--FIRST-PURPLE);
  margin-bottom: var(--PADDING-STANDARD);
}

.testimonial-item h3 {
  margin-bottom: var(--PADDING-LARGE);
}

.testimonial-item img {
  max-width: 100px;
  max-height: 100px;
  object-fit: contain;
  margin-top: var(--PADDING-SMALL);
  margin-bottom: var(--PADDING-XLARGE);
}

/* FEATURES CAROUSEL - ONLY BORDER */
.features-carousel {
  /* ADDED */
  display: flex;
  flex-direction: column;
  align-items: center;
  /*  */
  /* flex-direction: row; */
  border: 2px solid var(--BORDER-COLOR-LIGHT);
  padding: var(--PADDING-SMALL);
  border-radius: var(--BORDER-RADIUS);
  width: 100%;
}

/* HEADING */
.features-heading {
  width: 100%;
  text-align: center;
  color: var(--FIRST-PURPLE);
  padding: var(--PADDING-XLARGE);
}

/* FEATUERS WRAPPER 2x2 GRID LAYOUT */
.features-wrapper {
  /* ADDED */
  width: 100%;
  /*  */
  display: flex;
  /* width: 200%; */ /* The wrapper will be twice as wide to accommodate 2 pages */
  height: auto;
  transition: transform 0.5s ease-in-out;
  will-change: transform; /* Improve animation performance */
}

/* FEATURES EACH PAGE (2x2 grid) */
.features-page {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
  flex-shrink: 0;
  justify-items: center;
  align-items: center;
  padding-bottom: var(--PADDING-XLARGE);
}

/* FEATURES ITEM */
.features-item {
  display: flex;
  flex-direction: column; /* Stack icon and text */
  align-items: center;
  justify-content: center;
  text-align: center;
}

.features-item.active {
  position: relative; /* Keep the active item in view */
}

/* items are positioned in the order: left-top, left-bottom, right-top, and right-bottom */

/* Make sure to specify the order for each item to be placed properly */
.features-item:nth-child(1) {
  grid-column: 1; /* Left-top */
  grid-row: 1;
}

.features-item:nth-child(2) {
  grid-column: 1; /* Left-bottom */
  grid-row: 2;
}

.features-item:nth-child(3) {
  grid-column: 2; /* Right-top */
  grid-row: 1;
}

.features-item:nth-child(4) {
  grid-column: 2; /* Right-bottom */
  grid-row: 2;
}

/* CIRCLE STYLES */
.features-item-content {
  width: 80px;
  height: 80px;
  background-color: var(--FIRST-PURPLE);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* ICON INSIDE CIRCLE */
.features-item-content i {
  font-size: var(--FS-XXLARGE);
  color: white;
}

/* Icon image inside the circle */
.features-item-content img {
  padding: var(--PADDING-LARGE);
  max-width: 100%;
  height: auto;
  color: var(--BODY-BGCOLOR); /* Icon color for contrast */
  transition: transform 0.3s ease;
}

.icon-invert-color {
  filter: invert(100%) sepia(0%) saturate(0%) brightness(2) contrast(2);
}

.features-item-content:hover img {
  transform: scale(1.1); /* Slight zoom effect on hover */
}

/* Feature title below circle */
.features-item p {
  margin-top: 10px;
  font-size: var(--FS-MEDIUM);
  font-weight: bold;
  color: var(--TEXT-COLOR);
}

/* SCROLL BUTTONS */
.carousel-scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  color: var(--SIXTH-DARKER-TEAL);
  border: none;
  cursor: pointer;
  font-size: var(--FS-XLARGE);
  border-radius: 50%;
  z-index: 10;
  /* transition: background 0.3s; */
}

/* Positioning the buttons outside the 80% width */
.carousel-scroll-btn-left {
  left: var(--PADDING-LARGE); /* Position inside the left boundary */
}

.carousel-scroll-btn-right {
  right: var(--PADDING-LARGE); /* Position inside the right boundary */
}

.carousel-scroll-btn:hover {
  color: var(--FIRST-PURPLE);
}

@media screen and (max-width: 768px) {
    
    .carousel-layout {
    flex-direction: column; /* Stack the carousels vertically */
    align-items: center; /* Center the items vertically in the layout */
    gap: 30px;
  }

  .testimonial-carousel,
  .features-carousel {
    max-width: 100%; /* Allow full width on mobile */
    width: 100%;
    padding: var(--PADDING-STANDARD); /* Optional: smaller padding for mobile */
    height: 44vh;
  }

  .features-page {
    padding: 0 var(--PADDING-XLARGE) 0 0; /* Reduce side padding */
  }

  .features-item-content {
    width: 40px;
    height: 40px;
  }
  .features-item-content i {
    font-size: var(--FS-XLARGE);
  }
  .features-item-content img {
    padding: var(--PADDING-SMALL);
  }
}

/* ||||||||||||||||||||||||||||||||||||||||||||||||||||| */

/* || CLIENTS */

.client {
  max-width: var(--CONTENT-MAX-WIDTH);
  width: 100%;
  margin: auto;
  padding: var(--PADDING-XXXLARGE) 0;
}

.client-row {
  margin-bottom: var(--PADDING-SMALL);
  border-radius: var(--BORDER-RADIUS);
}

.client-name {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  text-align: left;
  cursor: pointer;
  padding: var(--PADDING-STANDARD) 0;
  border-bottom: 1px solid var(--BORDER-COLOR-LIGHT);
}

.client-toggle-btn {
  background: none;
  border: none;
  align-items: center;
  color: var(--SIXTH-DARKER-TEAL);
  font-size: var(--FS-XLARGE);
  cursor: pointer;
}

/* Default state - hidden answer */
.client-wrapper {
  max-height: 0;
  overflow: hidden;
  padding: 0 var(--PADDING-XLARGE); /* No padding when collapsed */
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out,
    padding 0.3s ease-in-out;
  opacity: 0;
}

.client-wrapper.active {
  display: block;
  max-height: 500px; /* Adjust as needed */
  opacity: 1;
  padding: var(--PADDING-XLARGE); /* Restore padding when expanded */
  border-bottom: 1px solid var(--BORDER-COLOR-LIGHT);
}

.client-description {
  display: grid;
  grid-template-columns: 30% 70%;
  max-width: 100%;
  justify-content: center;
  align-items: flex-start;
  gap: var(--PADDING-STANDARD);
  margin-right: var(--PADDING-XLARGE);
}

/* Left Side - Logo */
.client-logo {
  margin-left: var(--PADDING-XXLARGE);
  display: flex;
  justify-content: left;
  align-items: center;
}

.client-logo img {
  max-width: 15vw;
  height: auto;
}

/* Right Side - Company Description */
.client-text {
  text-align: left;
}

.client-text p {
  padding: var(--PADDING-XSMALL);
}

.client-text ol {
  padding-left: var(--PADDING-XXLARGE);
}

.client-text li {
  padding-top: var(--PADDING-XSMALL);
  padding-left: var(--PADDING-XSMALL);
}

@media screen and (max-width: 768px) {
  .client-logo {
  margin-left: var(--PADDING-STANDARD);
}
}

/* ||||||||||||||||||||||||||||||||||||||||||||||||||||| */

/* || CONTACT */

/* Contact Container */
.contact {
  width: 100%;
  background-color: var(--BODY-BGCOLOR); /* Light background */
  padding: var(--PADDING-XXXLARGE) 0;
}

/* Inner Container */
.contact-content {
  max-width: var(--CONTENT-MAX-WIDTH);
  margin: 0 auto;
  display: flex;
  gap: 30px; /* Space between columns */
}

/* Two Column Layout */
.contact-details,
.contact-form {
  flex: 1;
}

/* Left Column - Contact Details */
.contact-details {
  /* background-color: #333; */
  /* color: white; */
  padding: var(--PADDING-LARGE);
  border-radius: 8px;
}

.contact-details h2 {
  color: var(--FIRST-PURPLE);
  padding: 1rem 0;
}

.contact-details h3 {
  color: var(--FIRST-PURPLE);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}
/* Contact Info Styling */
.contact-info {
  margin-bottom: 15px;
}

.contact-info h3 {
  color: var(--FIRST-PURPLE);
  display: flex;
  align-items: center;
  gap: 10px;
  /* font-size: 1rem; */
  margin-bottom: 0.3rem;
}

.contact-info p {
  color: var(--BORDER-COLOR);
  display: flex;
  align-items: center;
  /* gap: 10px; */
  /* font-size: 0.8rem; */
  margin-bottom: 2rem;
}

.contact-info a {
  text-decoration: none;
  color: var(--BORDER-COLOR);
}

.contact-info i {
  color: var(--FIFTH-MINT-GREEN);
}

/* Right Column - Contact Form */
.contact-form {
  background-color: var(--BODY-BGCOLOR);
  padding: var(--PADDING-STANDARD);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Form Styling */
.contact-form form {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Left-align form elements */
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid var(--BORDER-COLOR-LIGHT);
  border-radius: 5px;
}

.contact-form button {
  background-color: var(--SIXTH-DARKER-TEAL);
  color: var(--BUTTON-COLOR);
  padding: var(--PADDING-SMALL) var(--PADDING-STANDARD);
  border: none;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
  cursor: pointer;
  width: auto; /* Allow button size to be determined by its padding */
  display: inline-block; /* Avoid full-width behavior */
}

.contact-form button:hover {
  background-color: var(--FIFTH-MINT-GREEN);
}

.contact-form button:active {
  background-color: var(--FIRST-PURPLE);
}

/* reCAPTCHA */
.recaptcha-container {
  display: flex;
  justify-content: center; /* Centering */
  width: 100%;
}

.g-recaptcha {
  transform: scale(1);
  transform-origin: left;
  width: 100%; /* Ensures it scales properly */
  max-width: 100%;
  margin-bottom: 15px;
}

/* Styling for Select (Dropdown) */
.contact-form select {
  width: 100%;
  padding: 12px 6px;
  margin-bottom: 15px;
  border: 1px solid var(--BORDER-COLOR-LIGHT);
  border-radius: 5px;
  font-size: var(--FS-MEDIUM);
  color: var(--BORDER-COLOR) /* Regular text color */;
}

/* Default options color for dropdown (first option) */
.contact-form select option:first-child {
  color: var(--BOX-DARK-BGCOLOR); /* Color for the default option (Select a Service) */
}

/* Regular option text color (Logistics, Warehousing, Procurement) */
.contact-form select option {
  color: var(--BORDER-COLOR); /* Regular text color for other options */
  padding: 10px 6px;
  /* font-size: 0.875rem; */
}

/* Focus styling for select */
.contact-form select:focus {
  outline: none;
  border-color: var(--BOX-DARK-BGCOLOR); /* Matching the button color */
}

/* Selected option styling */
.contact-form select option:checked {
  color: var(--BORDER-COLOR); /* Change the color of the selected value */
}

/* Hidden Class */
.hidden {
  display: none;
}

/* Visible Class */
/* .visible {
  display: block;
} */

/* when visible, ensure full width */
#logistics-services,
#car-rental-models {
  width: 100%;
}

.alert-message {
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid var(--BOX-DARK-BGCOLOR);
  background-color: var(--BOX-BGCOLOR);
  color: var(--BORDER-COLOR);
  border-radius: 4px;
  text-align: center;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .contact-content {
    flex-direction: column;
  }

  .contact-details,
  .contact-form {
    width: 100%;
  }

  .g-recaptcha {
    transform: scale(0.9); /* Adjust scale for smaller screens */
    transform-origin: left;
  }
}

/* ||||||||||||||||||||||||||||||||||||||||||||||||||||| */

/* || MAP LOCATION */

/* Style the container and map */
/* .map-location {
  width: 100%;
  height: 400px;
  margin: 0 auto;
}

#map {
  width: 100%;
  height: 100%;
} */

/* || EMBEDDED GOOGLE MAP */
.map {
  width: 100%; /* Full viewport width */
  height: 60vh; /* Optional: 60% viewport height if desired */
  margin: 0; /* Remove margin */
  padding: 0; /* Remove padding */
  border: none; /* Remove border */
  position: relative;
}

.map iframe {
  width: 100%; /* Full width of parent container */
  height: 100%; /* Full height of parent container */
  border: none; /* Remove iframe border */
}

.map-controls {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background-color: rgba(0, 0, 0, 0.2); /* Low-opacity box */
  padding: 10px;
  border-radius: 6px;
  z-index: 10;
  transition: background-color 0.3s ease;
}

.map-controls:hover {
  background-color: rgba(0, 0, 0, 0.4); /* Higher opacity on hover */
}

.map-controls button {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6); /* Low-opacity font */
  font-size: 0.9em;
  cursor: pointer;
  text-align: left;
  transition: color 0.3s ease;
}

.map-controls button:hover {
  color: rgba(255, 255, 255, 1); /* Full opacity on hover */
}

/* ||||||||||||||||||||||||||||||||||||||||||||||||||||| */

/* || VACANCY */

.vacancy-table td:nth-child(3),
.vacancy-table th:nth-child(3) {
  display: none;
}

.vacancy-intro {
  max-width: var(--CONTENT-MAX-WIDTH);
  margin: 0 auto;
}

.vacancy-intro h2 {
  color: var(--FIRST-PURPLE);
  padding-top: var(--PADDING-STANDARD);
  padding-bottom: var(--PADDING-SMALL);
}

.vacancy-intro p {
  padding-bottom: var(--PADDING-STANDARD);
}

.vacancy-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--PADDING-XXXLARGE);
}

.vacancy-table th,
.vacancy-table td {
  padding: var(--PADDING-SMALL);
  border-bottom: var(--BORDERS);
  text-align: center;
  font-size: var(--FS-SMALL);
}

.vacancy-table th {
  background-color: var(--TABLE-HEADING-BGCOLOR);
  font-weight: bold;
}

.vacancy-table td:first-child {
  text-align: left;
  padding-left: var(--PADDING-STANDARD);
  font-size: var(--FS-MEDIUM);
  font-weight: bold;
}

.vacancy-apply-btn {
  background-color: var(--SIXTH-DARKER-TEAL);
  color: var(--LIGHT-FONT-COLOR);
  padding: var(--PADDING-XSMALL) var(--PADDING-STANDARD);
  border-radius: var(--BUTTON-BORDER-RADIUS);
  border: none;
  cursor: pointer;
  text-align: center;
  font-size: var(--FS-SMALL);
}

.vacancy-apply-btn:hover {
  background-color: var(--FIFTH-MINT-GREEN);
}

.vacancy-more-details {
  color: var(--SIXTH-DARKER-TEAL);
  text-decoration: none;
}

.vacancy-more-details:hover {
  text-decoration: underline;
}

.vacancy-link {
  max-width: var(--CONTENT-MAX-WIDTH);
  margin: 0 auto;
  padding: var(--PADDING-LARGE) 0;
  margin-bottom: var(--PADDING-STANDARD);
}

.vacancy-link a {
  text-decoration: none;
  color: var(--FONT-COLOR);
}

/* Tablet breakpoint: ≥600px */

/* Tablet breakpoint: ≥600px — show 2nd and 3rd columns */
@media screen and (min-width: 600px) {
/*   .vacancy-table td:nth-child(2),
  .vacancy-table th:nth-child(2), */
  .vacancy-table td:nth-child(3),
  .vacancy-table th:nth-child(3) {
    display: table-cell;
  }

  .vacancy-intro h2 {
    padding-top: var(--PADDING-LARGE);
    padding-bottom: var(--PADDING-STANDARD);
  }

  .vacancy-intro p {
    padding-bottom: var(--PADDING-LARGE);
  }

  .vacancy-table th,
  .vacancy-table td {
    padding: var(--PADDING-STANDARD);
    font-size: var(--FS-MEDIUM);
  }

  .vacancy-table td:first-child {
    padding-left: var(--PADDING-LARGE);
    font-size: var(--FS-LARGE);
  }

  .vacancy-apply-btn {
    font-size: var(--FS-MEDIUM);
    padding: var(--PADDING-XSMALL) var(--PADDING-LARGE);
  }

  .vacancy-link {
    padding: var(--PADDING-XLARGE) 0;
  }
}

/* Desktop breakpoint: ≥1024px */
@media screen and (min-width: 1024px) {
  .vacancy-table td:nth-child(2),
  .vacancy-table th:nth-child(2),
  .vacancy-table td:nth-child(3),
  .vacancy-table th:nth-child(3) {
    display: table-cell;
  }

  .vacancy-intro h2 {
    padding-top: var(--PADDING-XXLARGE);
  }

  .vacancy-table {
    padding-top: var(--PADDING-SMALL);
    margin-bottom: var(--PADDING-XXXLARGE);
  }

  .vacancy-link {
    padding: var(--PADDING-XXLARGE) 0;
  }
}

.vacancy-modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center; align-items: center;
  z-index: 1000;
}
.vacancy-modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  position: relative;
}
.vacancy-modal-content p {
  margin: 6px 0; /* reduce vertical spacing between rows */
  line-height: 1.4; /* tighter line height */
}

.vacancy-modal-content h3 {
  margin-bottom: 10px; /* tighter space under the title */
}

.vacancy-details-close {
  position: absolute;
  top: 10px; right: 15px;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
}


/* Vacancy Submission Popup overlay */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Popup box */
.popup-box {
  background: #fff;
  padding: 25px 35px;
  border-radius: 12px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  animation: popupFadeIn 0.3s ease;
}

.popup-box h3 {
  margin-bottom: 10px;
  color: #333;
}

.popup-box p {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
}

.popup-box button {
  background: #007bff;
  color: white;
  border: none;
  padding: 8px 18px;
  border-radius: 6px;
  cursor: pointer;
}

.popup-box button:hover {
  background: #0056b3;
}

/* Fade animation */
@keyframes popupFadeIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}



/* ||||||||||||||||||||||||||||||||||||||||||||||||||||| */

/* || CUSTOMER LOGIN */

.customer-login-heading-gradient {
  position: relative;
  min-height: 50vh;
  padding: var(--PADDING-XXXLARGE) 0;
  background: linear-gradient(
      to bottom,
      var(--FIRST-PURPLE) 0%,
      var(--FIRST-PURPLE) 50%,
      var(--SECOND-LIGHT-PURPLE) 50%,
      var(--SECOND-LIGHT-PURPLE) 60%,
      var(--THIRD-LIGHT-BLUE) 60%,
      var(--THIRD-LIGHT-BLUE) 70%,
      var(--FOURTH-TEAL) 70%,
      var(--FOURTH-TEAL) 80%,
      var(--FIFTH-MINT-GREEN) 80%,
      var(--FIFTH-MINT-GREEN) 90%,
      var(--SIXTH-DARKER-TEAL) 90%,
      var(--SIXTH-DARKER-TEAL) 100%
    ),
    var(--DYNAMIC-IMAGE-BG, none); /* Default to 'none' if no image */
  /* url(../img/services-heading-background.webp) */
  background-size: cover;
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Prevent image from repeating */
  display: flex;
  align-items: center;
  justify-content: center; /* Center content horizontally */
  text-align: left;
  color: var(--HERO-COLOR);
}

.customer-login-heading-content {
  max-width: var(--CONTENT-MAX-WIDTH);
  width: 100%;
  display: grid;
  justify-content: flex-start;
  align-items: center;
  padding: var(--PADDING-XSMALL) 0;
  color: var(--HERO-COLOR);
  position: relative;
  flex-direction: row;
}

.customer-login-heading-content h1 {
  padding-bottom: 0.3em;
  text-shadow: var(--TEXT-SHADOWS-HEADING); /* Black shadow with blur */
}

.customer-login {
  position: absolute;
  right: 15%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  padding: var(--PADDING-LARGE);
  width: 20vw;
  box-shadow: var(--TEXT-SHADOWS);
  border-radius: var(--BORDER-RADIUS);
  background: rgba(255, 255, 255, 0.95);
  /* transform: translate(-50%, -50%); */
  z-index: 10; /* Ensure this box is clickable */
}

.customer-login button {
  display: inline-block;
  cursor: pointer;
  background-color: var(--SIXTH-DARKER-TEAL);
  color: var(--BUTTON-COLOR);
  /* margin: 0px 10px; */
  padding: var(--PADDING-XSMALL) var(--PADDING-STANDARD);
  text-decoration: none;
  border: none;
  border-radius: 5px;
  font-weight: var(--FF-BUTTON-WEIGHT);
  text-align: center;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
}

.customer-login button:hover {
  background-color: var(--FIFTH-MINT-GREEN);
}

.customer-login input {
  width: 100%;
  padding: var(--PADDING-SMALL);
  margin-bottom: var(--PADDING-SMALL);
  border: var(--BORDERS);
  border-radius: var(--BUTTON-BORDER-RADIUS);
  font-size: var(--FS-SMALL);
  position: relative;
}

.remember-me {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: var(--PADDING-SMALL);
  gap: 5px;
  z-index: 5; /* Make sure it's not below other clickable elements */
}

.remember-me input {
  margin-top: 9px;
  width: 12px; /* Standard checkbox size is 14*/
  height: 12px;
  /* transform: scale(0.75); */ /* Keep smaller size */
  cursor: pointer;
  margin-right: 2px; /* Create space between checkbox and label */
  vertical-align: middle; /* Align checkbox with label */
  position: relative; /* Make checkbox clickable */
  z-index: 5; /* Ensure checkbox is in the correct layer */
}

.remember-me input[type="checkbox"] {
  margin-right: 5px;
  margin-left: 0;
  flex-shrink: 0; /* Prevent checkbox from shrinking or wrapping */
  display: inline-block;
}

.remember-me label {
  /* font-weight: 400;
  margin-top: 9px; */
  font-size: var(--FS-SMALL);
  color: var(--FONT-COLOR);
  white-space: nowrap; /* Prevent text wrapping */
}

/* || CUSTOMER DASHBOARD */

/* .customer-dashboard-heading-gradient {
  position: relative;
  min-height: 50vh;
  padding: var(--PADDING-XXXLARGE) 0;
  background: linear-gradient(
      to bottom,
      var(--FIRST-PURPLE) 0%,
      var(--FIRST-PURPLE) 50%,
      var(--SECOND-LIGHT-PURPLE) 50%,
      var(--SECOND-LIGHT-PURPLE) 60%,
      var(--THIRD-LIGHT-BLUE) 60%,
      var(--THIRD-LIGHT-BLUE) 70%,
      var(--FOURTH-TEAL) 70%,
      var(--FOURTH-TEAL) 80%,
      var(--FIFTH-MINT-GREEN) 80%,
      var(--FIFTH-MINT-GREEN) 90%,
      var(--SIXTH-DARKER-TEAL) 90%,
      var(--SIXTH-DARKER-TEAL) 100%
    ),
    var(--DYNAMIC-IMAGE-BG, none); *//* Default to 'none' if no image */
  /* url(../img/services-heading-background.webp) */
  /* background-size: cover;
  background-position: center; */ /* Center the image */
  /* background-repeat: no-repeat; */ /* Prevent image from repeating */
  /* display: flex;
  align-items: center;
  justify-content: center; */ /* Center content horizontally */
  /* text-align: left;
  color: var(--HERO-COLOR);
}

.customer-dashboard-heading-content {
  max-width: var(--CONTENT-MAX-WIDTH);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--PADDING-XSMALL) 0;
  color: var(--HERO-COLOR);
  position: relative;
  flex-direction: row;
}

.customer-dashboard-heading-content h1 {
  padding-bottom: 0.3em;
  text-shadow: var(--TEXT-SHADOWS-HEADING); */ /* Black shadow with blur */
/* }

.customer-welcome {
  text-align: center;
}

.customer-welcome h2 {
  text-shadow: var(--TEXT-SHADOWS-HEADING);
}

.customer-welcome a {
  letter-spacing: normal;
  font-weight: var(--FF-BODY-WEIGHT);
  font-size: var(--FS-MEDIUM);
  color: var(--LIGHT-FONT-COLOR);
  text-decoration: none;
  text-shadow: var(--TEXT-SHADOWS);
  padding: var(--PADDING-XSMALL) var(--PADDING-LARGE);
  border: var(--BORDER-RADIUS);
}

.customer-welcome a:hover {
  background-color: var(--SECOND-LIGHT-PURPLE);
} */

/* ||||||||||||||||||||||||||||||||||||||||||||||||||||| */

/* || CONTRIBUTE */

.contribute {
  width: 100%;
  height: 50vh;
  background: url("../img/contribute.webp") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.contribute-content {
  width: 100%;
  max-width: var(--CONTENT-MAX-WIDTH);
  height: auto;
}

.contribute-content-text {
  position: relative;
  z-index: 1;
  text-align: left;
  color: var(--LIGHT-FONT-COLOR);
  max-width: 33%;
}

.contribute-content-text h2 {
  margin-bottom: var(--PADDING-SMALL);
}

.contribute-content-text p {
  margin-bottom: var(--PADDING-LARGE);
  line-height: 1.5;
}

/* ||||||||||||||||||||||||||||||||||||||||||||||||||||| */

/* || CBM CALCULATOR */
.cbm-content {
  max-width: var(--CONTENT-MAX-WIDTH);
  margin: var(--PADDING-STANDARD) auto var(--PADDING-XXXLARGE) auto;
  display: grid;
  grid-template-columns: 40% 60%;
  border-radius: var(--BORDER-RADIUS);
  border: var(--BORDERS);
  gap: var(--PADDING-LARGE);
  align-items: center;
  height: 100%;
}

.cbm-content-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.cbm-content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: var(--BORDER-RADIUS);
  border-bottom-left-radius: var(--BORDER-RADIUS);
}

.cbm-content-guide {
  padding: var(--PADDING-LARGE) var(--PADDING-SMALL) var(--PADDING-XLARGE)
    var(--PADDING-SMALL);
}

.cbm-content-guide h3 {
  padding-bottom: var(--PADDING-LARGE);
}

.cbm-content-guide p {
  padding-bottom: var(--PADDING-XSMALL);
}

.rto-calc {
  display: grid;
  grid-template-columns: 48% 52%;
  padding-bottom: var(--PADDING-STANDARD);
}

@media screen and (max-width: 768px) {
 .cbm-content {
  grid-template-columns: 100%;
}

.cbm-content-image img {
  border-top-right-radius: var(--BORDER-RADIUS);
  border-bottom-left-radius: 0;
}
}

/* ||||||||||||||||||||||||||||||||||||||||||||||||||||| */

/* || NEWS PAGE */
.news-layout {
  padding: var(--PADDING-XXXLARGE) 0;
  max-width: var(--CONTENT-MAX-WIDTH);
  margin: var(--PADDING-XXLARGE) auto 0 auto;
  display: grid;
  grid-template-columns: 70% 30%;
}

.news-section {
  display: grid;
}

article.article-section {
  display: grid;
  grid-template-columns: 40% 60%;
  padding: var(--PADDING-LARGE) 0;
  /* align-items: center; */
}

.news-image {
  object-fit: cover;
  height: 33vh;
}

.news-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.news-description {
  padding: 0 var(--PADDING-XLARGE);
  display: grid;
  grid-auto-flow: row;
}

.news-description h3 {
  padding-bottom: var(--PADDING-SMALL);
}

.news-description p {
  padding-bottom: var(--PADDING-STANDARD) 0;
}

.news-description a {
  text-decoration: none;
  color: var(--SIXTH-DARKER-TEAL);
}

@media screen and (max-width: 768px) {
  article.article-section {
  grid-template-columns: 100%;
}
.news-image {
  height: 15vh;
}
.news-image img {
  padding-left: var(--PADDING-XLARGE);
  padding-right: var(--PADDING-XXLARGE);
}
.news-description {
  padding: var(--PADDING-STANDARD) var(--PADDING-XLARGE) ;
}
}

/* PAGINATION */

.pagination {
  display: flex;
  text-align: center;
  align-items: center;
  gap: 10px;
  margin-top: var(--PADDING-XLARGE);
}

.pagination a {
  text-decoration: none;
  border: 1px solid var(--BOX-DARK-BGCOLOR);
  border-radius: 50%;
  padding: var(--PADDING-SMALL);
  width: 30px;
  height: 30px;
  font-weight: var(--FF-HEADING-WEIGHT);
  color: var(--SIXTH-DARKER-TEAL);
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagination a.active {
  color: var(--LIGHT-FONT-COLOR);
  background-color: var(--SIXTH-DARKER-TEAL);
}

.pagination a.pagination-btn {
  text-decoration: none;
  border: none;
  border-radius: 50%;
  padding: var(--PADDING-SMALL) 0;
  /* width: 40px;
  height: 40px; */
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--FS-XLARGE);
}

.pagination p {
  margin: 0;
  font-size: var(--FS-LARGE);
  color: var(--BOX-DARK-BGCOLOR);
}

.side-bar {
  display: grid;
  align-content: baseline;
}

.search-box {
  position: relative;
  width: 100%;
  max-width: 70%;

  /* margin-right: var(--PADDING-XXXLARGE); */
}

.search-box form {
  position: relative;
  width: 100%;
}

.search-input {
  width: 100%;
  padding: var(--PADDING-XSMALL) var(--PADDING-SMALL);
  border: 1px solid var(--BOX-DARK-BGCOLOR);
  border-radius: 8px;
  outline: none;
}

.search-btn {
  position: absolute;
  right: var(--PADDING-XSMALL);
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--PADDING-XSMALL);
}

.search-btn img {
  width: 35px;
  height: 35px;
}

.latest-posts {
  display: grid;
  padding: var(--PADDING-XLARGE) 0;
}

.latest-posts a {
  color: var(--FONT-COLOR);
  text-decoration: none;
}

.latest-posts a:hover {
  color: var(--SIXTH-DARKER-TEAL);
}

.news-line {
  display: flex;
  gap: 5px;
  padding: var(--PADDING-SMALL) 0;
  align-items: center;
}

.news-line img {
  width: 35px;
  height: 35px;
}

.categories {
  display: grid;
  padding: var(--PADDING-LARGE) 0;
}

.categories h4,
.latest-posts h4 {
  padding: var(--PADDING-XSMALL) 0;
  color: var(--FIRST-PURPLE);
}

.categories-list {
  display: grid;
}

.categories-list a {
  color: var(--FONT-COLOR);
  text-decoration: none;
  padding: var(--PADDING-XSMALL) 0;
}

.categories-list a:hover {
  color: var(--SIXTH-DARKER-TEAL);
}

/* ||||||||||||||||||||||||||||||||||||||||||||||||||||| */

/* || NEWS POST */
.news-date {
  display: flex;
  gap: 5px;
  align-items: center;
}

/* .news-layout {
  max-width: var(--CONTENT-MAX-WIDTH);
  margin: var(--PADDING-XXLARGE) auto;
} */

.news-content {
  max-width: var(--CONTENT-MAX-WIDTH);
  margin: var(--PADDING-XXLARGE) auto;
}

.first-paragraph::first-letter {
  font-size: var(--FS-XXLARGE);
  font-weight: var(--FF-BUTTON-WEIGHT);
  vertical-align: baseline;
  /* float: left; */ /* Float the first letter to create the drop-cap effect */
  /* margin-right: 5px; */ /* Add space between the drop cap and the rest of the text */
  line-height: 0.5;
}

/* ARTICLE BASE */
.article-content {
  line-height: 1.8;
}

/* PARAGRAPHS */
.article-content p {
  margin-bottom: var(--PADDING-STANDARD);
  max-width: var(--CONTENT-MAX-WIDTH);
}

/* HEADINGS */
.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4 {
  margin-top: var(--PADDING-XLARGE);
  margin-bottom: var(--PADDING-STANDARD);
  line-height: 1.3;
}

/* FIRST HEADING/SECTION FIX */
.article-content h3:first-child,
.article-content h2:first-child {
  margin-top: 0;
}

/* LISTS (THIS FIXES BULLET INDENTATION) */
.article-content ul,
.article-content ol {
  padding-left: var(--PADDING-LARGE);
  margin-bottom: var(--PADDING-LARGE);
}

/* LIST ITEMS */
.article-content li {
  margin-bottom: var(--PADDING-XSMALL);
}

/* LINKS */
.article-content a {
  color: #0077cc;
  text-decoration: underline;
}

/* STRONG / BOLD */
.article-content strong,
.article-content b {
  font-weight: 700;
}

.article-content img {
  /* display: grid; */
  width: 100%;
  height: 50vh;
  object-fit: cover;
  object-position: center;
  padding-bottom: var(--PADDING-STANDARD);
}

.news-content-scroll {
  display: flex;
  justify-content: space-between;
  padding-top: var(--PADDING-XLARGE);
}

.news-post-scroll-link {
  flex: 1;
}

.news-post-scroll-link a {
  color: var(--SIXTH-DARKER-TEAL);
  text-decoration: none;
}

.news-post-scroll-link.left {
  text-align: left;
}

.news-post-scroll-link.right {
  text-align: right;
}

/* ||||||||||||||||||||||||||||||||||||||||||||||||||||| */

/* || VACANCY FORM POP-UP */
/* |||||||||||||||||||||||||||| */

/* Vacancy Modal Styles */
.vacancy-modal {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  overflow-y: auto;
  padding: 20px;
  box-sizing: border-box;
}

.vacancy-modal-content {
  background-color: var(--BODY-BGCOLOR);
  padding: 30px;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  margin: auto;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  box-sizing: border-box;
}

.vacancy-modal-content h2 {
  color: var(--FIRST-PURPLE);
  margin-bottom: var(--PADDING-STANDARD);
  text-align: center;
}

.vacancy-modal-content p {
  margin-bottom: var(--PADDING-STANDARD);
}

.vacancy-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: var(--BOX-DARK-BGCOLOR);
  cursor: pointer;
  transition: color 0.3s;
}

.vacancy-modal-close:hover {
  color: var(--BORDER-COLOR);
}

#vacancyApplyForm {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

#vacancyApplyForm label {
  display: block;
  margin-bottom: 4px;
  font-weight: 600;
  color: var(--BORDER-COLOR);
  font-size: 0.95rem;
}

#vacancyApplyForm input,
#vacancyApplyForm select,
#vacancyApplyForm textarea {
  margin-bottom: 4px;
}

#vacancyApplyForm input[type="text"],
#vacancyApplyForm input[type="email"],
#vacancyApplyForm input[type="tel"],
#vacancyApplyForm input[type="file"] {
  width: 100%;
  padding: var(--PADDING-SMALL);
  border: 1px solid var(--BORDER-COLOR-LIGHT);
  border-radius: 4px;
  font-size: 1rem;
  box-sizing: border-box;
  transition: border-color 0.3s;
}

#vacancyApplyForm input[type="text"]:focus,
#vacancyApplyForm input[type="email"]:focus,
#vacancyApplyForm input[type="tel"]:focus {
  border-color: var(--SIXTH-DARKER-TEAL);
  outline: none;
}

#vacancyApplyForm button[type="submit"] {
  background-color: var(--SIXTH-DARKER-TEAL);
  color: var(--BODY-BGCOLOR);
  border: none;
  padding: 12px 20px;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 10px;
}

#vacancyApplyForm button[type="submit"]:hover {
  background-color: var(--SIXTH-DARKER-TEAL-OP);
}

/* File upload styling */
.file-upload-wrapper {
  position: relative;
  margin-bottom: 10px;
}

.file-upload-label {
  display: block;
  margin-bottom: 8px;
}

.file-upload-input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.file-upload-button {
  display: inline-block;
  padding: 10px 15px;
  background-color: var(--BOX-BGCOLOR);
  color: var(--BORDER-COLOR);
  border: 1px solid var(--BORDER-COLOR-LIGHT);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
}

.file-upload-button:hover {
  background-color: var(--FOOTER-BGCOLOR);
}

.file-upload-name {
  margin-left: 10px;
  font-size: 0.9rem;
  color: var(--BORDER-COLOR);
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .vacancy-modal-content {
    width: 95%;
    padding: 20px;
  }
}

/* ||||||||||||||||||||||||||||||||||||||||||||||||||||| */

/* || CBM CALCULATOR POPUP */

.cbm-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: var(--PADDING-XXLARGE);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
  /* align-items: center; */
  /* justify-content: center; */
}

.cbm-modal-content {
  background-color: var(--BGCOLOR); /* Fallback color */
  margin: auto;
  padding: var(--PADDING-LARGE);
  border-radius: var(--BORDER-RADIUS);
  width: 90%;
  max-width: 450px;
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Close Button */
.cbm-close {
  position: absolute;
  top: var(--PADDING-STANDARD);
  right: var(--PADDING-STANDARD);
  font-size: var(--FS-XXLARGE);
  cursor: pointer;
  line-height: 0.5;
}

/* Header Styles */
.cbm-modal-content h2 {
  color: var(--FIRST-PURPLE);
  margin: var(--PADDING-XLARGE) 0;
  text-align: center;
}

/* Unit Selection - Horizontal Layout */
.unit-selection {
  display: flex;
  gap: var(--PADDING-XLARGE);
  margin-bottom: var(--PADDING-XLARGE);
  align-items: center;
}

.unit-label {
  font-weight: 500;
}

.radio-group {
}

.radio-option {
  margin-right: var(--PADDING-LARGE);
}

.radio-label {
  /* font-size: var(--FS-SMALL); */
  /* color: var(--FONT-COLOR); */
}

.select-unit-of-measurement {
  display: flex;
  gap: var(--PADDING-SMALL);
  margin-bottom: var(--PADDING-SMALL);
  align-items: center;
}

.select-unit-of-measurement select {
  flex-grow:  1;
  padding: var(--PADDING-SMALL);
  border-radius: var(--BUTTON-BORDER-RADIUS);
  border: 1px solid var(--BORDER-COLOR-LIGHT);
  /* background-color: white; */
  font-size: var(--FS-MEDIUM);
}

/* Input Fields */
.dimension-input {
  display: grid;
  grid-template-columns: 75px 1fr;
  margin-bottom: var(--PADDING-SMALL);
  align-items: center;
}

.dimension-input label {
  /* font-weight: var(--FF-BODY-WEIGHT); */
}

.dimension-input input[type="number"] {
  padding: var(--PADDING-SMALL);
  border: 1px solid var(--BORDER-COLOR-LIGHT);
  border-radius: var(--BUTTON-BORDER-RADIUS);
  font-size: var(--FS-MEDIUM);
}

/* Calculate Button */
#calculateCBM {
  width: 100%;
  padding: var(--PADDING-SMALL);
  background-color: var(--SIXTH-DARKER-TEAL);
  color: var(--LIGHT-FONT-COLOR, #ffffff);
  border: none;
  border-radius: var(--BUTTON-BORDER-RADIUS);
  font-size: var(--FS-MEDIUM);
  cursor: pointer;
  margin-top: var(--PADDING-STANDARD);
  transition: background-color 0.3s ease;
}

#calculateCBM:hover {
  background-color: var(--SIXTH-DARKER-TEAL-OP);
}

/* Result Display */
.result-display {
  margin-top: 15px;
  padding: 15px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.result-display div {
  display: grid;
  grid-template-columns: 1fr 2fr;
  justify-content: space-between;
  margin-bottom: 8px;
  align-items: center;
}

.result-display strong {
  font-size: var(--FS-LARGE);
  font-weight: 600;
  background-color: transparent;
  padding: 2px 5px;
  border-radius: 3px;

}

.result-display span {
  align-items: center;
  background-color: white;
  padding: 5px 5px;
  border: 1px solid var(--BORDER-COLOR-LIGHT);
  border-radius: 3px;
  font-family: monospace;
  font-size: var(--FS-LARGE);
}


/* ||||||||||||||||||||||||||||||||||||||||||||||||||||| */

/* || PRIVACY POLICY */

.privacy-policy {
  max-width: var(--CONTENT-MAX-WIDTH);
  width: 100%;
  margin: var(--PADDING-XXLARGE) auto;
  padding: var(--PADDING-XXLARGE) 0;
  background-color: var(--BGCOLOR);
  border-radius: var(--BORDER-RADIUS);
  display: grid;
}

.privacy-policy-content {
  max-width: var(--CONTENT-MAX-WIDTH);
  margin: var(--PADDING-XXLARGE) auto;
  width: 100%;
}

.privacy-policy-content h3 {
  color: var(--FIRST-PURPLE);
  padding-top: var(--PADDING-LARGE);
}

.privacy-policy-content p {
  padding: var(--PADDING-STANDARD) 0;
  line-height: 1.6;
  color: var(--FONT-COLOR);
}

.privacy-policy-content ul {
  padding-left: var(--PADDING-XXLARGE);
  margin-bottom: var(--PADDING-XSMALL);
}

.privacy-policy-content ul li {
  padding: var(--PADDING-XSMALL) 0;
  color: var(--FONT-COLOR);
}

.privacy-policy-content a {
  color: var(--LINK-COLOR);
  /* text-decoration: none; */
}

/* ||||||||||||||||||||||||||||||||||||||||||||||||||||| */

/* || FORM SUBMISSION POPUP MESSAGE */

.form-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.form-popup-modal {
  background: #fff;
  padding: 30px 40px;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.form-popup-message {
  font-size: 16px;
  margin-bottom: 20px;
}

.form-popup-ok-btn {
  padding: var(--PADDING-SMALL) var(--PADDING-XLARGE);
  background-color: var(--SIXTH-DARKER-TEAL);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.form-popup-ok-btn:hover {
  background-color: var(--SIXTH-DARKER-TEAL-OP);
}

#form-loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.8);
  z-index: 9998;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none; /* hidden by default */
}

.form-spinner {
  border: 6px solid #f3f3f3;
  border-top: 6px solid var(--SIXTH-DARKER-TEAL);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}



/* ||||||||||||||||||||||||||||||||||||||||||||||||||||| */

/* || RESET PASSWORD */

.reset-request-container,
.reset-password-container {
  max-width: 500px;
  margin: 2rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.reset-request-container h2,
.reset-password-container h2 {
  margin-bottom: 1.5rem;
  color: var(--FIRST-PURPLE);
  text-align: center;
}

.info-text {
  margin-top: -1rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: #555;
  /* text-align: center; */
}

.reset-request-form,
.reset-password-form {
  display: flex;
  flex-direction: column;
}


.alert {
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 4px;
}

.alert-error {
  background-color: #ffebee;
  color: #c62828;
  border-left: 4px solid #c62828;
}

.alert-success {
  background-color: #e8f5e9;
  color: #2e7d32;
  border-left: 4px solid #2e7d32;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

.form-group.btn-submit {
  margin-top: 1rem;
}

.btn-submit button {
  padding: 0.75rem;
  background-color: var(--SIXTH-DARKER-TEAL);
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
  white-space: nowrap; /* Prevent text wrapping */
}

.btn-submit button:hover {
  background-color: var(--FIFTH-MINT-GREEN);
}

.login-link {
  text-align: center;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.login-link a {
  color: var(--SIXTH-DARKER-TEAL);
  text-decoration: none;
}

.login-link a:hover {
  text-decoration: underline;
}

/* Loading spinner */
.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.spinner.hidden {
  display: none;
}

@keyframes spin {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

/* ================================================
  SUCCESS PAGE AFTER RESET PASSWORD & REQUEST FORMS
=================================================== */

.success-container {
  max-width: 500px;
  margin: 2rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.success-container h2 {
  font-size: 1.75rem;
  color: #6c63ff;
  margin-bottom: 1.5rem;
}

.success-container .alert {
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 4px;
  font-size: 1rem;
}

.alert-success {
  background-color: #e8f5e9;
  color: #2e7d32;
  border-left: 4px solid #2e7d32;
}

.success-container p {
  margin-top: 2rem;
  font-size: 1rem;
}

.success-container a {
  color: var(--SIXTH-DARKER-TEAL);
  font-weight: 600;
  text-decoration: none;
}

.success-container a:hover {
  text-decoration: underline;
}

/* ====================================
  RESET PASSWORD TOKEN EXPIRED PAGE
==================================== */

.token-expired-container {
  max-width: 500px;
  margin: 3rem auto;
  padding: 2rem;
  background-color: #fff3f3;
  border: 1px solid #f5c2c2;
  border-radius: 8px;
  text-align: center;
}

.token-expired-container h2 {
  color: #c62828;
  margin-bottom: 3rem;
}

.alert {
  background-color: #ffebee;
  color: #c62828;
  border-left: 4px solid #c62828;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.btn-back {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: var(--SIXTH-DARKER-TEAL);
  color: white;
  text-decoration: none;
  border-radius: 4px;
}

.btn-back:hover {
  background-color: var(--FIFTH-MINT-GREEN);
}


/* ||||||||||||||||||||||||||||||||||||||||||||||||||||| */

/* || SUSTAINABILITY */

.sustainability-content {
  max-width: var(--CONTENT-MAX-WIDTH);
  margin: 0 auto;
}

.sustainability-content-full {
  max-width: 100%;
  margin: 0 auto;
  background-color: #eee;
}

.sustainability-content-block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--PADDING-XXXLARGE);
  padding: var(--PADDING-XXLARGE) 0;
  align-items: center;
}

.sustainability-content-block-full {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--PADDING-XXXLARGE);
  padding: var(--PADDING-LARGE) 0;
  align-items: center;
}

.sustainability-text {
  justify-content: center;
  align-items: center;
}

.sustainability-text h2 {
  color: var(--FIRST-PURPLE);
  padding-bottom: var(--PADDING-SMALL);
}

.sustainability-text h3 {
  padding-top: var(--PADDING-STANDARD);
}

.sustainability-text ul {
  padding-left: var(--PADDING-LARGE);
}

.sustainability-text li {
  padding-bottom: var(--PADDING-XSMALL);
}

.sustainability-text .left {
  padding-left: 20%;
}

.sustainability-text .right h2 {
  padding-right: 20%;
  background-color: rgba(50, 190, 161, 0.25);
  padding: var(--PADDING-XXLARGE) 0;
  padding-left: var(--PADDING-XLARGE);
  color: var(--LIGHT-FONT-COLOR);
}

.sustainability-image {
  justify-content: center;
  align-items: center;
}
.sustainability-image img {
  width: 100%;
  height: 45vh;
  object-fit: cover;
  object-position: center;
}

.bottom-align img {
  object-position: bottom;
}

.half-bottom-align img {
  object-position: 50% 75%;
}

.object-fit-contain img {
  object-fit: contain;
}

.solar-quote {
  position: relative;
  background-image: url("../img/our-commitment-bg.webp");
  background-position: center;
  overflow: hidden;
  color: var(--LIGHT-FONT-COLOR);
}

.solar-quote::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 96, 100, 0.6);
  z-index: 1;
}

.solar-quote blockquote {
  position: relative;
  z-index: 2;
  font-size: 1.2rem;
  font-style: italic;
  text-align: left;
  margin: 0;
}

.supporting-community {
  position: relative;
  background-image: url("../img/supporting-local-communities-bg.webp");
  background-size: cover;
  background-position: center;
  width: 100%;
  overflow: hidden;
}

.supporting-community::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(50, 190, 161, 0.7);
  z-index: 1;
}

.supporting-community .text-content {
  position: relative;
  z-index: 2;
  color: var(--LIGHT-FONT-COLOR);
  width: 60%;
  margin: 0 auto;
  text-align: center;
  padding: var(--PADDING-XXXLARGE) 0;
}

@media screen and (max-width: 768px) {
  .sustainability-content-block {
    grid-template-columns: 1fr;
  }

  .sustainability-content-block-full {
    grid-template-columns: 1fr;
  }
}

/* ||||||||||||||||||||||||||||||||||||||||||||||||||||| */

/* || TEAM */

.team-intro {
  max-width: var(--CONTENT-MAX-WIDTH);
  width: 100%;
  margin: var(--PADDING-XLARGE) auto;
  padding: var(--PADDING-XXLARGE) 0;
}

.team-profile-heading {
  margin: 0 auto;
  text-align: center;
  color: var(--FIRST-PURPLE);
  padding-top: var(--PADDING-LARGE);
  padding-bottom: var(--PADDING-XSMALL);
}

.team-profile-grid {
  max-width: var(--CONTENT-MAX-WIDTH);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--PADDING-LARGE);
  padding-bottom: var(--PADDING-XLARGE);
}

.team-profile-item {
  text-align: center;
  transition: transform 0.3s ease;
}

.team-profile-item h4 {
  margin-top: var(--PADDING-SMALL);
}

.team-profile-picture {
  width: 100%;
  max-width: 100%;
  height: 400px;
  margin: 0 auto;
}

.team-profile-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--BORDER-RADIUS);
}

/* Tablet (min-width: 600px) */
@media screen and (min-width: 600px) {
  .team-profile-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--PADDING-XXLARGE);
  }
}

/* Desktop (min-width: 1024px) */
@media screen and (min-width: 1024px) {
  .team-profile-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--PADDING-XXXLARGE);
  }

  .team-intro,
  .team-profile-heading,
  .team-profile-grid {
    max-width: var(--CONTENT-MAX-WIDTH);
    margin: var(--PADDING-LARGE) auto;
  }

  .team-profile-picture {
    max-height: 450px;
    max-width: 350px;
  }
}

/* Location wise Team Images */
.team-group-section {
  max-width: var(--CONTENT-MAX-WIDTH);
  margin: var(--PADDING-XLARGE) auto;
  padding-bottom: var(--PADDING-XLARGE);
}

.team-location {
  text-align: center;
  margin-bottom: var(--PADDING-XXLARGE);
  background-color: var(--BGCOLOR); /* light background for separation */
  border-radius: var(--BORDER-RADIUS);
  /* padding: var(--PADDING-LARGE); */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.team-location:hover {
  transform: translateY(-4px);
}

.team-location h2 {
  color: var(--FIRST-PURPLE);
  /* margin-bottom: var(--PADDING-STANDARD); */
  padding: var(--PADDING-LARGE);
  text-shadow: 1px 1px 4px rgba(255, 255, 255);
}

.team-location-image {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

@keyframes slowZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1); /* Zoom in slowly to 110% */
  }
}

.team-location-image img {
  width: 100%;
  height: auto;
  border-radius: 2px;
  object-fit: cover;
  /* margin-bottom: var(--PADDING-STANDARD); */
  animation: slowZoom 60s ease-in-out infinite alternate;
  transform-origin: center;
}

.team-location-description {
  /* max-width: 800px; */
  margin: var(--PADDING-MEDIUM) auto 0;
  color: var(--FONT-COLOR);
  font-size: 1rem;
  line-height: 1.6;
  padding: var(--PADDING-LARGE) var(--PADDING-XSMALL);
}

/* Container for multiple photos */
.team-location-gallery {
  display: flex;
  flex-direction: column;
  gap: var(--PADDING-LARGE);
}

/* Ignite Path section */
.team-ignite-path {
  position: relative;
  background-image: url("../img/team-ignite-path-bg.webp");
  background-size: cover;
  background-position: center 80%;
  width: 100%;
  overflow: hidden;
}

.team-ignite-path::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(50, 190, 161, 0.6);
  z-index: 1;
}

.team-ignite-path .team-text-content {
  position: relative;
  z-index: 2;
  color: var(--LIGHT-FONT-COLOR);
  width: var(--CONTENT-MAX-WIDTH);
  margin: 0 auto;
  text-align: left;
  padding: var(--PADDING-XXXLARGE) 0;
}

.team-text-content {
  display: flex;
  align-items: center;
  gap: var(--PADDING-XXLARGE);
}

.team-text {
  width: 75%;
}

.team-text h2 {
  padding-bottom: var(--PADDING-SMALL);
}

.team-link {
  background-color: var(--BGCOLOR);
  padding: var(--PADDING-SMALL) var(--PADDING-LARGE);
  border-radius: var(--BUTTON-BORDER-RADIUS);
  white-space: nowrap;
}

.team-link a {
  color: var(--SIXTH-DARKER-TEAL);
  text-decoration: none;
  font-weight: var(--FF-BUTTON-WEIGHT);
  text-transform: uppercase;
}

.team-text-content {
  flex-direction: column;
  gap: var(--PADDING-LARGE);
  text-align: center;
  padding: var(--PADDING-XXLARGE) var(--PADDING-SMALL);
}

.team-text {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .team-text-content {
    flex-direction: row;
    text-align: left;
    gap: var(--PADDING-XXLARGE);
  }

  .team-text {
    width: 75%;
  }
}

/* ||||||||||||||||||||||||||||||||||||||||||||||||||||| */

/* || LOGISTICS, WAREHOUSING AND PROCUREMENT SERVICES FORM BLOCK */

.booking-form-container {
  max-width: var(--CONTENT-MAX-WIDTH);
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 50% 50%;
}

.booking-form-image {
  max-width: 100%;
  height: 100%;
  overflow: hidden;
  padding-top: var(--PADDING-XXLARGE);
  /* padding-right: var(--PADDING-XXLARGE); */
}

.booking-form-image img {
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding-right: var(--PADDING-XLARGE);
}

.logistics-booking-form {
  padding: var(--PADDING-XXLARGE) 0;
  /* gap: var(--PADDING-SMALL); */
}

.logistics-booking-form h3 {
  color: var(--FIRST-PURPLE);
  padding-bottom: var(--PADDING-SMALL);
}

.logistics-booking-form p {
  padding-bottom: var(--PADDING-STANDARD);
}

.logistics-booking-form form {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--PADDING-STANDARD);
  width: var(--CONTENT-MAX-WIDTH);
}

.logistics-booking-form form input,
.logistics-booking-form form select {
  padding: var(--PADDING-SMALL);
  border: 1px solid var(--BORDER-COLOR-LIGHT);
  border-radius: var(--BUTTON-BORDER-RADIUS);
  font-size: var(--FS-MEDIUM);
  width: 100%;
  font-size: var(--FS-MEDIUM);
  font-family: var(--FF);
  color: #666;
}

/* Hide default arrow in Chrome, Safari, Edge */
.single-option-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: none; /* Remove custom arrow if any */
  padding-right: 16px; /* Keep spacing consistent */
  cursor: default;
}

.logistics-booking-form form textarea {
  padding: var(--PADDING-SMALL);
  border: 1px solid var(--BORDER-COLOR-LIGHT);
  border-radius: var(--BUTTON-BORDER-RADIUS);
  font-size: var(--FS-MEDIUM);
  width: 75%;
  height: 120px;
  margin-right: 5rem;
}

.logistics-booking-form form button {
  background-color: var(--SIXTH-DARKER-TEAL);
  color: var(--LIGHT-FONT-COLOR);
  padding: var(--PADDING-SMALL) var(--PADDING-LARGE);
  border-radius: var(--BUTTON-BORDER-RADIUS);
  border: none;
  cursor: pointer;
  text-align: center;
  justify-self: start; /* Align to left inside the form */
  width: auto; /* Shrink to fit content */
  grid-column: 1 / -1; /* Still span full width space */
}

.logistics-booking-form form button:hover {
  background-color: var(--FIFTH-MINT-GREEN);
}

.logistics-booking-form form button:active {
  background-color: var(--FIRST-PURPLE);
}

.logistics-booking-form form textarea,
.logistics-booking-form form .acceptance-checkbox,
.logistics-booking-form form button,
.logistics-booking-form p {
  grid-column: 1 / -1;
}

.acceptance-checkbox {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: var(--PADDING-SMALL);
  z-index: 5; /* Ensure checkbox is above other elements */
  font-size: var(--FS-SMALL);
}

.acceptance-checkbox input {
  margin-right: 5px;
  flex-shrink: 0; /* Prevent checkbox from shrinking */
  position: relative; /* Make checkbox clickable */
  z-index: 5; /* Ensure checkbox is in the correct layer */
  align-items: center;
}

.acceptance-checkbox input[type="checkbox"] {
  width: 14px;
  cursor: pointer;
}

.acceptance-checkbox label {
  align-items: center;
  color: var(--TEXT-COLOR);
  padding-bottom: 2px;
}

.services-form-popup-ok-btn {
  padding: var(--PADDING-SMALL) var(--PADDING-XLARGE);
  background-color: var(--SIXTH-DARKER-TEAL);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.services-form-popup-ok-btn:hover {
  background-color: var(--SIXTH-DARKER-TEAL-OP);
}

#logistics-form-loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.8);
  z-index: 9998;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none; /* hidden by default */
}

.logistics-form-spinner {
  border: 6px solid #f3f3f3;
  border-top: 6px solid var(--SIXTH-DARKER-TEAL);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#logistics-booking-form {
  scroll-margin-top: 205px;
}

/* ||||||||||||||||||||||||||||||||||||||||||||||||||||| */

/* || WAREHOUSING SERVICES FORM BLOCK */

.warehousing-booking-form {
  padding: var(--PADDING-XXLARGE) 0;
  /* gap: var(--PADDING-SMALL); */
}

.warehousing-booking-form h3 {
  color: var(--FIRST-PURPLE);
  padding-bottom: var(--PADDING-SMALL);
}

.warehousing-booking-form p {
  padding-bottom: var(--PADDING-STANDARD);
}

.warehousing-booking-form form {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--PADDING-STANDARD);
  width: var(--CONTENT-MAX-WIDTH);
}

.warehousing-booking-form form input,
.warehousing-booking-form form select {
  padding: var(--PADDING-SMALL);
  border: 1px solid var(--BORDER-COLOR-LIGHT);
  border-radius: var(--BUTTON-BORDER-RADIUS);
  font-size: var(--FS-MEDIUM);
  width: 100%;
  font-size: var(--FS-MEDIUM);
  font-family: var(--FF);
  color: #666;
}

/* Hide default arrow in Chrome, Safari, Edge */
.single-option-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: none; /* Remove custom arrow if any */
  padding-right: 16px; /* Keep spacing consistent */
  cursor: default;
}

.warehousing-booking-form form textarea {
  padding: var(--PADDING-SMALL);
  border: 1px solid var(--BORDER-COLOR-LIGHT);
  border-radius: var(--BUTTON-BORDER-RADIUS);
  font-size: var(--FS-MEDIUM);
  width: 75%;
  height: 120px;
  margin-right: 5rem;
}

.warehousing-booking-form form button {
  background-color: var(--SIXTH-DARKER-TEAL);
  color: var(--LIGHT-FONT-COLOR);
  padding: var(--PADDING-SMALL) var(--PADDING-LARGE);
  border-radius: var(--BUTTON-BORDER-RADIUS);
  border: none;
  cursor: pointer;
  text-align: center;
  justify-self: start; /* Align to left inside the form */
  width: auto; /* Shrink to fit content */
  grid-column: 1 / -1; /* Still span full width space */
}

.warehousing-booking-form form button:hover {
  background-color: var(--FIFTH-MINT-GREEN);
}

.warehousing-booking-form form button:active {
  background-color: var(--FIRST-PURPLE);
}

.warehousing-booking-form form textarea,
.warehousing-booking-form form .acceptance-checkbox,
.warehousing-booking-form form button,
.warehousing-booking-form p {
  grid-column: 1 / -1;
}

.acceptance-checkbox {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: var(--PADDING-SMALL);
  z-index: 5; /* Ensure checkbox is above other elements */
  font-size: var(--FS-SMALL);
}

.acceptance-checkbox input {
  margin-right: 5px;
  flex-shrink: 0; /* Prevent checkbox from shrinking */
  position: relative; /* Make checkbox clickable */
  z-index: 5; /* Ensure checkbox is in the correct layer */
  align-items: center;
}

.acceptance-checkbox input[type="checkbox"] {
  width: 14px;
  cursor: pointer;
}

.acceptance-checkbox label {
  align-items: center;
  color: var(--TEXT-COLOR);
  padding-bottom: 2px;
}

.services-form-popup-ok-btn {
  padding: var(--PADDING-SMALL) var(--PADDING-XLARGE);
  background-color: var(--SIXTH-DARKER-TEAL);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.services-form-popup-ok-btn:hover {
  background-color: var(--SIXTH-DARKER-TEAL-OP);
}

#warehousing-form-loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.8);
  z-index: 9998;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none; /* hidden by default */
}

.warehousing-form-spinner {
  border: 6px solid #f3f3f3;
  border-top: 6px solid var(--SIXTH-DARKER-TEAL);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#warehousing-booking-form {
  scroll-margin-top: 225px;
}

.preferred-warehouse-locations {
  grid-column: 1 / -1; /* Span full width of the form */
}

/* Hide default radio button */
.preferred-warehouse-locations input[type="radio"] {
  accent-color: Teal; /* Changes the selection dot color */
  flex-shrink: 0;
  width: 16px;   /* adjust as needed */
  height: 16px;
}

.preferred-warehouse-locations p {
  font-weight: bold;
  padding-bottom: var(--PADDING-SMALL);
  /* margin-bottom: var(--PADDING-XSMALL); */
}

.locations-radio-options {
  display: grid;
  grid-template-columns: repeat(2, auto); /* 2x2 layout */
  gap: var(--PADDING-XSMALL) var(--PADDING-LARGE);
  justify-content: left;
  justify-items: left;
}

.locations-radio-options label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--FS-SMALL);
  white-space: nowrap;
  max-width: 100%; /* avoid overflow */
  flex-shrink: 0; /* prevent label text from shrinking */
}

@media screen and (max-width: 768px) {
  .booking-form-container {
    grid-template-columns: 100%;
  }
  .booking-form-image {
    justify-items: center;
  padding-top: var(--PADDING-STANDARD);
}

.booking-form-image img {
  
  height: 15vh;
  padding-right: var(--PADDING-STANDARD);
}

.logistics-booking-form {
  padding: var(--PADDING-STANDARD) 0;
}

.warehousing-booking-form {
  padding: var(--PADDING-STANDARD) 0;
}

.procurement-booking-form {
  padding: var(--PADDING-STANDARD) 0;
}

 .locations-radio-options {
  grid-template-columns:100%; /* 1x1 layout */
}
}

/* ||||||||||||||||||||||||||||||||||||||||||||||||||||| */

/* || PROCUREMENT SERVICES FORM BLOCK */
.procurement-booking-form {
  padding: var(--PADDING-XXLARGE) 0;
  /* gap: var(--PADDING-SMALL); */
}

.procurement-booking-form h3 {
  color: var(--FIRST-PURPLE);
  padding-bottom: var(--PADDING-SMALL);
}

/* .procurement-booking-form p {
  padding-bottom: var(--PADDING-STANDARD);
} */

.procurement-booking-form form {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--PADDING-SMALL) var(--PADDING-XLARGE);
  width: var(--CONTENT-MAX-WIDTH);
}

.procurement-booking-form form p {
  padding-bottom: 0;
  font-weight: bold;
  padding-top: var(--PADDING-STANDARD);
}

.procurement-booking-form form input,
.procurement-booking-form form select {
  padding: 0.2rem 0.5rem;
  border: 1px solid var(--BORDER-COLOR-LIGHT);
  border-radius: var(--BUTTON-BORDER-RADIUS);
  font-size: 0.9rem;
  width: 100%;
  font-size: var(--FS-MEDIUM);
  font-family: var(--FF);
  color: #666;
}

.procurement-booking-form form input::placeholder {
  font-size: 0.9rem;
}

/* Hide default arrow in Chrome, Safari, Edge */
.single-option-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: none; /* Remove custom arrow if any */
  padding-right: 16px; /* Keep spacing consistent */
  cursor: default;
}

.procurement-booking-form form textarea {
  padding: var(--PADDING-SMALL);
  border: 1px solid var(--BORDER-COLOR-LIGHT);
  border-radius: var(--BUTTON-BORDER-RADIUS);
  font-size: var(--FS-MEDIUM);
  width: 75%;
  height: 120px;
  margin-right: 5rem;
}

.procurement-booking-form form button {
  background-color: var(--SIXTH-DARKER-TEAL);
  color: var(--LIGHT-FONT-COLOR);
  padding: var(--PADDING-SMALL) var(--PADDING-LARGE);
  border-radius: var(--BUTTON-BORDER-RADIUS);
  border: none;
  cursor: pointer;
  text-align: center;
  justify-self: start; /* Align to left inside the form */
  width: auto; /* Shrink to fit content */
  grid-column: 1 / -1; /* Still span full width space */
}

.procurement-booking-form form button:hover {
  background-color: var(--FIFTH-MINT-GREEN);
}

.procurement-booking-form form button:active {
  background-color: var(--FIRST-PURPLE);
}

.procurement-booking-form form textarea,
.procurement-booking-form form .acceptance-checkbox,
.procurement-booking-form form button,
.procurement-booking-form p {
  grid-column: 1 / -1;
}

.acceptance-checkbox {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: var(--PADDING-SMALL);
  z-index: 5; /* Ensure checkbox is above other elements */
  font-size: var(--FS-SMALL);
}

.acceptance-checkbox input {
  margin-right: 5px;
  flex-shrink: 0; /* Prevent checkbox from shrinking */
  position: relative; /* Make checkbox clickable */
  z-index: 5; /* Ensure checkbox is in the correct layer */
  align-items: center;
}

.acceptance-checkbox input[type="checkbox"] {
  width: 14px;
  cursor: pointer;
}

.acceptance-checkbox label {
  align-items: center;
  color: var(--TEXT-COLOR);
  padding-bottom: 2px;
}

.services-form-popup-ok-btn {
  padding: var(--PADDING-SMALL) var(--PADDING-XLARGE);
  background-color: var(--SIXTH-DARKER-TEAL);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.services-form-popup-ok-btn:hover {
  background-color: var(--SIXTH-DARKER-TEAL-OP);
}

#procurement-form-loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.8);
  z-index: 9998;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none; /* hidden by default */
}

.procurement-form-spinner {
  border: 6px solid #f3f3f3;
  border-top: 6px solid var(--SIXTH-DARKER-TEAL);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.double-fields {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.double-fields label {
  flex-basis: 60%;
  font-size: var(--FS-SMALL);
  white-space: nowrap;
}

.procurement-booking-form .double-fields input,
.procurement-booking-form .double-fields select {
  flex-basis: 40%;
  padding: 3px 5px;
  align-items: center;
  font-size: var(--FS-SMALL);
}

/* .procurement-booking-form .double-fields select {
  padding: 3.5px 5px;
} */

.procurement-booking-form .double-fields input::placeholder {
  font-size: var(--FS-SMALL);
}

.single-field {
  display: grid;
  grid-template-columns: 55% 45%;
  grid-column: 1 / -1;
  align-items: center;
}

.single-field label {
  font-size: 0.9rem;
  font-weight: bold;
  align-items: center;
}

.single-field input {
  align-items: center;
}

.single-field input[type="date"] {
  font-size: 0.9rem;
  color: #999;
}

#procurement-booking-form {
  scroll-margin-top: 215px;
}


/* ||||||||||||||||||||||||||||||||||||||||||||||||||||| */


/* || FOOTER */

footer {
  background-color: var(--BGCOLOR);
  text-align: left;
  bottom: 0;
  width: 100%;
  margin: 0;
  padding-top: var(--PADDING-LARGE);
  padding-bottom: var(--PADDING-STANDARD);
}

.footer-content {
  max-width: var(--CONTENT-MAX-WIDTH);
  width: 100%;
  margin: 0 auto;
  padding: var(--PADDING-XLARGE) 0;
}

.footer-content-row-one {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 1em;
}

.footer-content-column {
  width: 20%;
  margin-bottom: 0;
}

.footer-content-column h3 {
  font-size: var(--FS-MEDIUM);
  margin-bottom: 0.75em;
  color: var(--FIRST-PURPLE);
}

.footer-content-column h3 a {
  text-decoration: none;
  font-size: var(--FS-MEDIUM);
  margin-bottom: 0.75em;
  color: var(--FIRST-PURPLE);
}

.footer-content-column ul {
  list-style-type: none;
  padding: 0;
  display: block;
  gap: 1rem;
}

.footer-content-column ul li {
  margin-bottom: 0.4em;
}

.footer-content-column ul li a {
  text-decoration: none;
  color: var(--FONT-COLOR);
  font-size: var(--FS-MEDIUM);
  width: 1.25rem;
  height: auto;
  transition: transform 0.3x ease-in-out;
}

.footer-content-column ul li a:hover {
  color: var(--SIXTH-DARKER-TEAL);
  transform: scale(1.1);
}

.footer-content-divider {
  border: 0;
  border-top: 1px solid var(--BORDER-COLOR);
  margin: var(--PADDING-XSMALL) 0;
}

.footer-content-row-two {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: var(--PADDING-STANDARD);
}

.footer-content-left {
  display: flex;
  align-items: center;
}

.footer-content-left p {
  flex: 1;
  text-align: left;
}

.footer-content-left .footer-content-logo img,
.footer-content-left .google-play img {
  max-height: 40px;
  margin-left: 1em;
}

.google-play img {
  max-width: 120px;
}

.group-logo img {
  max-height: 40px;
}

.footer-content-right {
  display: flex;
  justify-content: flex-end;
}

.footer-content-right .group-logo {
  max-width: 100px;
}

@media screen and (max-width: 768px) {
  .footer-content-row-one {
    justify-content: space-between;
  }

  .footer-content-column {
    width: 30%; /* Allows max 3 columns per row */
    margin-bottom: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .footer-content-column {
    width: 100%; /* Stack into a single column for very small screens */
  }
}
