/* CSS file for Exelion project */
:root {
  --primary-color: #343875;
  --secondary-color: #fcca43;
  --text-color: #1b1c20;
}

/*  typography */
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700");

@font-face {
  font-family: "MTN Brighter Sans Regular";
  src: url("https://db.onlinewebfonts.com/t/4baee4a2550da10078fd0d6dd9440bc1.eot");
  src: url("https://db.onlinewebfonts.com/t/4baee4a2550da10078fd0d6dd9440bc1.eot?#iefix")
      format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/4baee4a2550da10078fd0d6dd9440bc1.woff2")
      format("woff2"),
    url("https://db.onlinewebfonts.com/t/4baee4a2550da10078fd0d6dd9440bc1.woff")
      format("woff"),
    url("https://db.onlinewebfonts.com/t/4baee4a2550da10078fd0d6dd9440bc1.ttf")
      format("truetype"),
    url("https://db.onlinewebfonts.com/t/4baee4a2550da10078fd0d6dd9440bc1.svg#MTN Brighter Sans Regular")
      format("svg");
}

@font-face {
  font-family: "MTN Brighter Sans Bold";
  src: url("https://db.onlinewebfonts.com/t/8bf395247829bac4c3c782ae6c989cb5.eot");
  src: url("https://db.onlinewebfonts.com/t/8bf395247829bac4c3c782ae6c989cb5.eot?#iefix")
      format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/8bf395247829bac4c3c782ae6c989cb5.woff2")
      format("woff2"),
    url("https://db.onlinewebfonts.com/t/8bf395247829bac4c3c782ae6c989cb5.woff")
      format("woff"),
    url("https://db.onlinewebfonts.com/t/8bf395247829bac4c3c782ae6c989cb5.ttf")
      format("truetype"),
    url("https://db.onlinewebfonts.com/t/8bf395247829bac4c3c782ae6c989cb5.svg#MTN Brighter Sans Bold")
      format("svg");
}

body {
  line-height: 1.2;
  font-family: "Poppins", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  color: #5c5c77;
}

p,
.paragraph {
  font-weight: 300;
  color: #5c5c77;
  font-size: 15px;
  line-height: 1.9;
  font-family: "MTN Brighter Sans Regular";
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #1e1e4b;
  font-family: "MTN Brighter Sans Bold";
  font-weight: 300;
  line-height: 1.2;
}

h1,
.h1 {
  font-size: 60px;
}
@media (max-width: 575px) {
  h1,
  .h1 {
    font-size: 45px;
  }
}

h2,
.h2 {
  font-size: 40px;
}
@media (max-width: 575px) {
  h2,
  .h2 {
    font-size: 30px;
  }
}

h3,
.h3 {
  font-size: 25px;
}
@media (max-width: 575px) {
  h3,
  .h3 {
    font-size: 20px;
  }
}

h4,
.h4 {
  font-size: 20px;
}
@media (max-width: 575px) {
  h4,
  .h4 {
    font-size: 18px;
  }
}

h5,
.h5 {
  font-size: 18px;
}
@media (max-width: 575px) {
  h5,
  .h5 {
    font-size: 16px;
  }
}

h6,
.h6 {
  font-size: 16px;
}
@media (max-width: 575px) {
  h6,
  .h6 {
    font-size: 14px;
  }
}

/* Button style */
.btn {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  text-transform: capitalize;
  padding: 15px 40px;
  border-radius: 0;
  font-weight: 500;
  border: 0;
  position: relative;
  z-index: 1;
  transition: 0.2s ease;
  overflow: hidden;
  white-space: nowrap;
}
.btn::before {
  position: absolute;
  content: "";
  height: 80%;
  width: 100%;
  left: 0;
  bottom: 10%;
  z-index: -1;
  transition: transform 0.2s ease-in-out;
  transform-origin: top;
  transform: scaleY(0);
}
.btn:active,
.btn:hover,
.btn.focus,
.btn:focus,
.btn.active {
  outline: 0;
  box-shadow: none !important;
}
.btn:active::before,
.btn:hover::before,
.btn.focus::before,
.btn:focus::before,
.btn.active::before {
  transform: scaleY(1);
  transform-origin: bottom;
}

.btn-sm {
  font-size: 14px;
  padding: 10px 35px;
}

.btn-xs {
  font-size: 12px;
  padding: 5px 15px;
}

.btn-primary {
  color: #fff;
  background-color: #ffbc3b;
}
.btn-primary::before {
  background-color: #fff;
}
.btn-primary:active,
.btn-primary:hover,
.btn-primary.focus,
.btn-primary:focus,
.btn-primary.active {
  color: #ffbc3b !important;
  background-color: rgb(255, 170.5663265306, 8) !important;
  border-color: rgb(255, 170.5663265306, 8) !important;
}

.btn-outline-primary {
  color: #ffbc3b;
  background-color: transparent;
  border: 1px solid #ffbc3b;
}
.btn-outline-primary::before {
  background-color: #fff;
}
.btn-outline-primary:active,
.btn-outline-primary:hover,
.btn-outline-primary.focus,
.btn-outline-primary:focus,
.btn-outline-primary.active {
  color: #ffbc3b !important;
  background-color: #ffbc3b !important;
  border-color: #ffbc3b !important;
}

.btn-light {
  color: #ffbc3b;
  background-color: #fff;
  border: 1px solid #fff;
}
.btn-light::before {
  background-color: #ffbc3b;
}
.btn-light:active,
.btn-light:hover,
.btn-light.focus,
.btn-light:focus,
.btn-light.active {
  color: #fff !important;
  background-color: #fff !important;
  border: 1px solid #fff !important;
}

body {
  background-color: #fff;
  overflow-x: hidden;
}

::-moz-selection {
  background: rgb(255, 205.4336734694, 110);
  color: #fff;
}

::selection {
  background: rgb(255, 205.4336734694, 110);
  color: #fff;
}

/* preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffdc11;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
}

ol,
ul {
  list-style-type: none;
  margin: 0px;
}

img {
  vertical-align: middle;
  border: 0;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a,
button,
select {
  cursor: pointer;
  transition: 0.2s ease;
}
a:focus,
button:focus,
select:focus {
  outline: 0;
}

a:hover {
  color: #ffbc3b;
}

a.text-primary:hover {
  color: #ffbc3b !important;
}

a.text-light:hover {
  color: #ffbc3b !important;
}

h4 {
  transition: 0.2s ease;
}

a h4:hover {
  color: #ffbc3b;
}

.slick-slide {
  outline: 0;
}

.section {
  padding-top: 90px;
  padding-bottom: 90px;
}
.section-sm {
  padding-top: 40px;
  padding-bottom: 40px;
}
.section-title {
  margin-bottom: 30px;
}

.bg-cover {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.border-primary {
  border-color: #ededf1 !important;
}

/* overlay */
.overlay {
  position: relative;
}
.overlay::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #1a1a37;
  opacity: 0.8;
}

.outline-0 {
  outline: 0 !important;
}

.d-unset {
  display: unset !important;
}

.bg-primary {
  background: #ffbc3b !important;
}

.bg-secondary {
  background: #1a1a37 !important;
}

.bg-blur {
  position: relative;
  z-index: 0;
}
.bg-blur::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(35deg, #c6c8df 0%, #f2edf4 40%, #ebd8ad 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: -1;
  pointer-events: none;
  border-radius: inherit;
}

.bg-gray {
  background: #f8f8f8;
}

.text-primary {
  color: #343875 !important;
}

.text-secondary {
  color: #fcca43;
}

.text-color {
  color: #5c5c77;
}

.text-light {
  color: #8585a4 !important;
}

.text-lighten {
  color: #d6d6e0 !important;
}

.text-muted {
  color: #b5b5b7 !important;
}

.text-dark {
  color: #1e1e4b !important;
}

.font-secondary {
  font-family: "Montserrat", sans-serif;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.pl-150 {
  padding-left: 150px;
}

.pxp-5 {
  padding: 0 8% !important;
}

.mlr {
  position: relative;
  right: 0;
}

.zindex-1 {
  z-index: 1;
}

@media (max-width: 991px) {
  .overflow-md-hidden {
    overflow: hidden;
  }
}

.vertical-align-middle {
  vertical-align: middle;
}

.icon-md {
  font-size: 36px;
}

/* page title */
.page-title-section {
  padding: 200px 0 80px;
}

.custom-breadcrumb li.nasted {
  position: relative;
  padding-left: 25px;
}
.custom-breadcrumb li.nasted::before {
  position: absolute;
  font-family: "themify";
  content: "\e649";
  font-size: 20px;
  top: 50%;
  left: -5px;
  color: #fff;
  transform: translateY(-50%);
}

/* /page title */
.list-styled {
  padding-left: 25px;
}
.list-styled li {
  position: relative;
  margin-bottom: 15px;
}
.list-styled li::before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #ffbc3b;
  left: -25px;
  top: 5px;
}

textarea.form-control {
  height: 200px;
  padding: 20px;
}

#map_canvas {
  height: 500px;
}

.top-header {
  background-color: #253896;
  font-size: 12px;
  color: #fff;
  transition: transform 0.2s ease;
  transform-origin: top;
  font-weight: 600;
}
.top-header.hide {
  transform: scaleY(0);
  transform-origin: top;
}

.top-header a {
  color: #fff;
  transition: color 0.2s ease;
}
.top-header a:hover {
  color: #ffbc3b;
}

.navigation {
  background: #f8f8f8;
  transition: 0.2s ease;
}
@media (max-width: 991px) {
  .navigation {
    background: #f8f8f8;
  }
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: #f8f8f8;
    max-height: calc(100vh - 80px);
  }
  .navbar-collapse.show {
    overflow-y: auto;
  }
}

.navbar-nav {
  padding-left: 5px;
  background: #f8f8f8;
}
@media (max-width: 991px) {
  .navbar-nav {
    padding-left: 0;
    background: #f8f8f8;
  }
}

.nav-bg {
  background-color: #f8f8f8;
}

.nav-item {
  margin-left: 5em;
  position: relative;
}
@media (max-width: 991px) {
  .nav-item:last-child {
    margin-bottom: 20px;
  }
}
.nav-item .nav-link {
  text-transform: uppercase;
  font-weight: 600;
}
.nav-item::before {
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 4px;
  width: 5em;
  content: "";
  background: var(--primary-color);
  transform: translateX(-50%) scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
  pointer-events: none;
}
@media (max-width: 991px) {
  .nav-item::before {
    opacity: 0.1;
    height: 100%;
  }
}
.nav-item:hover::before,
.nav-item.active::before {
  transform: translateX(-50%) scaleY(1);
  transform-origin: bottom;
}

.navbar-dark .navbar-nav .nav-link {
  color: var(--text-color);
  font-size: 0.8em;
}

link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
  color: var(--text-color);
}

.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .show > .nav-link {
  color: var(--text-color);
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 40px 0px;
}
@media (max-width: 991px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 12px 20px;
  }
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.0509803922);
}

.navbar .nav-item > .dropdown-toggle::after {
  border: 0;
  margin-left: 0.255em;
  vertical-align: 1px;
  content: "\e64b";
  font-family: "themify";
  font-size: 11px;
  width: auto;
}
.navbar .dropdown .dropdown-menu li {
  padding-top: 10px;
}
.navbar .dropdown .dropdown-menu li:last-child {
  padding-bottom: 15px;
}
.navbar .dropdown .dropdown-menu.dropdown-submenu {
  top: 0;
}
@media (max-width: 991px) {
  .navbar .dropdown .dropdown-menu.dropdown-submenu li:first-child {
    margin-top: 15px;
  }
}
.navbar .dropdown .dropdown-item .dropdown-toggle {
  display: block;
  line-height: 1.8;
}
.navbar .dropdown:hover > .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.navbar .dropdown-menu {
  box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.12);
  border-bottom: 5px solid #ffbc3b;
  padding: 0 15px;
  padding-left: 5px;
  top: 96px;
  border-radius: 0;
  display: block;
  visibility: hidden;
  transition: 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  background: #fff;
}
@media (max-width: 991px) {
  .navbar .dropdown-menu {
    padding-left: 15px;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transform-origin: unset;
    margin: 0;
    border: 0;
    position: static;
  }
}
.navbar .dropdown-menu.show {
  visibility: hidden;
}
@media (max-width: 991px) {
  .navbar .dropdown-menu.show {
    visibility: visible;
    display: block;
  }
}
.navbar .dropdown .dropdown .dropdown-toggle,
.navbar .dropdown-item {
  position: relative;
  color: #1e1e4b;
  transition: 0.2s ease;
  text-transform: capitalize;
  font-family: "Poppins", sans-serif;
}
@media (max-width: 991px) {
  .navbar .dropdown .dropdown .dropdown-toggle,
  .navbar .dropdown-item {
    text-align: center;
  }
}
.navbar .dropdown .dropdown .dropdown-toggle:hover,
.navbar .dropdown-item:hover {
  color: #ffbc3b;
  background: transparent;
}

.hero-section {
  background: linear-gradient(35deg, #c6c8df 0%, #f2edf4 40%, #ebd8ad 100%);
  padding: 250px 0 0;
}
@media (max-width: 991px) {
  .hero-section {
    padding: 250px 0 200px;
  }
}

.hero-slider img {
  z-index: 0;
  width: 90%;
}

.hero-slider h1 {
  font-size: 6em;
  line-height: 1em;
}

.hero-slider .prevArrow,
.hero-slider .nextArrow {
  position: absolute;
  bottom: -123px;
  z-index: 9;
  padding: 15px;
  color: rgba(255, 255, 255, 0.5);
  border: 0;
  font-size: 30px;
  transition: all linear 0.2s;
  background: transparent;
}
.hero-slider .prevArrow:focus,
.hero-slider .nextArrow:focus {
  outline: 0;
}
.hero-slider .prevArrow:hover,
.hero-slider .nextArrow:hover {
  color: #ffbc3b;
}
.hero-slider .prevArrow {
  right: 60px;
}
.hero-slider .nextArrow {
  right: 0;
}
.hero-slider .slick-dots {
  position: absolute;
  left: 0;
  bottom: -100px;
  padding-left: 0;
}
.hero-slider .slick-dots li {
  display: inline-block;
  margin: 0 6px;
}
.hero-slider .slick-dots li.slick-active button {
  background: #ffbc3b;
}
.hero-slider .slick-dots li button {
  color: transparent;
  padding: 0;
  overflow: hidden;
  height: 10px;
  width: 10px;
  background: rgba(255, 255, 255, 0.5);
  border: 0;
  outline: 0;
}

.pull-top {
  margin-top: -180px;
  z-index: 1;
}

.pull-map {
  margin-top: -20%;
  padding-top: 15%;
}

.fuel-card {
  border-radius: 15px;
  border: solid 1px #fff;
  padding: 30px;
  background: rgba(251, 252, 255, 0.9);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.fuel-card .divider {
  border-right: solid 1px #2b378e;
  height: 40%;
  align-self: center;
}
.fuel-card h4 {
  font-weight: bold;
  text-align: left;
  color: #000;
}

.fuel-card p {
  font-weight: 500;
  text-align: left;
  margin-bottom: 0;
  margin-top: 0;
}
.fuel-price {
  font-size: 3rem;
  color: #2d2c79;
  font-weight: 700;
  text-align: left;
}
.search-bar {
  border-radius: 40px;
  padding: 10px 20px;
}

.search .form-control {
  height: 60px;
  border-radius: 30px;
  background: #fff;
  padding-left: 25px;
  width: 80%;
}

.search input {
  width: 85%;
  height: 60px;
  border: none;
  box-shadow: none;
  font-size: 16px;
  color: #5c5c77;
  border-radius: 30px;
  margin-right: 2%;
}
.search .form-control:focus {
  border-color: #ffbc3b;
  box-shadow: none;
}

.search-button {
  border-radius: 40px;
  padding: 10px 30px;
  background: linear-gradient(to right, #ffd370, #f9ad03);
  color: white;
  font-weight: 500;
  border: none;
}
.stats-box {
  background: #fec63d;
  border-radius: 15px;
  padding: 10%;
  color: white;
}

.stats-box h1,
h2 {
  font-weight: bold;
  text-align: left;
  color: #fff;
}

.stats-box h6 {
  text-align: left;
  color: #fff;
}

.stats-box p {
  padding: 4% 0;
  text-align: left;
  color: #000;
  font-size: 0.9rem;
  border-bottom: solid 0.8px #f7f7f7;
}

.map-placeholder {
  height: auto;
  background-size: cover;
}

.banner-container {
  background: #2b368f;
  border-radius: 50px 50px 0 0;
  height: 70vh;
}

.banner-container img {
  position: absolute;
  top: 0;
  margin-top: 8%;
  right: 0;
  margin-right: 10%;
  width: 40%;
  z-index: 2;
}

.banner-feature {
  padding: 3rem 1rem;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.banner-feature .content h1 {
  font-size: 50px;
  margin-top: 7%;
  color: #fff;
}

.banner-pull {
  margin-top: -135px;
  z-index: 2;
  position: relative;
}

.yellow-section {
  color: #fff;
  padding: 0;
}

.yellow-section img {
  width: 100%;
  margin-top: -400px;
  position: relative;
  z-index: 6;
}

.yellow-section .truck {
  width: 100%;
  padding: 0;
  z-index: 7;
  margin-top: -25%;
  display: flex;
}
.yellow-section .truck img {
  position: relative;
  top: 0;
  width: 50%;
  z-index: 7;
}
.yellow-section .truck h1 {
  font-size: 50px;
  left: 0;
  color: var(--primary-color);
  position: relative;
  z-index: 7;
  margin-top: -6%;
  margin-left: 20%;
}

.white-section {
  color: #2b368f;
  padding: 0;
}

.white-section img {
  width: 100%;
  margin-top: -65px;
  position: relative;
  z-index: 7;
}

.white-section .content {
  position: relative;
  z-index: 8;
  padding: 0 20px;
  margin-top: -30%;
}

.white-section .content .main {
  font-size: 1.6em;
  line-height: 1em;
}

.white-section .content .sub {
  padding: 5%;
  margin-top: 3%;
  font-size: 1em;
  line-height: 1em;
}

.white-section .view-btn {
  background: #fff;
  border: none;
  border-radius: 25px;
  padding: 2% 5%;
  color: #262b82;
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 1em;
  align-self: end;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 2px 6px rgba(250, 228, 101, 0.7);
  transition: background 0.3s;
}

.banner-feature .content {
  position: relative;
  z-index: 2;
}

.banner-feature h1,
.banner-feature h2 {
  font-weight: 700;
}

.banner-feature img.tanker,
.banner-feature img.station {
  max-width: 100%;
  height: auto;
}

.banner-feature .tanker {
  position: absolute;
  bottom: 0;
  left: 2%;
  width: 45%;
  z-index: 2;
}

.banner-feature .station {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 35%;
  z-index: 2;
}

/* Values */
.values-section {
  color: #fff;
  padding: 0;
  height: auto;
}

.values-section img {
  width: 100%;
  margin-top: -280px;
  position: relative;
  z-index: 6;
}

.values-section .content {
  position: relative;
  z-index: 7;
  padding: 0 20px;
  margin-top: -35%;
}

.values-section .circle-img {
  width: 80%;
  height: 80%;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  margin: auto;
}

.values-section .circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
}

.values-section .right-section {
  color: #2b368f;
  align-items: end;
  text-align: end;
}

.values-section .small-text {
  font-size: 1.2em;
  line-height: 1em;
  color: #333;
}

.values-section .core-box {
  font-weight: 700;
  font-size: 4rem;
  margin: 10px 0;
  display: inline-block;
  padding: 4px 0;
}

.values-section .core-reliability {
  background-color: #fdd155;
  margin-bottom: 0;
  padding: 0 5%;
}

.values-section .core-customer {
  background-color: #fdf0b3;
  margin: 0;
  padding: 0 4px;
}

.values-section .core-safety {
  background-color: #dadaf5;
  margin: 0;
  padding: 0 4px;
}

.values-section .signature {
  margin-top: 5%;
  width: 30%;
  height: auto;
}

.values-section .ceo-title {
  font-size: 1.5rem;
  color: #444;
}

@media (max-width: 768px) {
  .values-section .circle-img {
    width: 250px;
    height: 250px;
  }

  .values-section .core-box {
    font-size: 1.4rem;
  }

  .values-section .right-section {
    text-align: center;
    margin-top: 20px;
  }
}

/* Products */

.products .title {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.products .title img {
  width: 80px;
  margin-top: -2%;
}

.products .section-title {
  font-size: 4rem;
  font-weight: 700;
  color: #262b82;
  margin-bottom: 2rem;
}

.products .product-card {
  background-color: #f0effc;
  border-radius: 15px;
  padding: 10%;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 20px;
}

.products i {
  color: #f6b60b;
}

.products .product-title {
  font-weight: 700;
  font-size: 2rem;
  color: #262b82;
}

.products .product-desc {
  font-size: 0.95rem;
  color: #333;
  margin-top: 5px;
  flex-grow: 1;
}

.products .view-btn {
  background: #fff;
  border: none;
  border-radius: 25px;
  padding: 3% 5%;
  color: #262b82;
  margin-bottom: -20px;
  font-weight: 600;
  font-size: 0.9rem;
  align-self: end;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: background 0.3s;
}

.products .view-btn:hover {
  background-color: #ede9ff;
}

.products .support-card {
  background-color: #fff1cf;
  border-radius: 15px;
  padding: 5%;
  height: 500px;
  margin-bottom: 5%;
}

.products .support-title {
  font-weight: 700;
  font-size: 4rem;
  color: #262b82;
}

.products .support-item {
  text-align: center;
}

.products .support-item i {
  font-size: 4rem;
  color: #f6b60b;
  margin-bottom: 0.5rem;
}

.products .support-text {
  font-size: 1.7rem;
  line-height: 1em;
  color: var(--primary-color);
}
/* /Products */

/* course */
.card-btn {
  font-size: 12px;
  padding: 5px 10px;
}

.flex-basis-33 {
  flex-basis: 33.3333%;
}

.hover-shadow {
  transition: 0.3s ease;
}
.hover-shadow:hover {
  box-shadow: 0px 4px 25px 0px rgba(27, 39, 71, 0.15);
}

/* footer */
/* Inline contact list for footer */
.contact-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-left: 0;
  list-style: none;
  font-size: 0.9em;
}
.contact-inline li {
  margin-bottom: 0;
  border-radius: 25px;
  padding: 2% 3%;
  background-color: #303030;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-inline i {
  color: #f89300;
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.socials {
  color: #f89300;
  font-size: 1.8em;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #303030;
  padding: 0;
}

.newsletter {
  position: relative;
  z-index: 1;
}
.newsletter-block {
  padding-left: 30px;
  background-color: #303030;
  border-radius: 25px;
}
@media (max-width: 575px) {
  .newsletter-block {
    padding-left: 15px;
  }
}

.newsletter-block h3 {
  color: #fff;
  font-size: 2em;
  font-weight: 400;
  margin-bottom: 15px;
}

.input-wrapper {
  position: relative;
}
.input-wrapper button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 25px;
  background-color: #fff;
  color: #000;
  display: flex;
  align-items: center;
  gap: 5px;
}

.input-wrapper button :hover {
  background-color: none;
}

.input-wrapper button i {
  color: #f89300;
}

.form-control {
  height: 40px;
  background: #252525;
  border-radius: 0;
  border-radius: 30px;
  color: #fff;
}
.form-control:focus {
  border-color: #ffbc3b;
  box-shadow: none;
  background-color: #252525;
  color: #fff;
}

.newsletter-block .form-control {
  height: 4em;
}

.bg-footer {
  background-color: #252525;
}

.logo-footer {
  margin-top: -20px;
  display: inline-block;
}

.footer {
  border-color: #494a43 !important;
  padding-top: 5%;
}

/* /footer */
.filter-controls li {
  cursor: pointer;
  transition: 0.1s ease;
}
.filter-controls li.active {
  font-weight: 600;
  color: #ffbc3b;
}
.filter-controls li:hover {
  color: #ffbc3b;
}
/*# sourceMappingURL=style.css.map */

/* Responsive Styles */

/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  .navbar-brand img {
    width: 70%;
  }

  .navigation,
  .navbar-nav,
  .navbar-collapse {
    max-width: 100vw;
    width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
  }

  .navigation,
  .navbar-nav {
    background: #f8f8f8 !important;
    box-shadow: 0 2px 12px rgba(52, 56, 117, 0.08);
    padding: 0 10px;
  }
  .navbar-nav {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    margin: 0;
  }
  .nav-item {
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
  }
  .nav-item:last-child {
    border-bottom: none;
  }
  .nav-link {
    color: var(--primary-color) !important;
    font-size: 1.1em;
    padding: 16px 18px;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
    font-weight: 500;
    letter-spacing: 0.5px;
  }
  .nav-link:active,
  .nav-link:focus,
  .nav-link:hover {
    background: #fcca43;
    color: #343875 !important;
  }

  .navbar-toggler-icon {
    display: inline-block;
    width: 2em;
    height: 2em;
    position: relative;
    background: none;
    border: none;
    box-shadow: none;
  }

  .navbar-toggler-icon,
  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
    box-sizing: border-box;
  }

  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after,
  .navbar-toggler-icon span {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color, #343875);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 2, 0.6, 1);
  }

  .navbar-toggler-icon::before {
    top: 6px;
  }

  .navbar-toggler-icon span {
    top: 14px;
  }

  .navbar-toggler-icon::after {
    top: 22px;
  }

  /* Animate to X when toggler is active */
  .navbar-toggler.collapsed .navbar-toggler-icon::before,
  .navbar-toggler.collapsed .navbar-toggler-icon::after,
  .navbar-toggler.collapsed .navbar-toggler-icon span {
    /* Hamburger state (default) */
    transform: none;
    opacity: 1;
  }

  .navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
    top: 14px;
    transform: rotate(45deg);
  }

  .navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
    top: 14px;
    transform: rotate(-45deg);
  }

  .navbar-toggler:not(.collapsed) .navbar-toggler-icon span {
    opacity: 0;
    transform: scaleX(0);
  }
  .navbar-collapse {
    background: #f8f8f8 !important;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 2px 12px rgba(52, 56, 117, 0.08);
    margin-top: 8px;
  }
  .nav-item::before {
    display: none;
  }

  .hero-section {
    background: linear-gradient(35deg, #c6c8df 0%, #f2edf4 40%, #ebd8ad 100%);
    padding: 250px 0 0;
  }

  .hero-slider img {
    z-index: 0;
    width: 90%;
  }

  .hero-slider h1 {
    font-size: 3em;
    line-height: 1em;
  }

  .pull-top {
    margin-top: -80px;
    z-index: 1;
  }
  .fuel-card {
    border-radius: 15px;
    border: solid 1px #fff;
    padding: 10px;
    background: rgba(251, 252, 255, 0.9);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
  }

  .fuel-card .divider {
    border-right: solid 1px transparent;
    height: 20%;
    align-self: center;
  }
  .fuel-card h4 {
    font-weight: bold;
    text-align: left;
    color: #000;
  }

  .fuel-card p {
    font-weight: 500;
    text-align: left;
    margin-bottom: 0;
    margin-top: 0;
  }
  .fuel-price {
    font-size: 2rem;
    color: #2d2c79;
    font-weight: 700;
    text-align: left;
  }

  .search-bar {
    border-radius: 40px;
    padding: 10px 20px;
    border-color: #ffbc3b;
  }

  .search .form-control {
    height: 50px;
    border-radius: 30px;
    background: #fff;
    padding-left: 25px;
    width: 60%;
  }

  .search input {
    width: 60%;
    height: 50px;
    border: none;
    box-shadow: none;
    font-size: 16px;
    color: #5c5c77;
    border-radius: 30px;
    margin-right: 2%;
    border-color: #ffbc3b;
  }
  .search .form-control:focus {
    border-color: #ffbc3b;
    box-shadow: none;
  }

  .search-button {
    border-radius: 40px;
    padding: 10px 30px;
    background: linear-gradient(to right, #ffd370, #f9ad03);
    color: white;
    font-weight: 500;
    border: none;
  }
  .stats-box {
    background: #fec63d;
    border-radius: 15px;
    padding: 10%;
    color: white;
    margin-top: 20px;
  }

  .stats-box h1,
  h2 {
    font-weight: bold;
    text-align: left;
    color: #fff;
  }

  .stats-box h6 {
    text-align: left;
    color: #fff;
  }

  .stats-box p {
    padding: 4% 0;
    text-align: left;
    color: #000;
    font-size: 0.9rem;
    border-bottom: solid 0.8px #f7f7f7;
  }

  .banner-container {
    background: #2b368f;
    border-radius: 50px 50px 0 0;
    height: 60vh;
  }

  .banner-container img {
    position: absolute;
    top: 0;
    margin-top: 80%;
    right: 0;
    margin-right: 5%;
    width: 80%;
    z-index: 2;
  }

  .banner-feature {
    padding: 3rem 1rem;
    position: relative;
    overflow: hidden;
    color: #fff;
  }

  .banner-feature .content h1 {
    font-size: 50px;
    margin-top: 7%;
    color: #fff;
  }

  .banner-pull {
    margin-top: -100px;
    z-index: 2;
    position: relative;
  }

  .yellow-section {
    color: #fff;
    padding: 0;
    background-color: #f6b60b;
  }

  .yellow-section img {
    width: 100%;
    margin-top: -400px;
    position: relative;
    z-index: 4;
  }

  .yellow-section .truck {
    width: 100%;
    padding: 0;
    z-index: 7;
    margin-top: -55%;
    display: flex;
  }
  .yellow-section .truck img {
    display: none;
  }
  .yellow-section .truck h1 {
    font-size: 40px;
    left: 0;
    color: var(--primary-color);
    position: relative;
    z-index: 7;
    margin-top: -5%;
    margin-left: 25%;
  }

  .white-section {
    color: #2b368f;
    padding: 0;
  }

  .white-section img {
    width: 100%;
    margin-top: -85px;
    position: relative;
    z-index: 7;
  }

  .white-section .content {
    position: relative;
    z-index: 8;
    padding: 0 20px;
    margin-top: -30%;
  }

  .white-section .content .main {
    font-size: 1.6em;
    line-height: 1em;
  }

  .white-section .content .sub {
    padding: 5%;
    margin-top: 3%;
    font-size: 1em;
    line-height: 1em;
  }

  .white-section .view-btn {
    background: #fff;
    border: none;
    border-radius: 25px;
    padding: 2% 5%;
    color: #262b82;
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 1em;
    align-self: end;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 6px rgba(250, 228, 101, 0.7);
    transition: background 0.3s;
  }

  /* Values */
  .values-section {
    color: #fff;
    padding: 0;
    height: auto;
  }

  .values-section img {
    width: 100%;
    margin-top: -50px;
    position: relative;
    z-index: 6;
  }

  .values-section .content {
    position: relative;
    z-index: 7;
    padding: 0 20px;
    margin-top: -35%;
  }

  .values-section .circle-img {
    width: 80%;
    height: 80%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    margin: auto;
  }

  .values-section .circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
  }

  .values-section .right-section {
    color: #2b368f;
    align-items: end;
    text-align: end;
  }

  .values-section .small-text {
    font-size: 1.2em;
    line-height: 1em;
    color: #333;
  }

  .values-section .core-box {
    font-weight: 700;
    font-size: 4rem;
    margin: 10px 0;
    display: inline-block;
    padding: 4px 0;
  }

  .values-section .core-reliability {
    background-color: #fdd155;
    margin-bottom: 0;
    padding: 0 5%;
  }

  .values-section .core-customer {
    background-color: #fdf0b3;
    margin: 0;
    padding: 0 4px;
  }

  .values-section .core-safety {
    background-color: #dadaf5;
    margin: 0;
    padding: 0 4px;
  }

  .values-section .signature {
    margin-top: 5%;
    width: 30%;
    height: auto;
  }

  .values-section .ceo-title {
    font-size: 1.5rem;
    color: #444;
  }

  @media (max-width: 768px) {
    .values-section .circle-img {
      width: 250px;
      height: 250px;
    }

    .values-section .core-box {
      font-size: 1.4rem;
    }

    .values-section .right-section {
      text-align: center;
      margin-top: 20px;
    }
  }

  /* Products */

  .products .title {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .products .title img {
    width: 40px;
    margin-top: -6%;
  }

  .products .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #262b82;
    margin-bottom: 2rem;
  }

  .products .product-card {
    background-color: #f0effc;
    border-radius: 15px;
    padding: 10%;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 20px;
  }

  .products i {
    color: #f6b60b;
  }

  .products .product-title {
    font-weight: 700;
    font-size: 2rem;
    color: #262b82;
  }

  .products .product-desc {
    font-size: 0.95rem;
    color: #333;
    margin-top: 5px;
    flex-grow: 1;
  }

  .products .view-btn {
    background: #fff;
    border: none;
    border-radius: 25px;
    padding: 3% 5%;
    color: #262b82;
    margin-bottom: -20px;
    font-weight: 600;
    font-size: 0.9rem;
    align-self: end;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: background 0.3s;
  }

  .products .view-btn:hover {
    background-color: #ede9ff;
  }

  .products .support-card {
    background-color: #fff1cf;
    border-radius: 15px;
    padding: 5%;
    height: auto;
    margin-bottom: 5%;
  }

  .products .support-title {
    font-weight: 700;
    font-size: 2rem;
    color: #262b82;
  }

  .products .support-item {
    text-align: center;
  }

  .products .support-item i {
    font-size: 4rem;
    color: #f6b60b;
    margin-bottom: 0.5rem;
  }

  .products .support-text {
    font-size: 1.7rem;
    line-height: 1em;
    color: var(--primary-color);
  }

  .logo-footer {
    margin-top: 0px;
    display: inline-block;
  }
}
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  /* Add your styles here */
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .navbar-brand img {
    width: 70%;
  }

  .navigation,
  .navbar-nav,
  .navbar-collapse {
    max-width: 100vw;
    width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
  }

  .navigation,
  .navbar-nav {
    background: #f8f8f8 !important;
    box-shadow: 0 2px 12px rgba(52, 56, 117, 0.08);
    padding: 0 10px;
  }
  .navbar-nav {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    margin: 0;
  }
  .nav-item {
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
  }
  .nav-item:last-child {
    border-bottom: none;
  }
  .nav-link {
    color: var(--primary-color) !important;
    font-size: 1.1em;
    padding: 16px 18px;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
    font-weight: 500;
    letter-spacing: 0.5px;
  }
  .nav-link:active,
  .nav-link:focus,
  .nav-link:hover {
    background: #fcca43;
    color: #343875 !important;
  }

  .navbar-toggler-icon {
    display: inline-block;
    width: 2em;
    height: 2em;
    position: relative;
    background: none;
    border: none;
    box-shadow: none;
  }

  .navbar-toggler-icon,
  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
    box-sizing: border-box;
  }

  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after,
  .navbar-toggler-icon span {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color, #343875);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 2, 0.6, 1);
  }

  .navbar-toggler-icon::before {
    top: 6px;
  }

  .navbar-toggler-icon span {
    top: 14px;
  }

  .navbar-toggler-icon::after {
    top: 22px;
  }

  /* Animate to X when toggler is active */
  .navbar-toggler.collapsed .navbar-toggler-icon::before,
  .navbar-toggler.collapsed .navbar-toggler-icon::after,
  .navbar-toggler.collapsed .navbar-toggler-icon span {
    /* Hamburger state (default) */
    transform: none;
    opacity: 1;
  }

  .navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
    top: 14px;
    transform: rotate(45deg);
  }

  .navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
    top: 14px;
    transform: rotate(-45deg);
  }

  .navbar-toggler:not(.collapsed) .navbar-toggler-icon span {
    opacity: 0;
    transform: scaleX(0);
  }
  .navbar-collapse {
    background: #f8f8f8 !important;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 2px 12px rgba(52, 56, 117, 0.08);
    margin-top: 8px;
  }
  .nav-item::before {
    display: none;
  }

  .hero-section {
    background: linear-gradient(35deg, #c6c8df 0%, #f2edf4 40%, #ebd8ad 100%);
    padding: 250px 0;
  }

  .hero-slider img {
    z-index: 0;
    width: 100%;
  }

  .hero-slider h1 {
    font-size: 2.8em;
    line-height: 1em;
  }

  .hero-slider p {
    font-size: 0.8em;
  }

  .pull-top {
    margin-top: -280px;
    z-index: 1;
  }
  .fuel-card {
    border-radius: 15px;
    border: solid 1px #fff;
    padding: 4px;
    background: rgba(251, 252, 255, 0.9);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
  }

  .fuel-card .divider {
    border-right: solid 1px #1a1a37;
    height: 20%;
    align-self: center;
  }
  .fuel-card h4 {
    font-weight: bold;
    text-align: left;
    color: #000;
    font-size: 0.8em;
  }

  .fuel-card p {
    font-weight: 500;
    text-align: left;
    margin-bottom: 0;
    margin-top: 0;
    font-size: 0.6em;
  }
  .fuel-price {
    font-size: 1.2rem;
    color: #2d2c79;
    font-weight: 700;
    text-align: left;
  }

  .search-bar {
    border-radius: 40px;
    padding: 10px 20px;
    border-color: #ffbc3b;
  }

  .search .form-control {
    height: 50px;
    border-radius: 30px;
    background: #fff;
    padding-left: 25px;
    width: 60%;
  }

  .search input {
    width: 60%;
    height: 50px;
    border: none;
    box-shadow: none;
    font-size: 16px;
    color: #5c5c77;
    border-radius: 30px;
    margin-right: 2%;
    border-color: #ffbc3b;
  }
  .search .form-control:focus {
    border-color: #ffbc3b;
    box-shadow: none;
  }

  .search-button {
    border-radius: 40px;
    padding: 10px 30px;
    background: linear-gradient(to right, #ffd370, #f9ad03);
    color: white;
    font-weight: 500;
    border: none;
  }
  .stats-box {
    background: #fec63d;
    border-radius: 15px;
    padding: 10%;
    color: white;
    margin-top: 0px;
  }

  .stats-box h1,
  h2 {
    font-weight: bold;
    text-align: left;
    color: #fff;
  }

  .stats-box h1 {
    font-size: 2rem;
  }

  .stats-box h2 {
    font-size: 1.5rem;
  }

  .stats-box h6 {
    text-align: left;
    color: #fff;
  }

  .stats-box p {
    padding: 4% 0;
    text-align: left;
    color: #000;
    font-size: 0.8rem;
    border-bottom: solid 0.8px #f7f7f7;
  }

  /* Banner */
  .banner-container {
    background: #2b368f;
    border-radius: 50px 50px 0 0;
    height: 60vh;
  }

  .banner-container img {
    position: absolute;
    top: 0;
    margin-top: 30%;
    right: 0;
    margin-right: 0;
    width: 60%;
    z-index: 2;
  }

  .banner-feature {
    padding: 3rem 1rem;
    position: relative;
    overflow: hidden;
    color: #fff;
  }

  .banner-feature .content h1 {
    font-size: 50px;
    margin-top: 7%;
    color: #fff;
  }

  .banner-pull {
    margin-top: -135px;
    z-index: 2;
    position: relative;
  }

  .yellow-section {
    color: #fff;
    padding: 0;
  }

  .yellow-section img {
    width: 100%;
    margin-top: -400px;
    position: relative;
    z-index: 6;
  }

  .yellow-section .truck {
    width: 100%;
    padding: 0;
    z-index: 7;
    margin-top: -25%;
    display: flex;
  }
  .yellow-section .truck img {
    position: relative;
    top: 0;
    height: 50%;
    z-index: 7;
    margin-top: -12%;
  }
  .yellow-section .truck h1 {
    font-size: 50px;
    left: 0;
    color: var(--primary-color);
    position: relative;
    z-index: 7;
    margin-top: -6%;
    margin-left: 15%;
  }

  .white-section {
    color: #2b368f;
    padding: 0;
    height: 50vh;
  }

  .white-section img {
    display: none;
  }

  .white-section .content {
    position: relative;
    z-index: 8;
    padding: 0 20px;
    margin-top: 10%;
  }

  .white-section .content .main {
    font-size: 1.6em;
    line-height: 1em;
  }

  .white-section .content .sub {
    padding: 5%;
    margin-top: 3%;
    font-size: 1em;
    line-height: 1em;
  }

  .white-section .view-btn {
    background: #fff;
    border: none;
    border-radius: 25px;
    padding: 2% 5%;
    color: #262b82;
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 1em;
    align-self: end;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 6px rgba(250, 228, 101, 0.7);
    transition: background 0.3s;
  }

  .banner-feature .content {
    position: relative;
    z-index: 2;
  }

  .banner-feature h1,
  .banner-feature h2 {
    font-weight: 700;
  }

  .banner-feature img.tanker,
  .banner-feature img.station {
    max-width: 100%;
    height: auto;
  }

  .banner-feature .tanker {
    position: absolute;
    bottom: 0;
    left: 2%;
    width: 45%;
    z-index: 2;
  }

  .banner-feature .station {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 35%;
    z-index: 2;
  }

  /* Values */
  .values-section {
    color: #fff;
    padding: 0;
    height: auto;
  }

  .values-section img {
    width: 100%;
    margin-top: -50px;
    position: relative;
    z-index: 6;
  }

  .values-section .content {
    position: relative;
    z-index: 7;
    padding: 0 20px;
    margin-top: -45%;
  }

  .values-section .circle-img {
    width: 80%;
    height: 80%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    margin: auto;
  }

  .values-section .circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
  }

  .values-section .right-section {
    color: #2b368f;
    align-items: end;
    text-align: end;
  }

  .values-section .small-text {
    font-size: 1.2em;
    line-height: 1em;
    color: #333;
  }

  .values-section .core-box {
    font-weight: 700;
    font-size: 2.5rem;
    margin: 10px 0;
    display: inline-block;
    padding: 4px 0;
  }

  .values-section .core-reliability {
    background-color: #fdd155;
    margin-bottom: 0;
    padding: 0 5%;
  }

  .values-section .core-customer {
    background-color: #fdf0b3;
    margin: 0;
    padding: 0 4px;
  }

  .values-section .core-safety {
    background-color: #dadaf5;
    margin: 0;
    padding: 0 4px;
  }

  /* Products */

  .products .title {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .products .title img {
    width: 40px;
    margin-top: -6%;
  }

  .products .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #262b82;
    margin-bottom: 2rem;
  }

  .products .product-card {
    background-color: #f0effc;
    border-radius: 15px;
    padding: 10%;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 20px;
  }

  .products i {
    color: #f6b60b;
  }

  .products .product-title {
    font-weight: 700;
    font-size: 1.5rem;
    color: #262b82;
  }

  .products .product-desc {
    font-size: 0.95rem;
    color: #333;
    margin-top: 5px;
    flex-grow: 1;
  }

  .products .view-btn {
    background: #fff;
    border: none;
    border-radius: 25px;
    padding: 3% 5%;
    color: #262b82;
    margin-bottom: -5px;
    font-weight: 600;
    font-size: 0.9rem;
    align-self: end;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: background 0.3s;
  }

  .products .view-btn:hover {
    background-color: #ede9ff;
  }

  .products .support-card {
    background-color: #fff1cf;
    border-radius: 15px;
    padding: 5%;
    height: auto;
    margin-bottom: 5%;
  }

  .products .support-title {
    font-weight: 700;
    font-size: 1.8rem;
    color: #262b82;
  }

  .products .support-item {
    text-align: center;
  }

  .products .support-item i {
    font-size: 4rem;
    color: #f6b60b;
    margin-bottom: 0.5rem;
  }

  .products .support-text {
    font-size: 1.2rem;
    line-height: 1em;
    color: var(--primary-color);
  }

  .logo-footer {
    margin-top: 0px;
    display: inline-block;
  }

  .newsletter {
    position: relative;
    z-index: 1;
  }
  .newsletter-block {
    padding-left: 20px;
    background-color: #303030;
    border-radius: 25px;
  }

  .newsletter-block h3 {
    color: #fff;
    font-size: 1.5em;
    font-weight: 400;
    margin-bottom: 15px;
  }

  .input-wrapper {
    position: relative;
  }
  .input-wrapper button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 25px;
    background-color: #fff;
    color: #000;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .input-wrapper button :hover {
    background-color: none;
  }

  .input-wrapper button i {
    color: #f89300;
  }

  .form-control {
    height: 40px;
    background: #252525;
    border-radius: 0;
    border-radius: 30px;
    color: #fff;
  }
  .form-control:focus {
    border-color: #ffbc3b;
    box-shadow: none;
    background-color: #252525;
    color: #fff;
  }

  .newsletter-block .form-control {
    height: 4em;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  /* Add your styles here */

  .hero-section {
    background: linear-gradient(35deg, #c6c8df 0%, #f2edf4 40%, #ebd8ad 100%);
    padding: 250px 0;
  }

  .hero-slider img {
    z-index: 0;
    width: 100%;
  }

  .hero-slider h1 {
    font-size: 2.8em;
    line-height: 1em;
  }

  .hero-slider p {
    font-size: 0.8em;
  }

  .pull-top {
    margin-top: -280px;
    z-index: 1;
  }
  .fuel-card {
    border-radius: 15px;
    border: solid 1px #fff;
    padding: 4px;
    background: rgba(251, 252, 255, 0.9);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
  }

  .fuel-card .divider {
    border-right: solid 1px #1a1a37;
    height: 20%;
    align-self: center;
  }
  .fuel-card h4 {
    font-weight: bold;
    text-align: left;
    color: #000;
    font-size: 0.8em;
  }

  .fuel-card p {
    font-weight: 500;
    text-align: left;
    margin-bottom: 0;
    margin-top: 0;
    font-size: 0.6em;
  }
  .fuel-price {
    font-size: 1.2rem;
    color: #2d2c79;
    font-weight: 700;
    text-align: left;
  }

  .search-bar {
    border-radius: 40px;
    padding: 10px 20px;
    border-color: #ffbc3b;
  }

  .search .form-control {
    height: 50px;
    border-radius: 30px;
    background: #fff;
    padding-left: 25px;
    width: 60%;
  }

  .search input {
    width: 60%;
    height: 50px;
    border: none;
    box-shadow: none;
    font-size: 16px;
    color: #5c5c77;
    border-radius: 30px;
    margin-right: 2%;
    border-color: #ffbc3b;
  }
  .search .form-control:focus {
    border-color: #ffbc3b;
    box-shadow: none;
  }

  .search-button {
    border-radius: 40px;
    padding: 10px 30px;
    background: linear-gradient(to right, #ffd370, #f9ad03);
    color: white;
    font-weight: 500;
    border: none;
  }
  .stats-box {
    background: #fec63d;
    border-radius: 15px;
    padding: 10%;
    color: white;
    margin-top: 0px;
  }

  .stats-box h1,
  h2 {
    font-weight: bold;
    text-align: left;
    color: #fff;
  }

  .stats-box h1 {
    font-size: 2rem;
  }

  .stats-box h2 {
    font-size: 1.5rem;
  }

  .stats-box h6 {
    text-align: left;
    color: #fff;
  }

  .stats-box p {
    padding: 4% 0;
    text-align: left;
    color: #000;
    font-size: 0.8rem;
    border-bottom: solid 0.8px #f7f7f7;
  }

  .banner-container {
    background: #2b368f;
    border-radius: 50px 50px 0 0;
    height: 70vh;
  }

  .banner-container img {
    position: absolute;
    top: 0;
    margin-top: 8%;
    right: 0;
    margin-right: 10%;
    width: 40%;
    z-index: 2;
  }

  .banner-feature {
    padding: 3rem 1rem;
    position: relative;
    overflow: hidden;
    color: #fff;
  }

  .banner-feature .content h1 {
    font-size: 50px;
    margin-top: 7%;
    color: #fff;
  }

  .banner-pull {
    margin-top: -135px;
    z-index: 2;
    position: relative;
  }

  .yellow-section {
    color: #fff;
    padding: 0;
  }

  .yellow-section img {
    width: 100%;
    margin-top: -300px;
    position: relative;
    z-index: 6;
  }

  .yellow-section .truck {
    width: 100%;
    padding: 0;
    z-index: 7;
    margin-top: -6%;
    display: flex;
  }
  .yellow-section .truck img {
    position: relative;
    top: 0;
    height: 40%;
    z-index: 7;
  }
  .yellow-section .truck h1 {
    font-size: 50px;
    left: 0;
    color: var(--primary-color);
    position: relative;
    z-index: 7;
    margin-top: -20%;
    margin-left: 20%;
  }

  .white-section {
    color: #2b368f;
    padding: 0;
  }

  .white-section img {
    width: 100%;
    margin-top: -65px;
    position: relative;
    z-index: 7;
  }

  .white-section .content {
    position: relative;
    z-index: 8;
    padding: 0 20px;
    margin-top: -30%;
  }

  .white-section .content .main {
    font-size: 1.6em;
    line-height: 1em;
  }

  .white-section .content .sub {
    padding: 5%;
    margin-top: 3%;
    font-size: 1em;
    line-height: 1em;
  }

  .white-section .view-btn {
    background: #fff;
    border: none;
    border-radius: 25px;
    padding: 2% 5%;
    color: #262b82;
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 1em;
    align-self: end;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 6px rgba(250, 228, 101, 0.7);
    transition: background 0.3s;
  }

  .banner-feature .content {
    position: relative;
    z-index: 2;
  }

  .banner-feature h1,
  .banner-feature h2 {
    font-weight: 700;
  }

  .banner-feature img.tanker,
  .banner-feature img.station {
    max-width: 100%;
    height: auto;
  }

  .banner-feature .tanker {
    position: absolute;
    bottom: 0;
    left: 2%;
    width: 45%;
    z-index: 2;
  }

  .banner-feature .station {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 35%;
    z-index: 2;
  }

  /* Values */
  .values-section {
    color: #fff;
    padding: 0;
    height: auto;
  }

  .values-section img {
    width: 100%;
    margin-top: -50px;
    position: relative;
    z-index: 6;
  }

  .values-section .content {
    position: relative;
    z-index: 7;
    padding: 0 20px;
    margin-top: -45%;
  }

  .values-section .circle-img {
    width: 80%;
    height: 80%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    margin: auto;
  }

  .values-section .circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
  }

  .values-section .right-section {
    color: #2b368f;
    align-items: end;
    text-align: end;
  }

  .values-section .small-text {
    font-size: 1.2em;
    line-height: 1em;
    color: #333;
  }

  .values-section .core-box {
    font-weight: 700;
    font-size: 2.5rem;
    margin: 10px 0;
    display: inline-block;
    padding: 4px 0;
  }

  .values-section .core-reliability {
    background-color: #fdd155;
    margin-bottom: 0;
    padding: 0 5%;
  }

  .values-section .core-customer {
    background-color: #fdf0b3;
    margin: 0;
    padding: 0 4px;
  }

  .values-section .core-safety {
    background-color: #dadaf5;
    margin: 0;
    padding: 0 4px;
  }

  /* Products */

  .products .title {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .products .title img {
    width: 40px;
    margin-top: -6%;
  }

  .products .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #262b82;
    margin-bottom: 2rem;
  }

  .products .product-card {
    background-color: #f0effc;
    border-radius: 15px;
    padding: 10%;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 20px;
  }

  .products i {
    color: #f6b60b;
  }

  .products .product-title {
    font-weight: 700;
    font-size: 1.5rem;
    color: #262b82;
  }

  .products .product-desc {
    font-size: 0.95rem;
    color: #333;
    margin-top: 5px;
    flex-grow: 1;
  }

  .products .view-btn {
    background: #fff;
    border: none;
    border-radius: 25px;
    padding: 3% 5%;
    color: #262b82;
    margin-bottom: -5px;
    font-weight: 600;
    font-size: 0.9rem;
    align-self: end;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: background 0.3s;
  }

  .products .view-btn:hover {
    background-color: #ede9ff;
  }

  .products .support-card {
    background-color: #fff1cf;
    border-radius: 15px;
    padding: 5%;
    height: auto;
    margin-bottom: 5%;
  }

  .products .support-title {
    font-weight: 700;
    font-size: 1.8rem;
    color: #262b82;
  }

  .products .support-item {
    text-align: center;
  }

  .products .support-item i {
    font-size: 4rem;
    color: #f6b60b;
    margin-bottom: 0.5rem;
  }

  .products .support-text {
    font-size: 1.2rem;
    line-height: 1em;
    color: var(--primary-color);
  }

  .logo-footer {
    margin-top: 0px;
    display: inline-block;
  }

  .newsletter {
    position: relative;
    z-index: 1;
  }
  .newsletter-block {
    padding-left: 20px;
    background-color: #303030;
    border-radius: 25px;
  }

  .newsletter-block h3 {
    color: #fff;
    font-size: 1.5em;
    font-weight: 400;
    margin-bottom: 15px;
  }

  .input-wrapper {
    position: relative;
  }
  .input-wrapper button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 25px;
    background-color: #fff;
    color: #000;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .input-wrapper button :hover {
    background-color: none;
  }

  .input-wrapper button i {
    color: #f89300;
  }

  .form-control {
    height: 40px;
    background: #252525;
    border-radius: 0;
    border-radius: 30px;
    color: #fff;
  }
  .form-control:focus {
    border-color: #ffbc3b;
    box-shadow: none;
    background-color: #252525;
    color: #fff;
  }

  .newsletter-block .form-control {
    height: 4em;
  }
}

@media (min-width: 1200px) and (max-width: 1440px) {
  .hero-section {
    background: linear-gradient(35deg, #c6c8df 0%, #f2edf4 40%, #ebd8ad 100%);
    padding: 250px 0 0;
  }
  @media (max-width: 991px) {
    .hero-section {
      padding: 250px 0;
    }
  }

  .hero-slider img {
    z-index: 0;
    width: 80%;
  }

  .hero-slider h1 {
    font-size: 3.5em;
    line-height: 1em;
  }

  .hero-slider p {
    font-size: 0.8em;
  }

  .pull-top {
    margin-top: -180px;
    z-index: 1;
  }

  .pull-map {
    margin-top: -20%;
    padding-top: 15%;
  }

  .fuel-card {
    border-radius: 15px;
    border: solid 1px #fff;
    padding: 30px;
    background: rgba(251, 252, 255, 0.9);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
  }

  .fuel-card .divider {
    border-right: solid 1px #2b378e;
    height: 40%;
    align-self: center;
  }
  .fuel-card h4 {
    font-weight: bold;
    text-align: left;
    color: #000;
  }

  .fuel-card p {
    font-weight: 500;
    text-align: left;
    margin-bottom: 0;
    margin-top: 0;
  }
  .fuel-price {
    font-size: 2rem;
    color: #2d2c79;
    font-weight: 700;
    text-align: left;
  }
  .search-bar {
    border-radius: 40px;
    padding: 10px 20px;
  }

  .search .form-control {
    height: 60px;
    border-radius: 30px;
    background: #fff;
    padding-left: 25px;
    width: 60%;
  }

  .search input {
    width: 75%;
    height: 60px;
    border: none;
    box-shadow: none;
    font-size: 16px;
    color: #5c5c77;
    border-radius: 30px;
    margin-right: 2%;
  }
  .search .form-control:focus {
    border-color: #ffbc3b;
    box-shadow: none;
  }

  .search-button {
    border-radius: 40px;
    padding: 10px 30px;
    background: linear-gradient(to right, #ffd370, #f9ad03);
    color: white;
    font-weight: 500;
    border: none;
  }
  .stats-box {
    background: #fec63d;
    border-radius: 15px;
    padding: 10%;
    color: white;
  }

  .stats-box h1,
  h2 {
    font-weight: bold;
    text-align: left;
    color: #fff;
  }

  .stats-box h1 {
    font-size: 2.2rem;
  }

  .stats-box h2 {
    font-size: 1.8rem;
  }

  .stats-box h6 {
    text-align: left;
    color: #fff;
    font-size: 1rem;
  }

  .stats-box p {
    padding: 4% 0;
    text-align: left;
    color: #000;
    font-size: 0.8rem;
    border-bottom: solid 0.8px #f7f7f7;
  }

  .map-placeholder {
    height: auto;
    background-size: cover;
  }

  .banner-container {
    background: #2b368f;
    border-radius: 50px 50px 0 0;
    height: 70vh;
  }

  .banner-container img {
    position: absolute;
    top: 0;
    margin-top: 8%;
    right: 0;
    margin-right: 10%;
    width: 40%;
    z-index: 2;
  }

  .banner-feature {
    padding: 3rem 1rem;
    position: relative;
    overflow: hidden;
    color: #fff;
  }

  .banner-feature .content h1 {
    font-size: 50px;
    margin-top: 7%;
    color: #fff;
  }

  .banner-pull {
    margin-top: -135px;
    z-index: 2;
    position: relative;
  }

  .yellow-section {
    color: #fff;
    padding: 0;
  }

  .yellow-section img {
    width: 100%;
    margin-top: -400px;
    position: relative;
    z-index: 6;
  }

  .yellow-section .truck {
    width: 100%;
    padding: 0;
    z-index: 7;
    margin-top: -25%;
    display: flex;
  }
  .yellow-section .truck img {
    position: relative;
    margin-top: -15%;
    height: 50%;
    z-index: 7;
  }
  .yellow-section .truck h1 {
    font-size: 50px;
    left: 0;
    color: var(--primary-color);
    position: relative;
    z-index: 7;
    margin-top: -7%;
    margin-left: 20%;
  }

  .white-section {
    color: #2b368f;
    padding: 0;
  }

  .white-section img {
    width: 100%;
    margin-top: -65px;
    position: relative;
    z-index: 7;
  }

  .white-section .content {
    position: relative;
    z-index: 8;
    padding: 0 20px;
    margin-top: -30%;
  }

  .white-section .content .main {
    font-size: 1.6em;
    line-height: 1em;
  }

  .white-section .content .sub {
    padding: 5%;
    margin-top: 3%;
    font-size: 1em;
    line-height: 1em;
  }

  .white-section .view-btn {
    background: #fff;
    border: none;
    border-radius: 25px;
    padding: 2% 5%;
    color: #262b82;
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 1em;
    align-self: end;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 6px rgba(250, 228, 101, 0.7);
    transition: background 0.3s;
  }

  .banner-feature .content {
    position: relative;
    z-index: 2;
  }

  .banner-feature h1,
  .banner-feature h2 {
    font-weight: 700;
  }

  .banner-feature img.tanker,
  .banner-feature img.station {
    max-width: 100%;
    height: auto;
  }

  .banner-feature .tanker {
    position: absolute;
    bottom: 0;
    left: 2%;
    width: 45%;
    z-index: 2;
  }

  .banner-feature .station {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 35%;
    z-index: 2;
  }

  /* Values */
  .values-section {
    color: #fff;
    padding: 0;
    height: auto;
  }

  .values-section img {
    width: 100%;
    margin-top: -280px;
    position: relative;
    z-index: 6;
  }

  .values-section .content {
    position: relative;
    z-index: 7;
    padding: 0 20px;
    margin-top: -35%;
  }

  .values-section .circle-img {
    width: 80%;
    height: 80%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    margin: auto;
  }

  .values-section .circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
  }

  .values-section .right-section {
    color: #2b368f;
    align-items: end;
    text-align: end;
  }

  .values-section .small-text {
    font-size: 1.2em;
    line-height: 1em;
    color: #333;
  }

  .values-section .core-box {
    font-weight: 700;
    font-size: 4rem;
    margin: 10px 0;
    display: inline-block;
    padding: 4px 0;
  }

  .values-section .core-reliability {
    background-color: #fdd155;
    margin-bottom: 0;
    padding: 0 5%;
  }

  .values-section .core-customer {
    background-color: #fdf0b3;
    margin: 0;
    padding: 0 4px;
  }

  .values-section .core-safety {
    background-color: #dadaf5;
    margin: 0;
    padding: 0 4px;
  }

  .values-section .signature {
    margin-top: 5%;
    width: 30%;
    height: auto;
  }

  .values-section .ceo-title {
    font-size: 1.5rem;
    color: #444;
  }

  @media (max-width: 768px) {
    .values-section .circle-img {
      width: 250px;
      height: 250px;
    }

    .values-section .core-box {
      font-size: 1.4rem;
    }

    .values-section .right-section {
      text-align: center;
      margin-top: 20px;
    }
  }

  /* Products */

  .products .title {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .products .title img {
    width: 80px;
    margin-top: -2%;
  }

  .products .section-title {
    font-size: 4rem;
    font-weight: 700;
    color: #262b82;
    margin-bottom: 2rem;
  }

  .products .product-card {
    background-color: #f0effc;
    border-radius: 15px;
    padding: 10%;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 20px;
  }

  .products i {
    color: #f6b60b;
  }

  .products .product-title {
    font-weight: 700;
    font-size: 2rem;
    color: #262b82;
  }

  .products .product-desc {
    font-size: 0.95rem;
    color: #333;
    margin-top: 5px;
    flex-grow: 1;
  }

  .products .view-btn {
    background: #fff;
    border: none;
    border-radius: 25px;
    padding: 3% 5%;
    color: #262b82;
    margin-bottom: -20px;
    font-weight: 600;
    font-size: 0.9rem;
    align-self: end;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: background 0.3s;
  }

  .products .view-btn:hover {
    background-color: #ede9ff;
  }

  .products .support-card {
    background-color: #fff1cf;
    border-radius: 15px;
    padding: 5%;
    height: 500px;
    margin-bottom: 5%;
  }

  .products .support-title {
    font-weight: 700;
    font-size: 4rem;
    color: #262b82;
  }

  .products .support-item {
    text-align: center;
  }

  .products .support-item i {
    font-size: 4rem;
    color: #f6b60b;
    margin-bottom: 0.5rem;
  }

  .products .support-text {
    font-size: 1.7rem;
    line-height: 1em;
    color: var(--primary-color);
  }
  /* /Products */
}
