/*



*/

/* ---------------------------------------------
Table of contents
------------------------------------------------
01. font & reset css
02. reset
03. global styles
04. header
05. welcome
06. features
07. testimonials
08. contact
09. footer
10. preloader
.welcome-area {
  background: red;
}
--------------------------------------------- */
/* 
---------------------------------------------
font & reset css
--------------------------------------------- 
*/
@import url("https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900");
/* 
---------------------------------------------
reset
--------------------------------------------- 
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, div
pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q,
s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
figure, header, nav, section, article, aside, footer, figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clearfix {
  display: inline-block;
}

html[xmlns] .clearfix {
  display: block;
}

* html .clearfix {
  height: 1%;
}

ul, li {
  padding: 0;
  margin: 0;
  list-style: none;
}

header, nav, section, article, aside, footer, hgroup {
  display: block;
}

* {
  box-sizing: border-box;
}

html, body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  background-color: #fff;
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none !important;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0px;
  margin-bottom: 0px;
}

ul {
  margin-bottom: 0px;
}

p {
  font-size: 15px;
  line-height: 25px;
  color: #888;
}

h5 {
  text-align: center;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 90px;
}

/* 
---------------------------------------------
global styles
--------------------------------------------- 
*/
html,
body {
  background: #fff;
  font-family: 'Poppins', sans-serif;
}

::selection {
  background: #f1556a;
  color: #fff;
}

::-moz-selection {
  background: #f1556a;
  color: #fff;
}

@media (max-width: 991px) {
  html, body {
    overflow-x: hidden;
  }
  .mobile-top-fix {
    margin-top: 30px;
    margin-bottom: 0px;
  }
  .mobile-bottom-fix {
    margin-bottom: 30px;
  }
  .mobile-bottom-fix-big {
    margin-bottom: 60px;
  }
}

a.main-button-slider {
  font-size: 14px;
  border-radius: 25px;
  padding: 15px 25px;
  background-color: #0563b5;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

a.main-button-slider:hover {
  background-color: #959595;
}

a.main-button {
  font-size: 14px;
  border-radius: 25px;
  padding: 15px 25px;
  background-color: #0563b5;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

a.main-button:hover {
  background-color: #999293;
}

button.main-button {
  outline: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  border-radius: 25px;
  padding: 15px 25px;
  background-color: #0563b5;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

button.main-button:hover {
  background-color: #959595;
}


.center-heading {
  margin-bottom: 12px;
}

.center-heading h2 {
  margin-top: 0px;
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  color: #959595;
  margin-bottom: 25px;
}

.center-heading h2 em {
  font-style: normal;
  color: #102e54;
}

.center-heading p {
	margin-top: 12px;
  font-size: 15px;
  color: #888;
  text-align: center;
}


/* HEADER BASE */
.header-area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

/* NAV WRAPPER */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* LOGO */
.logo img {
  height: 42px;
  width: auto;
  display: block;
}

/* MENU */
.nav {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* LINKS */
.nav li a {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
  position: relative;
}

/* HOVER EFFECT */
.nav li a:hover {
  color: #357cff;
}

/* ACTIVE LINE */
.nav li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #2668f5;
  transition: 0.3s;
}

.nav li a:hover::after {
  width: 100%;
}

/* MOBILE MENU BUTTON */
.menu-trigger {
  display: none;
  cursor: pointer;
}

.menu-trigger span {
  width: 25px;
  height: 2px;
  background: #333;
  display: block;
  position: relative;
}

.menu-trigger span::before,
.menu-trigger span::after {
  content: "";
  width: 25px;
  height: 2px;
  background: #333;
  position: absolute;
  left: 0;
}

.menu-trigger span::before {
  top: -7px;
}

.menu-trigger span::after {
  top: 7px;
}

@media (max-width: 992px) {
  .nav {
    display: none;
  }

  .menu-trigger {
    display: block;
  }
}

/* =========================
   NAVBAR BASE FIX
========================= */



/* Remove old float-based layout */
.header-area .main-nav .logo {
  float: none !important;
  line-height: normal;
  display: flex;
  align-items: center;
  height: 100%;
}

/* Logo image */
.logo img {
  height: 45px;
  width: auto;
  display: block;
}

/* NAV MENU */


/* NAV ITEMS */
.header-area .main-nav .nav li {
  padding: 0 15px;
}

/* LINKS */
.header-area .main-nav .nav li a {
  display: flex;
  align-items: center;
  height: 80px; /* match navbar height */
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  color: #7a7a7a;
  letter-spacing: 1px;
}

/* HOVER */
.header-area .main-nav .nav li:hover a {
  color: #0563b5;
}

h2 {
  text-align: center;
}

/* MOBILE STYLES */
@media (max-width: 991px) {

  .header-area .main-nav .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 10px 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }

  .header-area .main-nav .nav.active {
    display: flex;
  }

  .header-area .main-nav .nav li {
    width: 100%;
    text-align: center;
    padding: 12px 0;
  }

  .header-area .main-nav .menu-trigger {
    display: block;
  }
}

/* 
---------------------------------------------
header
--------------------------------------------- 
*/

.main-nav, 
.main-nav * {
  box-sizing: border-box;
}

.background-header {
  background-color: #ffffff;
  height: 80px!important;
  position: fixed!important;
  top: 0px;
  left: 0px;
  right: 0px;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.15)!important;
}

.background-header .logo,
.background-header .main-nav .nav li a {
  color: #1e1e1e!important;
}

.background-header .main-nav .nav li:hover a {
  color: #000000!important;
}

.background-header .nav li a.active {
  color: #000000!important;
}

.header-area {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 100;
  height: 100px;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}

.header-area .main-nav {
  min-height: 50px;
  background: transparent;
}

.header-area .main-nav .logo {
  line-height: 100px;
  color: #191a20;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  float: left;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}



.header-area .main-nav .nav li {
  padding-left: 20px;
  padding-right: 20px;
}

.header-area .main-nav .nav li:last-child {
  padding-right: 0px;
}

.header-area .main-nav .nav li a {
  display: block;
  font-weight: 500;
  font-size: 13px;
  color: #7a7a7a;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  height: 50px;
  line-height: 40px;
  border: transparent;
  letter-spacing: 1px;
}

.header-area .main-nav .nav li:hover a {
  color: #102e54;
}

.header-area .main-nav .nav li.submenu {
  position: relative;
  padding-right: 35px;
}

.header-area .main-nav .nav li.submenu:after {
  font-family: FontAwesome;
  content: "\f107";
  font-size: 12px;
  color: #7a7a7a;
  position: absolute;
  right: 18px;
  top: 12px;
}

.header-area .main-nav .nav li.submenu ul {
  position: absolute;
  width: 200px;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
  overflow: hidden;
  top: 40px;
  opacity: 0;
  transform: translateY(-2em);
  visibility: hidden;
  z-index: -1;
  transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
}

.header-area .main-nav .nav li.submenu ul li {
  margin-left: 0px;
  padding-left: 0px;
  padding-right: 0px;
}



.header-area .main-nav .nav li.submenu ul li a:before {
  content: '';
  position: absolute;
  width: 0px;
  height: 40px;
  left: 0px;
  top: 0px;
  bottom: 0px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background: #000000;
}



.header-area .main-nav .nav li.submenu ul li a:hover:before {
  width: 3px;
}

.header-area .main-nav .nav li.submenu:hover ul {
  visibility: visible;
  opacity: 1;
  z-index: 1;
  transform: translateY(0%);
  transition-delay: 0s, 0s, 0.3s;
}

.header-area .main-nav .menu-trigger {
  cursor: pointer;
  display: block;
  position: absolute;
  top: 23px;
  width: 32px;
  height: 40px;
  text-indent: -9999em;
  z-index: 99;
  right: 40px;
  display: none;
}

.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #1e1e1e;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
}

.background-header .main-nav .menu-trigger span,
.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
  background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #1e1e1e;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
  width: 75%;
}

.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
  background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  content: "";
}

.header-area .main-nav .menu-trigger span {
  top: 16px;
}

.header-area .main-nav .menu-trigger span:before {
  -moz-transform-origin: 33% 100%;
  -ms-transform-origin: 33% 100%;
  -webkit-transform-origin: 33% 100%;
  transform-origin: 33% 100%;
  top: -10px;
  z-index: 10;
}

.header-area .main-nav .menu-trigger span:after {
  -moz-transform-origin: 33% 0;
  -ms-transform-origin: 33% 0;
  -webkit-transform-origin: 33% 0;
  transform-origin: 33% 0;
  top: 10px;
}

.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span:before,
.header-area .main-nav .menu-trigger.active span:after {
  background-color: transparent;
  width: 100%;
}

.header-area .main-nav .menu-trigger.active span:before {
  -moz-transform: translateY(6px) translateX(1px) rotate(45deg);
  -ms-transform: translateY(6px) translateX(1px) rotate(45deg);
  -webkit-transform: translateY(6px) translateX(1px) rotate(45deg);
  transform: translateY(6px) translateX(1px) rotate(45deg);
  background-color: #1e1e1e;
}

.background-header .main-nav .menu-trigger.active span:before {
  background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger.active span:after {
  -moz-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -ms-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -webkit-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  transform: translateY(-6px) translateX(1px) rotate(-45deg);
  background-color: #1e1e1e;
}

.background-header .main-nav .menu-trigger.active span:after {
  background-color: #1e1e1e;
}

.header-area.header-sticky {
  min-height: 80px;
}

.header-area.header-sticky .nav {
  margin-top: 20px !important;
}

.header-area.header-sticky .nav li a.active {
  color: #0563b5;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 30px;
}

/* CARD */
.stat-box {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 14px 16px;
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(0,0,0,0.06);

  transition: all 0.25s ease;
}

/* HOVER (premium lift) */
.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.10);
}

/* ICON CIRCLE */
.icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #418dff;
  color: #fff;

  font-size: 14px;
}

/* TEXT */
.stat-box h4 {
  margin: 0;
  font-size: 15px;
  color: #1e1e1e;
  font-weight: 700;
}

.stat-box p {
  margin: 2px 0 0;
  font-size: 12px;
  color: #666;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.left-text {
  max-width: 100%;
}

.stat-box {
  display: flex;
  align-items: center;

  gap: 12px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 55px;
}

/* EACH ITEM */
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;

  font-size: 13px;
  color: #333;
}

/* ICON */
.feature-item i {
  color: #418dff;
  font-size: 18px;
  width: 18px;
  text-align: center;
}

/* TEXT */
.feature-item span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.feature-item strong {
  color: #1e1e1e;
}

@media (max-width: 768px) {
  .hero-features {
    flex-direction: column;
    gap: 10px;
  }
}

.stat-box .icon-circle {
  flex-shrink: 0;
}

.stat-box div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-box h4,
.stat-box p {
  margin: 0;
  line-height: 1.2;
}

.icon-circle i {
  line-height: 1;
  display: block;
}

@media (max-width: 1200px) {
  .header-area .main-nav .nav li {
    padding-left: 12px;
    padding-right: 12px;
  }
  .header-area .main-nav:before {
    display: none;
  }
}

@media (max-width: 991px) {
  .logo {
    text-align: center;
    float: none!important;
  }
  .header-area {
    background-color: #f7f7f7;
    padding: 0px 15px;
    height: 80px;
    box-shadow: none;
    text-align: center;
  }
  .header-area .container {
    padding: 0px;
  }
  .header-area .logo {
    margin-left: 30px;
  }
  .header-area .menu-trigger {
    display: block !important;
  }
  .header-area .main-nav {
    overflow: hidden;
  }
  .header-area .main-nav .nav {
    float: none;
    width: 100%;
    margin-top: 0px !important;
    display: none;
    -webkit-transition: all 0s ease 0s;
    -moz-transition: all 0s ease 0s;
    -o-transition: all 0s ease 0s;
    transition: all 0s ease 0s;
    margin-left: 0px;
  }
  .header-area .main-nav .nav li:first-child {
    border-top: 1px solid #eee;
  }
  .header-area .main-nav .nav li {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .header-area .main-nav .nav li a {
    height: 50px !important;
    line-height: 50px !important;
    padding: 0px !important;
    border: none !important;
    background: #f7f7f7 !important;
    color: #191a20 !important;
  }
  .header-area .main-nav .nav li a:hover {
    background: #eee !important;
    color: #000000!important;
  }
  .header-area .main-nav .nav li.submenu ul {
    position: relative;
    visibility: inherit;
    opacity: 1;
    z-index: 1;
    transform: translateY(0%);
    transition-delay: 0s, 0s, 0.3s;
    top: 0px;
    width: 100%;
    box-shadow: none;
    height: 0px;
  }
  .header-area .main-nav .nav li.submenu ul li a {
    font-size: 12px;
    font-weight: 400;
  }
  .header-area .main-nav .nav li.submenu ul li a:hover:before {
    width: 0px;
  }
  .header-area .main-nav .nav li.submenu ul.active {
    height: auto !important;
  }
  .header-area .main-nav .nav li.submenu:after {
    color: #3B566E;
    right: 25px;
    font-size: 14px;
    top: 15px;
  }
  .header-area .main-nav .nav li.submenu:hover ul, .header-area .main-nav .nav li.submenu:focus ul {
    height: 0px;
  }
}

@media (min-width: 992px) {
  .header-area .main-nav .nav {
    display: flex !important;
  }
}


/* 
---------------------------------------------
welcome*/
--------------------------------------------- 


.welcome-area {
  position: relative;
}


.welcome-area {
  width: 100%;
  min-height: 80vh;

  background-image: url(../images/banner-bg22.png);
  background-repeat: no-repeat;

  background-size: contain;
  background-position: right top;
}

/* Mobile optimization */
@media (max-width: 768px) {
  .welcome-area {
    min-height: 100vh;
    background-size: cover;
    background-position: center top;
  }
}

.welcome-area .header-text .left-text {
  position: relative;
  align-self: center;
  margin-top: 35%;
  transform: perspective(1px) translateY(-30%) !important;
}

.welcome-area .header-text h1 {
  font-weight: 900;
  font-size: 52px;
  line-height: 80px;
  letter-spacing: 1px;
  margin-bottom: 30px;
  color: #959595;
}

.welcome-area .header-text h1 em {
  font-style: normal;
  color: #102e54;
}

.welcome-area .header-text p {
  font-weight: 300;
  font-size: 17px;
  color: #7a7a7a;
  line-height: 30px;
  letter-spacing: 0.25px;
  margin-bottom: 40px;
  position: relative;
}

@media (max-width: 1420px) {
  .welcome-area .header-text {
    width: 70%;
    margin-left: 5%;
  }
}

@media (max-width: 1320px) {
  .welcome-area .header-text .left-text {
    margin-top: 50%;
  }

  .welcome-area .header-text {
    width: 50%;
    margin-left: 5%;
  }
}

@media (max-width: 1140px) {
  .welcome-area {
    height: auto;
  }

  .welcome-area .header-text {
    width: 92%;
    padding-top: 793px;
  }

  .welcome-area .header-text .left-text {
    margin-top: 5%;
    transform: none !important;
  }
}

@media (max-width: 810px) {
  .welcome-area {
    background-size: contain;
  }

  .welcome-area .header-text {
    padding-top: 100%;
    margin-left: 0;
  }

  .container-fluid .col-md-12 {
    margin-right: 0px;
    padding-right: 0px;
  }
}
--------------------------------------------
about
---------------------------------------------
*/

.center-heading h5 {
  text-align: center;
}

#about .center-heading{ width:100%; text-align:center !important; margin:0 auto 20px auto !important; }

#about .center-heading h2{ text-align:center !important; margin-bottom:12px !important; }

#about{ padding-top:60px !important; }

@media (max-width: 992px) {
  .features-item {
    margin-bottom: 45px;
  }
}

.features-item {
  border-radius: 5px;
  padding: 60px 30px;
  text-align: center;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
}

.features-item h2 {
  z-index: 9;
  position: absolute;
  top: 15px;
  left: 45px;
  font-size: 100px;
  font-weight: 600;
  color: #000000;
}

.features-item img {
  z-index: 10;
  position: relative;
  max-width: 35%;
  margin-bottom: 40px;
}

.features-item h4 {
  margin-top: 0px;
  font-size: 22px;
  color: #1e1e1e;
  margin-bottom: 25px;
}

.features-item .main-button {
  margin-top: 35px;
  display: inline-block;
}

#promotion .left-image img {
  width: 100%;
  max-width: 520px;   /* increase/decrease size here */
  height: 520px;      /* makes it a perfect circle */
  object-fit: cover;  /* prevents distortion */
  border-radius: 50%; /* FULL ROUND */
  display: block;
  margin: 0 auto;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

#promotion .left-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

#promotion .left-image img{
  width: 100% !important;
  max-width: 520px !important;
  height: 520px !important;
  object-fit: cover !important;
  border-radius: 50% !important;
  display: block !important;
  margin: 0 auto !important;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

#promotion .left-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

#promotion .left-image img {
  width: 100%;
  max-width: 650px;  /* 👈 THIS is what makes it BIG */
  height: 650px;     /* keeps it perfectly round */
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}
/*
---------------------------------------------
promotion
---------------------------------------------
*/

.left-image-decor {
  background-image: url(../images/left-bg-decor.png);
  background-repeat: no-repeat;
  position: absolute;
  width: 100%;
  display: inline-block;
  height: 110%;
  margin-top: -200px;
}

#promotion .right-text ul {
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

#promotion .right-text ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

#promotion .right-text img {
  margin-right: 20px;
  width: 60px;
  height: 60px;
}

#promotion .right-text h4 {
  font-size: 20px;
  color: #1e1e1e;
  margin-bottom: 10px;
  margin-top: 0;
}

#promotion .row {
  display: flex;
  align-items: center;
}


/*
--------------------------------------------
testimonials
--------------------------------------------
*/
.right-image-decor {
  background-image: url(../images/right-bg-decor.png);
  background-repeat: no-repeat;
  background-position: right center;
  position: absolute;
  width: 100%;
  display: inline-block;
  height: 110%;
  margin-top: -200px;
}

#testimonials {
  padding-top: 80px;
  position: relative;
  z-index: 9;
}

#testimonials .item {
  position: relative;
}

#testimonials .item .testimonial-content {
  background: rgba(5, 99, 181);
  background: linear-gradient(145deg, rgba(5, 99, 181) 0%, rgba(149, 149, 149) 100%);
  margin-left: 60px;
  padding: 40px 30px;
  text-align: center;
  border-radius: 5px;
}

#testimonials .item .testimonial-content ul li {
  display: inline-block;
  margin: 0px 1px;
}

#testimonials .item .testimonial-content ul li i {
  color: #fff;
  font-size: 13px;
}

#testimonials .item .testimonial-content h4 {
  font-size: 22px;
  margin-top: 20px;
  color: #fff;
}

#testimonials .item .testimonial-content p {
  color: #fff;
  font-style: italic;
  font-weight: 200;
  margin: 20px 0px 15px 0px;
}

#testimonials .item .testimonial-content span {
  color: #fff;
  font-weight: 200;
  font-size: 13px;
}

#testimonials .author img {
  max-width: 120px;
  margin-bottom: -60px;
}

.owl-carousel .owl-nav button.owl-next span {
  z-index: 10;
  top: 45%;
  border-radius: 10px;
  font-size: 46px;
  color: #fff;
  right: -210px;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  display: inline-block;
  background: rgb(244,129,63);
  background: linear-gradient(145deg, rgba(5, 99, 181) 0%, rgba(149, 149, 149)  100%);
  position: absolute;
}

.owl-carousel .owl-nav button.owl-prev span {
  z-index: 9;
  top: 30%;
  border-radius: 10px;
  font-size: 46px;
  color: #fff;
  right: -150px;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  display: inline-block;
  background: rgb(244,129,63);
  background: linear-gradient(145deg, rgba(5, 99, 181) 0%, rgba(149, 149, 149)  100%);
  position: absolute;
}

@media screen and (max-width: 1060px) {
  .owl-carousel .owl-nav {
    display: none!important;
  }
}

/* 
---------------------------------------------
footer
--------------------------------------------- 
*/

@media (max-width: 992px) {
  footer {
    padding-top: 0px!important;
    margin-top: 0px!important;
  }
  .contact-form {
    margin-bottom: 45px;
  }
  footer .right-content {
    text-align: center;
  }
  footer .footer-content {
    padding: 60px 0px!important;
  }
}

footer {
  margin-top: 200px;
  padding-top: 120px;
  background-image: url(../images/footer-bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
}

footer .footer-content {
  padding: 120px 0px;
}

.contact-form {
  position: relative;
  z-index: 10;
  padding: 45px;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
  
}

footer .right-content {
  align-self: center;
}

.contact-form input,
.contact-form textarea {
  color: #777;
  font-size: 13px;
  border: 1px solid #eee;
  background-color: #f7f7f7;
  border-radius: 5px;
  width: 100%;
  height: 50px;
  outline: none;
  padding-left: 20px;
  padding-right: 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-bottom: 30px;
}

.contact-form textarea {
  height: 150px;
  resize: none;
  padding: 20px;
}

.contact-form {
  text-align: center;
}

.contact-form ::-webkit-input-placeholder { /* Edge */
  color: #7a7a7a;
}

.contact-form :-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #7a7a7a;
}

.contact-form ::placeholder {
  color: #7a7a7a;
}

.footer-content .right-content {
  color: #fff;
}

.footer-content .right-content h2 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 42px;
  text-transform: capitalize;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer-content .right-content h2 em {
  font-style: normal;
  color: #418dff;
}

.footer-content .right-content p {
  color: #FFF;
}

.footer-content .right-content a {
  color: #FFF;
}

.footer-content .right-content a:hover {
  color: rgb(51, 156, 255);
}

footer .social {
  overflow: hidden;
  margin-top: 30px;
}

footer .social li:first-child {
  margin-left: 0px;
}

footer .social li {
  margin: 0px 7.5px;
  display: inline-block;
}

footer .social li a {
  color: #fff;
  text-align: center;
  background-color: transparent;
  border: 1px solid #fff;
  width: 44px;
  height: 44px;
  line-height: 44px;
  border-radius: 50%;
  display: inline-block;
  font-size: 16px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

footer .social li a:hover {
  background-color: #8f8f8f;
  border-color: #fba70b;
  color: #fff;
}

footer .copyright {
  margin-top: 10px;
  font-weight: 400;
  font-size: 15px;
  color: #4a4a4a;
  letter-spacing: 0.88px;
  text-transform: capitalize;
}

footer .sub-footer {
  padding: 60px 0px;
  border-top: 1px solid rgba(250,250,250,0.3);
  text-align: center;
}

footer .sub-footer a {
	color: #FFF;
}

footer .sub-footer a:hover {
	color: #FC3;
}

footer .sub-footer p {
  color: #fff;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.5px;
}

@media (max-width: 991px) {
  footer .copyright {
    text-align: center;
  }
  footer .social {
    text-align: center;
  }
}

/* 
---------------------------------------------
preloader
--------------------------------------------- 
*/
#preloader {
  overflow: hidden;
  background-image: linear-gradient(145deg, #f4813f 0%, #f1556a 100%);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: fixed;
  z-index: 9999;
  color: #fff;
}

#preloader .jumper {
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  position: absolute;
  margin: auto;
  width: 50px;
  height: 50px;
}

#preloader .jumper > div {
  background-color: #fff;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  opacity: 0;
  width: 50px;
  height: 50px;
  -webkit-animation: jumper 1s 0s linear infinite;
  animation: jumper 1s 0s linear infinite;
}

#preloader .jumper > div:nth-child(2) {
  -webkit-animation-delay: 0.33333s;
  animation-delay: 0.33333s;
}

#preloader .jumper > div:nth-child(3) {
  -webkit-animation-delay: 0.66666s;
  animation-delay: 0.66666s;
}

@-webkit-keyframes jumper {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  5% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes jumper {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  5% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}


.about-split {
  padding: 50px 0;
}

.about-image img {
  border-radius: 12px;
  width: 100%;
  height: auto;
}

.about-text h1 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #1e1e1e;
}

.about-text p {
  margin-bottom: 25px;
  color: #555;
  line-height: 1.6;
}

/* CHECK LIST */
.about-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 15px;
  color: #333;
}

/* CHECK ICON */
.about-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #0563b5;
  font-weight: bold;
}

/* wrapper must be relative */
.about-image-wrapper {
  position: relative;
}

/* image styling */
.about-image-wrapper img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

/* badge box */
.experience-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #fff;
  padding: 15px 18px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  max-width: 180px;
  text-align: left;
}

/* number */
.experience-badge h3 {
  margin: 0;
  font-size: 28px;
  color: #0563b5;
}

/* text */
.experience-badge p {
  margin: 5px 0 0;
  font-size: 12px;
  color: #333;
  line-height: 1.3;
}

.line-black {
  color: #1e1e1e;
}

.line-blue {
  color: #0563b5; /* or your preferred blue */
}

.roadmap{ padding-top:60px !important; }

.roadmap-header{ width:100%; max-width:800px; margin:0 auto 20px auto !important; text-align:center !important; }

.roadmap-header h2{ text-align:center !important; margin-bottom:12px !important; }

.roadmap-header p{ text-align:center !important; margin:0 auto !important; }

.roadmap-header { 
	margin-top:40px; 
	margin-bottom:15px !important; 
}

/* MAIN FLOW */
.timeline {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* STEP */
.timeline-step {
  text-align: center;
  max-width: 160px;
  padding: 10px;
}

/* CIRCLE NUMBER */
.circle {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #0563b5;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin: 0 auto 10px;
  font-size: 14px;
}

/* TITLE */
.timeline-step h4 {
  font-size: 14px;
  margin-bottom: 8px;
  color: #1e1e1e;
}

/* TEXT */
.timeline-step p {
  font-size: 12px;
  color: #666;
  line-height: 1.4;
}

/* ARROW */
.arrow {
  font-size: 20px;
  color: #0563b5;
  margin: 0 10px;
}

/* HOVER EFFECT */
.timeline-step:hover .circle {
  transform: scale(1.1);
  transition: 0.3s;
}

@media (max-width: 992px) {
  .timeline {
    flex-direction: column;
  }

  .arrow {
    transform: rotate(90deg);
    margin: 10px 0;
  }

  .timeline-step {
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .experience-badge {
    bottom: 10px;
    right: 10px;
    padding: 10px 12px;
  }

  .experience-badge h3 {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .about-text h1 {
    font-size: 24px;
  }

  .about-split {
    text-align: center;
  }

  .about-list li {
    text-align: left;
  }
}

@media (max-width: 768px) {
  #promotion .right-text ul {
    grid-template-columns: 1fr;
  }
}

.supply-chain {
  padding: 50px 0;
}

/* LEFT TEXT */
.supply-text h1 {
  font-size: 32px;
  color: #1e1e1e;
  margin-bottom: 15px;
}

.supply-text p {
  color: #555;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* GRID */
.supply-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* BOX */
.supply-box {
  background: #f9f9f9;
  padding: 18px;
  border-radius: 12px;
  transition: 0.3s;
}

.supply-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ICON */
.supply-box .icon {
  font-size: 22px;
  display: block;
  margin-bottom: 8px;
}

/* TEXT */
.supply-box h4 {
  font-size: 14px;
  margin-bottom: 6px;
  color: #1e1e1e;
}

.supply-box p {
  font-size: 12px;
  color: #666;
  line-height: 1.4;
}

/* IMAGE WRAPPER */
.supply-image-wrapper {
  position: relative;
}

.supply-image-wrapper img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

/* BADGE */
.supply-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #fff;
  padding: 15px 18px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  text-align: left;
}

.supply-badge h3 {
  margin: 0;
  font-size: 20px;
  color: #0563b5;
}

.supply-badge p {
  margin: 5px 0 0;
  font-size: 12px;
  color: #333;
}

@media (max-width: 768px) {
  .supply-grid {
    grid-template-columns: 1fr;
  }

  .supply-text h1 {
    font-size: 24px;
    text-align: center;
  }

  .supply-text p {
    text-align: center;
  }

  .supply-badge {
    top: 10px;
    right: 10px;
  }
}

.supply-box i {
  font-size: 22px;
  color: #0563b5;
  margin-bottom: 10px;
  display: inline-block;
}

/* SECTION */
.emergency-support {
  padding: 50px 0;
}

/* TOP 3 BOXES */
.support-box {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 12px;

  /* KEY FIX */
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

  text-align: center;
  transition: 0.3s;
}

/* FIX ICON SPACING */
.support-box i {
  font-size: 22px;
  color: #0563b5;
  margin-bottom: 12px;
}

/* FIX TITLE */
.support-box h4 {
  margin-bottom: 10px;
  min-height: 40px; /* keeps alignment consistent */
}

/* FIX TEXT */
.support-box p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  flex-grow: 1;
}

/* BOTTOM LEFT */
.emergency-support h1 {
  font-size: 30px;
  margin-bottom: 15px;
}

.emergency-support p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* CONTACT INFO */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 20px;
}

.info-item {
  display: flex;
  gap: 12px;
}

.info-item i {
  color: #0563b5;
  font-size: 18px;
  margin-top: 3px;
}

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.contact-form textarea {
  min-height: 140px;
}

.contact-form button {
  background: #0563b5;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

.contact-form button:hover {
  background: #0563b5;
}

.emergency-support .row {
  align-items: stretch;
}

.top-support .col-lg-4 {
  display: flex;
}

.top-support .support-box {
  flex: 1;
}

.top-support {
  margin-bottom: 70px;
}

.bottom-support {
  align-items: center;
}

.emergency-support h1 {
  margin-bottom: 15px;
  line-height: 1.2;
}

.emergency-support p {
  margin-bottom: 25px;
  line-height: 1.6;
}

.support-box,
.contact-form {
  border-radius: 12px;
}

.contact-form .form-row {
  display: flex;
  gap: 12px;
}

.contact-form .form-row input {
  flex: 1;
}

/* keep full width fields aligned */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 12px;
  box-sizing: border-box;
}

.contact-form textarea {
  min-height: 140px;
  resize: none;
}

/* button */
.contact-form button {
  width: 100%;
  background: #0563b5;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

.contact-form button:hover {
  background: #0563b5;
}

@media (max-width: 768px) {
  .contact-form .form-row {
    flex-direction: column;
  }
}

.footer {
  background: #111;
  color: #fff;
  padding: 60px 0 20px;
}

/* TOP GRID */
.footer-top {
  margin-bottom: 40px;
}

/* LOGO */
.footer-logo {
  height: 45px;
  margin-bottom: 15px;
}

/* BRAND */
.footer-brand h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 14px;
  color: #bbb;
  line-height: 1.6;
}

.footer-tagline {
  margin-top: 10px;
  font-weight: bold;
  color: #0563b5;
}

/* HEADINGS */
.footer h4 {
  font-size: 14px;
  margin-bottom: 15px;
  color: #fff;
}

/* LINKS */
.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  font-size: 13px;
  color: #bbb;
  margin-bottom: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.footer ul li:hover {
  color: #0563b5;
}

/* CONTACT */
.footer-contact p {
  font-size: 13px;
  color: #bbb;
  margin-bottom: 8px;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid #222;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  margin: 5px 0;
  font-size: 12px;
  color: #888;
}

/* =========================
   FIX SECTION ALIGNMENT BUG
========================= */

#about .row,
.roadmap .row{
  align-items: flex-start !important;
}

#about .col-lg-12,
#about .col-lg-6,
.roadmap .col-lg-12,
.roadmap .col-lg-6{
  display:block !important;
}

.center-heading,
.roadmap-header{
  display:block !important;
  text-align:center !important;
  margin-top:40px !important;
}

.center-heading p,
.roadmap-header p{
  display:block;
  width:100%;
  text-align:center !important;
}

/* =========================
   FINAL GAP FIX (WORKFLOW)
========================= */

.roadmap{
  padding-top:30px !important;
  padding-bottom:40px !important;
}

.roadmap-header{
  margin-bottom:10px !important;
}

.roadmap .row{
  margin-top:0 !important;
}

.roadmap .timeline,
.roadmap .content,
.roadmap .item{
  margin-top:0 !important;
  padding-top:0 !important;
}

.roadmap *:first-child{
  margin-top:0 !important;
}

.roadmap-header + *{
  margin-top:0 !important;
}

.roadmap br{
  display:none !important;
}

.roadmap .spacer{
  display:none !important;
  height:0 !important;
}

.roadmap-header{
  margin-bottom: 25px !important; /* adjust this value */
}

.roadmap-header p{
  margin-top: 5px;
}
