/* Color palette in one of the text banners: 

BLUE #0B1F3B
ORANGE #FF6B00
GRAY (almost white ) #F2F4F7

 */
html {
  overflow-x: hidden;
  width: 100dvw;
}

body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #FF6B00;
  color: #0B1F3B;
  font-size: 1.25rem;
}

.container {
  width: 90%;
  margin: auto;
  max-width: 1200px;
  background-color: rgba(255, 255, 255, 0.0);
}

/* DESKTOP HEADER */
header {
  position: sticky;
  top: 0;
  background-color: #0B1F3B;
  z-index: 5000;
}

.header_content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  padding-bottom: 5px;
}


.logo_container {
  padding: 0;
}

.logo {
  height: 70px !important;
  width: auto;
  display: block;
}

.logo_text_container {
  text-align: left;
  color: white;
  margin-bottom: 0;
}

.logo_text_container h1 {
  font-size: 1.4rem;
  color: #FF6B00;
  margin-top: 0;
  margin-bottom: 0;
}

.logo_text_container h2 {
  font-size: 1.2rem;
  margin-top: 0;
  margin-bottom: 0;
}


/* HERO */
.hero {
  padding: 140px 20px;
  padding-top: 0;
  margin-top: 0;
}

.hero h1 {
  font-size: 3.2em;
  max-width: 800px;
  margin: auto;
  margin-top: 0;
  margin-bottom: 0;
}

.hero p {
  font-size: 1.2em;
  margin-top: 20px;
}


/* ABOUT US SECTION */
.about {
  padding: 80px 0;
  text-align: center;
  max-width: 800px;
  background-color: #FF6B00;
  color: #F2F4F7;
  font-size: 1.5rem;
}

.about-us-cards {
  margin-left: auto;
  margin-right: auto;
}

.about-us-container {
  margin-left: auto;
  padding: 20px 100px;
  background-color: #0B1F3B;
  border-radius: 20px;
  box-shadow: 0 0 15px 20px rgba(0, 0, 0, 0.6);
}

/* ABOUST US CARDS */
.card {
  padding: 20px;
  border: 1px solid #eee;
  text-align: center;
  background-color: #FF6B00;
  border-radius: 10px;
  margin: 8px;
  color: #0B1F3B;
}


/* SERVICES SECTION */
/* ==========================================
   WHAT WE DO
========================================== */

.services-section {
  padding: 80px 40px;
  background: #f8f9fb;
}

.what-we-do-section {
  text-align: center;
  max-width: 900px;
  margin: auto;
  margin-bottom: 60px;
}

.what-we-do-section h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #0B1F3B;
}

.what-we-do-section p {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #0B1F3B;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 30px;
}

.service-category {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
  transition: .25s;
}

.service-category:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
}

.service-category h3 {
  color: #0B1F3B;
  margin-bottom: 18px;
  border-bottom: 3px solid #0B1F3B;
  padding-bottom: 10px;
}

.service-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-category li {
  padding: 8px 0;
  border-bottom: 1px solid #ececec;
}

.service-category li:last-child {
  border-bottom: none;
}

.service-category li::before {
  content: "✓";
  color: #0B1F3B;
  font-weight: bold;
  margin-right: 10px;
}

/* WHY ALLO MOVING SECTION */

.why {
  background: #0B1F3B;
  padding: 40px 0;
  color: white;
  font-size: 1.5rem;
}

.why h2 {
  font-size: 3rem;
  margin-top: 80px;
  margin-bottom: 60px;
  text-align: center;
  color: #F2F4F7;
}


.why-container {
  margin-top: 90px;
  margin-bottom: 100px;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  padding: 30px 100px;
  background-color: #FF6B00;
  border-radius: 20px;
  box-shadow: 0 0 15px 15px rgba(255, 107, 0, 0.6);
}

.why p {
  padding: 30px 30px;
  background-color: #0B1F3B;
  color: #F2F4F7;
  border-radius: 15px;
  box-shadow: 0 0 8px 8px rgba(11, 31, 59, 0.6);
}



/* CONTACT */
.contact {
  padding: 80px 0;
  text-align: center;
  background-color: #FF6B00;
  color: #F2F4F7;
}

.contact-container {
  margin-left: auto;
  margin-right: auto;
  padding: 20px 100px;
  background-color: #0B1F3B;
  border-radius: 20px;
  box-shadow: 0 0 15px 20px rgba(0, 0, 0, 0.6);
}

.contact-container a {
  color: white;
}

.hero {
  background: #0B1F3B;
  text-align: center;
  padding: 80px 20px;
  color: white;
}

.hero h1 {
  font-size: 1.8em;
}

.services {
  background: #FF6B00;
  padding: 40px 0;
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

/* CTA buttons */
.cta {
  display: flex;
  justify-content: center;
  /* Center the buttons */
  align-items: center;
  gap: 25px;
  /* Space between buttons */
  flex-wrap: wrap;
  /* Allows wrapping on small screens */
  margin: 40px auto;
}

.hero-button {
  display: inline-block;
  text-align: center;
  padding: 15px 30px;
  font-size: 2.2rem;
  background: #F2F4F7;
  color: #0B1F3B;
  text-decoration: none;
  border-radius: 15px;
  box-shadow: 6px 12px 20px rgba(255, 107, 0, .6);
  transition: .25s ease;
}

.style-2-button {
  box-shadow: 6px 12px 20px rgba(11, 26, 41, .6);
}

.style-3-button {
  background: #0B1F3B;
  color:  #F2F4F7;
}

.hero-button:hover {
  background: #FF6B00;
  color: white;
  transform: translateY(-4px);
}

.style-2-button:hover {
  background: #0B1F3B;
  color: #FF6B00;
}

.hero-button:active {
  transform: translateY(0);
}

/* ON THE MOVE GALLERY */
/* CTA SECTION */
.cta-section h2 {
  font-size: 2.2em;
}

.on-the-move-section {
  text-align: center;
  padding: 40px 20px;
  background: #0B1F3B;
  color: white;
}

.contact {
  padding: 40px 0;
  font-size: 1.7rem;
}

footer {
  text-align: left;
  font-size: 0.9rem;
  padding: 20px;
  background: #0B1F3B;
  color: white;
}

.blue-to-orange-grandient {
  height: 120px;
  z-index: 10;
  background: linear-gradient(to bottom, #0B1F3B, #FF6B00);
}

.orange-to-blue-grandient {
  height: 120px;
  z-index: 10;
  background: linear-gradient(to bottom, #FF6B00, #0B1F3B);
}

.blue-to-white-grandient {
  height: 90px;
  z-index: 10;
  background: linear-gradient(to bottom, #0B1F3B, #F2F4F7);
}

.white-to-blue-grandient {
  height: 90px;
  z-index: 10;
  background: linear-gradient(to bottom, #F2F4F7, #0B1F3B);
}

.blue-to-orange-to-blue-grandient {
  height: 6px;
  z-index: 10;
  background: linear-gradient(to bottom, #0B1F3B, #FF6B00, #0B1F3B);
}

.spacer {
  height: 10dvh;
}