/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
  background: #fff;
  color: #666666;
  font-family: "Open Sans", sans-serif;
}

a {
  color: #56b8e6;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #18d36e;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  background: #56b8e6;
  color: #fff;
  display: inline-block;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 11;
}

.back-to-top i {
  padding-top: 12px;
  color: #fff;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}

/*--------------------------------------------------------------
# Modern Header with Glassmorphism Effect
--------------------------------------------------------------*/
#header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0 20px;
  height: 75px;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 997;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

#header.header-scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  padding: 15px 20px;
  height: 70px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(86, 184, 230, 0.1);
}

#header #logo {
  float: left;
  transition: all 0.3s ease;
}

@media (min-width: 1024px) {
  #header #logo {
    padding-left: 60px;
    display: flex;
    align-items: center;
    height: 75px;
  }

  #header.header-scrolled #logo {
    height: 70px;
  }
}

#header #logo h1 {
  font-size: 34px;
  margin: 0;
  padding-top: 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  background: linear-gradient(135deg, #333 0%, #56b8e6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

#header #logo h1:hover {
  transform: scale(1.02);
}

#header #logo h1 a,
#header #logo h1 a:hover {
  border-left: none;
  padding-left: 0;
  color: inherit;
  text-decoration: none;
}

#header #logo img {
  height: 75px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

#header.header-scrolled #logo img {
  height: 65px;
}

.brand-wrapper {
  gap: 10px;
}

.brand-accent {
  width: 3px;
  height: 40px;
  background: linear-gradient(135deg, #56b8e6, #18d36e);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/*--------------------------------------------------------------
# Modern Navigation Menu with Elegant Effects
--------------------------------------------------------------*/
.nav-menu,
.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}

.nav-menu > li {
  float: left;
}

@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
    align-items: center;
    height: 100%;
  }

  .nav-menu > li {
    float: none;
  }
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.nav-menu ul ul {
  top: 0;
  left: 100%;
}

.nav-menu ul li {
  min-width: 200px;
}

/* Nav Menu Arrows with Modern Icons */
.sf-arrows .sf-with-ul {
  padding-right: 30px;
}

.sf-arrows .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 15px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  transition: all 0.3s ease;
}

.sf-arrows ul .sf-with-ul:after {
  content: "\f105";
}

.sf-arrows .sf-with-ul:hover:after {
  transform: rotate(180deg);
  color: #56b8e6;
}

/* Nav Menu Container */
#nav-menu-container {
  float: right;
  margin: 0;
  padding-top: 25px;
  display: flex;
  align-items: center;
  height: 75px;
}

@media (min-width: 1024px) {
  #nav-menu-container {
    padding-right: 60px;
    padding-top: 0;
  }

  #header.header-scrolled #nav-menu-container {
    height: 70px;
  }
}

@media (max-width: 768px) {
  #nav-menu-container {
    display: none;
  }
}

/* Modern Nav Menu Styling */
.nav-menu a {
  padding: 12px 16px;
  text-decoration: none;
  display: inline-block;
  color: #333;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  outline: none;
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 10px;
}

.nav-menu a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(86, 184, 230, 0.1),
    rgba(24, 211, 110, 0.1)
  );
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.nav-menu a:hover::before,
.nav-menu > .menu-active > a::before {
  left: 0;
}

.nav-menu li:hover > a,
.nav-menu > .menu-active > a {
  color: #56b8e6;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(86, 184, 230, 0.2);
}

.nav-menu > li {
  margin-left: 8px;
}

/* Modern Dropdown Styling */
.nav-menu ul {
  margin: 8px 0 0 0;
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 220px;
}

.nav-menu ul li {
  transition: all 0.3s ease;
  margin: 2px 8px;
  border-radius: 8px;
}

.nav-menu ul li:hover {
  background: rgba(86, 184, 230, 0.05);
  transform: translateX(5px);
}

.nav-menu ul li a {
  padding: 12px 20px;
  color: #333;
  transition: all 0.3s ease;
  display: block;
  font-size: 13px;
  text-transform: none;
  font-weight: 500;
  border-radius: 6px;
  letter-spacing: 0.3px;
}

.nav-menu ul li:hover > a {
  color: #56b8e6;
  background: rgba(86, 184, 230, 0.08);
  transform: none;
  box-shadow: none;
}

.nav-menu ul ul {
  margin: 0;
}

/*--------------------------------------------------------------
# Modern Mobile Navigation
--------------------------------------------------------------*/
#mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 12px;
  z-index: 999;
  margin: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  font-size: 20px;
  display: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  outline: none;
  cursor: pointer;
  width: 45px;
  height: 45px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  align-items: center;
  justify-content: center;
}

#mobile-nav-toggle:hover {
  background: rgba(86, 184, 230, 0.15);
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(86, 184, 230, 0.25);
}

#mobile-nav-toggle i {
  color: #333;
  transition: all 0.3s ease;
  font-size: 18px;
}

#mobile-nav-toggle:hover i {
  color: #56b8e6;
}

/* Mobile Navigation Responsive Breakpoints */
@media (max-width: 768px) {
  #mobile-nav-toggle {
    display: flex;
    right: 15px;
    top: 10px;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  #mobile-nav-toggle {
    right: 12px;
    top: 9px;
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  #mobile-nav-toggle i {
    font-size: 16px;
  }
}

@media (max-width: 375px) {
  #mobile-nav-toggle {
    right: 10px;
    top: 8px;
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }

  #mobile-nav-toggle i {
    font-size: 15px;
  }
}

@media (max-width: 320px) {
  #mobile-nav-toggle {
    right: 8px;
    top: 7px;
    width: 38px;
    height: 38px;
  }

  #mobile-nav-toggle i {
    font-size: 14px;
  }
}

/* Elegant Light Mobile Nav Styling */
#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 80px;
  bottom: 0;
  z-index: 998;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  left: -320px;
  width: 320px;
  overflow-y: auto;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-right: 1px solid rgba(86, 184, 230, 0.15);
  box-shadow: 4px 0 30px rgba(0, 0, 0, 0.1);
}

#mobile-nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(
    135deg,
    rgba(86, 184, 230, 0.05),
    rgba(24, 211, 110, 0.05)
  );
  border-bottom: 1px solid rgba(86, 184, 230, 0.1);
}

#mobile-nav ul {
  padding: 30px 0;
  margin: 0;
  list-style: none;
}

#mobile-nav ul li {
  position: relative;
  margin: 3px 20px;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

#mobile-nav ul li::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(86, 184, 230, 0.08),
    rgba(24, 211, 110, 0.08)
  );
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 12px;
  z-index: -1;
}

#mobile-nav ul li:hover::before {
  left: 0;
}

#mobile-nav ul li:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(86, 184, 230, 0.15);
}

#mobile-nav ul li a {
  color: #333;
  font-size: 15px;
  text-transform: uppercase;
  overflow: hidden;
  padding: 18px 24px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.8px;
  transition: all 0.3s ease;
  border-radius: 12px;
}

#mobile-nav ul li a:hover {
  color: #56b8e6;
  transform: none;
}

#mobile-nav ul li.menu-active a,
#mobile-nav ul li a.active {
  color: #56b8e6;
  background: rgba(86, 184, 230, 0.1);
}

/* Submenu Styling */
#mobile-nav ul li li {
  padding-left: 0;
  margin: 2px 15px 2px 35px;
  border-radius: 8px;
}

#mobile-nav ul li li::before {
  background: linear-gradient(
    135deg,
    rgba(86, 184, 230, 0.05),
    rgba(24, 211, 110, 0.05)
  );
}

#mobile-nav ul li li a {
  font-size: 13px;
  text-transform: none;
  font-weight: 500;
  padding: 14px 20px;
  letter-spacing: 0.3px;
  color: #555;
  border-radius: 8px;
}

#mobile-nav ul li li a:hover {
  color: #56b8e6;
}

/* Dropdown Arrow Styling */
#mobile-nav ul .menu-has-children i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
  cursor: pointer;
  color: #666;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-size: 14px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(86, 184, 230, 0.05);
}

#mobile-nav ul .menu-has-children i:hover {
  color: #56b8e6;
  background: rgba(86, 184, 230, 0.15);
  transform: translateY(-50%) scale(1.1);
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color: #56b8e6;
  background: rgba(86, 184, 230, 0.2);
  transform: translateY(-50%) rotate(180deg);
}

#mobile-nav ul .menu-has-children li a {
  text-transform: none;
  padding-right: 20px;
}

#mobile-nav ul .menu-item-active {
  color: #56b8e6;
}

/* Mobile Nav Header Brand */
#mobile-nav::after {
  content: "Jaldoot Global";
  position: absolute;
  top: 25px;
  left: 24px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #333;
  letter-spacing: 1px;
}

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Mobile Nav Active States */
body.mobile-nav-active {
  overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
  left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
  background: rgba(86, 184, 230, 0.25);
  transform: scale(1.05);
  box-shadow: 0 10px 35px rgba(86, 184, 230, 0.3);
}

body.mobile-nav-active #mobile-nav-toggle i {
  color: #56b8e6;
  transform: rotate(90deg);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .logo-img {
    height: 50px;
  }

  .brand-accent {
    height: 32px;
  }

  #header #logo h1 {
    font-size: 20px;
    letter-spacing: 1px;
  }

  #header {
    padding: 0 70px 0 15px; /* Extra right padding for hamburger */
    height: 65px;
  }

  #header.header-scrolled {
    height: 60px;
    padding: 10px 70px 10px 15px;
  }
}

@media (max-width: 480px) {
  #header #logo h1 {
    font-size: 18px;
  }

  .logo-img {
    height: 45px;
  }

  #header {
    padding: 0 65px 0 12px;
    height: 60px;
  }

  #header.header-scrolled {
    height: 55px;
    padding: 8px 65px 8px 12px;
  }
}

@media (max-width: 375px) {
  #header #logo h1 {
    font-size: 16px;
    letter-spacing: 0.5px;
  }

  .logo-img {
    height: 42px;
  }

  #header {
    padding: 0 60px 0 10px;
    height: 58px;
  }

  #header.header-scrolled {
    height: 53px;
    padding: 7px 60px 7px 10px;
  }

  .brand-accent {
    height: 28px;
  }
}

@media (max-width: 320px) {
  #header #logo h1 {
    font-size: 15px;
    letter-spacing: 0.3px;
  }

  .logo-img {
    height: 40px;
  }

  #header {
    padding: 0 55px 0 8px;
    height: 56px;
  }

  #header.header-scrolled {
    height: 51px;
    padding: 6px 55px 6px 8px;
  }

  .brand-accent {
    height: 26px;
  }
}

/* Smooth Scroll Enhancement */
html {
  scroll-behavior: smooth;
}

/* Additional Modern Effects */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-menu ul li {
  animation: fadeInUp 0.3s ease forwards;
}

.nav-menu ul li:nth-child(1) {
  animation-delay: 0.1s;
}
.nav-menu ul li:nth-child(2) {
  animation-delay: 0.15s;
}
.nav-menu ul li:nth-child(3) {
  animation-delay: 0.2s;
}
.nav-menu ul li:nth-child(4) {
  animation-delay: 0.25s;
}
.nav-menu ul li:nth-child(5) {
  animation-delay: 0.3s;
}
.nav-menu ul li:nth-child(6) {
  animation-delay: 0.35s;
}

/* Hover Effects for Logo */
#header #logo:hover img {
  transform: scale(1.05) rotate(2deg);
  filter: drop-shadow(0 8px 16px rgba(86, 184, 230, 0.3));
}

/* Elegant Scrollbar for Mobile Nav */
#mobile-nav::-webkit-scrollbar {
  width: 6px;
}

#mobile-nav::-webkit-scrollbar-track {
  background: rgba(86, 184, 230, 0.05);
  border-radius: 3px;
}

#mobile-nav::-webkit-scrollbar-thumb {
  background: linear-gradient(
    135deg,
    rgba(86, 184, 230, 0.4),
    rgba(24, 211, 110, 0.4)
  );
  border-radius: 3px;
  transition: all 0.3s ease;
}

#mobile-nav::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    135deg,
    rgba(86, 184, 230, 0.6),
    rgba(24, 211, 110, 0.6)
  );
}

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
#intro {
  display: table;
  width: 100%;
  height: 100vh;
  background: #000;
}

#intro .carousel-item {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#intro .carousel-item::before {
  content: "";
  /* background-color: rgba(0, 0, 0, 0.65); */
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#intro .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#intro .carousel-content {
  text-align: center;
}

#intro h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 2px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #fff 0%, #f0f8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 1s ease-out;
}

@media (max-width: 768px) {
  #intro h2 {
    font-size: 28px;
    letter-spacing: 1px;
  }
}

#intro p {
  width: 80%;
  margin: 0 auto 30px auto;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  font-size: 18px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  opacity: 0.95;
  animation: fadeInUp 1.2s ease-out;
}

@media (min-width: 1024px) {
  #intro p {
    width: 60%;
  }
}

@media (max-width: 768px) {
  #intro p {
    font-size: 16px;
    line-height: 1.7;
  }
}

#intro .carousel-fade .carousel-inner .carousel-item {
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

#intro .carousel-fade .carousel-inner .carousel-item,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
  opacity: 0;
}

#intro .carousel-fade .carousel-inner .active,
#intro .carousel-fade .carousel-inner .carousel-item-next.carousel-item-left,
#intro .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-right {
  opacity: 1;
  transition: 0.5s;
}

#intro .carousel-fade .carousel-inner .carousel-item-next,
#intro .carousel-fade .carousel-inner .carousel-item-prev,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
  left: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

#intro .carousel-control-prev,
#intro .carousel-control-next {
  width: 10%;
}

@media (min-width: 1024px) {
  #intro .carousel-control-prev,
  #intro .carousel-control-next {
    width: 5%;
  }
}

#intro .carousel-control-next-icon,
#intro .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

#intro .carousel-indicators li {
  cursor: pointer;
}

#intro .btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1.2px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin: 10px;
  color: #001435;
  background: linear-gradient(135deg, #7dd3f0 0%, #40e0ff 50%, #7fffd4 100%);
  border: 2px solid rgba(86, 184, 230, 0.4);
  box-shadow: 0 8px 30px rgba(86, 184, 230, 0.5),
    0 0 25px rgba(64, 224, 208, 0.3), inset 0 2px 0 rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1.5s ease-out;
  text-decoration: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

#intro .btn-get-started::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 70%
  );
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 2;
}

#intro .btn-get-started::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1e90ff 0%, #00bfff 50%, #20b2aa 100%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

#intro .btn-get-started:hover::before {
  left: 100%;
}

#intro .btn-get-started:hover::after {
  opacity: 1;
}

#intro .btn-get-started:hover {
  color: #ffffff;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 50px rgba(86, 184, 230, 0.6),
    0 0 30px rgba(64, 224, 208, 0.4), 0 0 40px rgba(30, 144, 255, 0.3),
    inset 0 2px 0 rgba(255, 255, 255, 0.4);
  border-color: rgba(64, 224, 208, 0.6);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

#intro .btn-get-started:active {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 12px 25px rgba(86, 184, 230, 0.5),
    0 0 20px rgba(64, 224, 208, 0.3);
  transition: all 0.15s ease;
}

#intro .btn-get-started:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(86, 184, 230, 0.3),
    0 8px 30px rgba(86, 184, 230, 0.4);
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
/* Sections Header
--------------------------------*/
.section-header h3 {
  font-size: 32px;
  color: #111;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.section-header h3::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-header h3::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #56b8e6;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-header p {
  text-align: center;
  padding-bottom: 30px;
  color: #333;
}

/* Section with background
--------------------------------*/
.section-bg {
  background: #f7f7f7;
}

/* Featured Services Section
--------------------------------*/
#featured-services {
  background: #000;
}

#featured-services .box {
  padding: 30px 20px;
}

#featured-services .box-bg {
  background-image: linear-gradient(
    0deg,
    #000000 0%,
    #242323 50%,
    #000000 100%
  );
}

#featured-services i {
  color: #56b8e6;
  font-size: 48px;
  display: inline-block;
  line-height: 1;
}

#featured-services h4 {
  font-weight: 400;
  margin: 15px 0;
  font-size: 18px;
}

#featured-services h4 a {
  color: #fff;
}

#featured-services h4 a:hover {
  color: #56b8e6;
}

#featured-services p {
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  margin-bottom: 0;
}

/* About Us Section
--------------------------------*/
#about {
  background: url("../img/about-bg.jpg") center top no-repeat fixed;
  background-size: cover;
  padding: 60px 0 40px 0;
  position: relative;
}

#about::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.92);
  z-index: 9;
}

#about .container {
  position: relative;
  z-index: 10;
}

#about .about-col {
  background: #fff;
  border-radius: 0 0 4px 4px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

#about .about-col .img {
  position: relative;
}

#about .about-col .img img {
  border-radius: 4px 4px 0 0;
}

#about .about-col .icon {
  width: 64px;
  height: 64px;
  padding-top: 8px;
  text-align: center;
  position: absolute;
  background-color: #56b8e6;
  border-radius: 50%;
  text-align: center;
  border: 4px solid #fff;
  left: calc(50% - 32px);
  bottom: -30px;
  transition: 0.3s;
}

#about .about-col i {
  font-size: 36px;
  line-height: 1;
  color: #fff;
  transition: 0.3s;
}

#about .about-col:hover .icon {
  background-color: #fff;
}

#about .about-col:hover i {
  color: #56b8e6;
}

#about .about-col h2 {
  color: #000;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  padding: 0;
  margin: 40px 0 12px 0;
}

#about .about-col h2 a {
  color: #000;
}

#about .about-col h2 a:hover {
  color: #56b8e6;
}

#about .about-col p {
  font-size: 14px;
  line-height: 24px;
  color: #333;
  margin-bottom: 0;
  padding: 0 20px 20px 20px;
}

/* Services Section
--------------------------------*/
.services {
  padding: 80px 0;
  background: #f8f9fa;
}

.services .section-title {
  text-align: center;
  margin-bottom: 25px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 30px;
}

.services .section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
  margin-bottom: 10px;
  padding-bottom: 10px;
  color: #333;
}

.services .section-title h2::after {
  /* content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #56b8e6;
  bottom: 0;
  left: calc(50% - 25px); */
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  bottom: -10px;
}

.services .section-title p {
  font-size: 16px;
  color: #666;
}

.services .service-item {
  margin-bottom: 30px;
}

.services .service-box {
  text-align: center;
  padding: 40px 20px;
  background: #fff;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.services .service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.services .service-box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  background: #56b8e6;
  transition: all 0.3s ease-in-out;
  z-index: 1;
  opacity: 0.1;
}

.services .service-box:hover::before {
  height: 100%;
}

.services .icon {
  margin: 0 auto 20px auto;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 2;
}

.services .icon i {
  font-size: 36px;
  color: #56b8e6;
  transition: all 0.3s ease-in-out;
}

.services .service-box:hover .icon i {
  color: #333;
}

.services .service-box h4 {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 700;
  position: relative;
  z-index: 2;
  color: #333;
}

.services .service-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
  color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
  .services {
    padding: 60px 0;
  }

  .services .service-box {
    padding: 30px 15px;
  }

  .services .icon {
    width: 60px;
    height: 60px;
  }

  .services .icon i {
    font-size: 28px;
  }

  .services .service-box h4 {
    font-size: 18px;
  }

  .services .service-box p {
    font-size: 13px;
  }
}

/* Call To Action Section
--------------------------------*/
.call-to-action {
  position: relative;
  padding: 80px 0 60px 0;
  text-align: center;
  color: var(--contrast-color);
  background: url("../img/newCall.jpg") center center;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.call-to-action:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(27, 47, 69, 0.8);
  z-index: 1;
}

.call-to-action .container {
  position: relative;
  z-index: 2;
}

/* Add media query for mobile devices */
@media (max-width: 768px) {
  .call-to-action {
    background-attachment: scroll;
  }
}

.call-to-action h3 {
  color: var(--contrast-color);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.call-to-action p {
  color: var(--contrast-color);
  margin-bottom: 30px;
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.call-to-action .cta-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/* Dark background variant */
.dark-background {
  --background-color: #17283b;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #254160;
  --contrast-color: #ffffff;
}

:root {
  --background-color: #ffffff;
  --default-color: #2b180d;
  --heading-color: #1b2f45;
  --accent-color: #56b8e6;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  --heading-font: "Montserrat", sans-serif;
}

/* Contact Section
--------------------------------*/

#contact {
  padding: 60px 0;
}

#contact .contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

#contact .contact-header-row {
  text-align: center;
  margin-bottom: 30px;
}

#contact .contact-details-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

#contact .contact-location-col,
#contact .contact-telephone-col,
#contact .contact-email-col {
  flex: 1;
  text-align: center;
  padding: 20px;
}

#contact .contact-location-col i,
#contact .contact-telephone-col i,
#contact .contact-email-col i {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 10px;
  color: #56b8e6;
}

#contact .contact-location-info address,
#contact .contact-telephone-info p,
#contact .contact-email-info p {
  margin-bottom: 0;
  color: #000;
}

#contact .contact-location-info h3,
#contact .contact-telephone-info h3,
#contact .contact-email-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #999;
}

#contact .contact-details-row a {
  color: #000;
  text-decoration: none;
}

#contact .contact-details-row a:hover {
  color: #56b8e6;
}

@media (max-width: 768px) {
  #contact .contact-details-row {
    flex-direction: column;
  }

  #contact .contact-location-col,
  #contact .contact-telephone-col,
  #contact .contact-email-col {
    margin-bottom: 20px;
  }
}
/* Contact Section
--------------------------------*/
#contact .form-container {
  background: #f8f9fa;
  padding: 50px 20px;
  border-radius: 0;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 768px) {
  #contact .form-container {
    padding: 30px 15px;
  }
}

#contact .header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

#contact .international-select {
  width: 150px;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

#contact .search-wrapper {
  position: relative;
  margin-bottom: 10px;
}

#contact .search-wrapper .search-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
}

#contact .search-wrapper input {
  padding-left: 30px;
}

#contact .hs-link {
  color: #56b8e6;
  text-decoration: none;
  font-size: 14px;
}

#contact .required {
  color: red;
}

#contact .form-section {
  margin-bottom: 20px;
}

#contact .form-section h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #333;
}

#contact .transport-options {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

#contact .transport-option {
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}

#contact .transport-option.active {
  background: #f0f7ff;
  border-color: #56b8e6;
  color: #56b8e6;
}

#contact .row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

#contact .col-md-6 {
  flex: 1;
}

#contact .form-group {
  margin-bottom: 15px;
}

#contact .form-group label {
  display: block;
  margin-bottom: 5px;
  font-size: 12px;
  color: #333;
}

#contact .form-control {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

#contact .weight-input {
  position: relative;
}

#contact .weight-input .unit {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
}

#contact .checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#contact .checkbox-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

#contact textarea.form-control {
  min-height: 100px;
  resize: vertical;
}

#contact .alert {
  background: #fff5e6;
  border: 1px solid #ffecd1;
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 15px;
  font-size: 14px;
}

#contact .alert-link {
  color: #56b8e6;
  text-decoration: none;
}

#contact .phone-input {
  display: flex;
  gap: 10px;
}

#contact .phone-input .country-code {
  width: 100px;
}

#contact .terms {
  margin: 15px 0;
  font-size: 12px;
  color: #666;
}

#contact .terms a {
  color: #56b8e6;
  text-decoration: none;
}

#contact button[type="submit"] {
  background: #56b8e6;
  border: 0;
  padding: 10px 20px;
  color: #fff;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

#contact button[type="submit"]:hover {
  background: #13a456;
}

@media (max-width: 768px) {
  #contact .row {
    flex-direction: column;
  }

  #contact .col-md-6 {
    width: 100%;
  }

  #contact .transport-options {
    flex-direction: column;
  }

  #contact .phone-input {
    flex-direction: column;
  }

  #contact .phone-input .country-code {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #001435;
  padding: 0 0 30px 0;
  color: #eee;
  font-size: 14px;
}

#footer .footer-top {
  background: #001435;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 34px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 10px;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  border-left: 4px solid #56b8e6;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  color: #eee;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #eee;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #56b8e6;
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top h4::before,
#footer .footer-top h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
}

#footer .footer-top h4::before {
  right: 0;
  background: #555;
}

#footer .footer-top h4::after {
  background: #56b8e6;
  width: 60px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 8px;
  color: #ddd;
}

#footer .footer-top .footer-links ul li {
  border-bottom: 1px solid #333;
  padding: 10px 0;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #eee;
}

#footer .footer-top .footer-links ul a:hover {
  color: #56b8e6;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .footer-top .footer-newsletter {
  margin-bottom: 30px;
}

#footer .footer-top .footer-newsletter input[type="email"] {
  border: 0;
  padding: 6px 8px;
  width: 65%;
}

#footer .footer-top .footer-newsletter input[type="submit"] {
  background: #56b8e6;
  border: 0;
  width: 35%;
  padding: 6px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}

#footer .footer-top .footer-newsletter input[type="submit"]:hover {
  background: #13a456;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #ddd;
}

/* Industry Section */
#industries {
  padding: 80px 0;
  background: #f8f9fa;
}

#industries .section-header {
  text-align: center;
  margin-bottom: 40px;
}

#industries .section-header h3 {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  position: relative;
  padding-bottom: 20px;
}

#industries .section-header h3::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #56b8e6;
  bottom: 0;
  left: calc(50% - 20px);
}

.industry-box {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  height: 100%;
}

.industry-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.industry-box h4 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-top: 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #industries {
    padding: 60px 0;
  }

  .industry-box {
    margin-bottom: 20px;
  }

  #industries .section-header h3 {
    font-size: 28px;
  }
}

#logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 75px;
  width: auto;
  object-fit: contain;
}

.brand-wrapper {
  gap: 10px;
}

.brand-accent {
  width: 3px;
  height: 40px;
  background: #56b8e6;
}

/*--------------------------------------------------------------
# Container Tracking Section
--------------------------------------------------------------*/
.container-tracking {
  /* Add your background image */
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)),
    url("../img/TrackmyC.jpg") no-repeat center center;
  background-size: cover; /* Cover the entire section */
  padding: 60px 0; /* Padding for spacing */
  border-radius: 8px; /* Rounded corners */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  color: #fff; /* Text color for better contrast */
}

.container-tracking .section-title h2 {
  font-size: 36px; /* Larger font size for the title */
  color: #ffffff; /* White color for the title */
  margin-bottom: 20px; /* Space below the title */
}

.container-tracking .section-title p {
  font-size: 18px; /* Slightly larger font for the description */
  color: #ffffff; /* White color for the description */
  margin-bottom: 40px; /* Space below the description */
}

.container-tracking .btn-primary {
  background-color: #56b8e6; /* Primary button color */
  border: none; /* Remove border */
  padding: 12px 30px; /* Padding for button */
  font-size: 18px; /* Font size for button text */
  border-radius: 50px; /* Rounded button */
  transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s; /* Smooth transition */
}

.container-tracking .btn-primary:hover {
  background-color: #18d36e; /* Change color on hover */
  transform: translateY(-2px); /* Slight lift effect on hover */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); /* Add shadow on hover */
}

/* Elegant Form Styles */
#contact .elegant-form {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

#contact .elegant-form .form-section {
  margin-bottom: 30px;
}

#contact .elegant-form .form-section h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #333;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

#contact .elegant-form .form-section h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 60px;
  background: #56b8e6;
}

#contact .elegant-form .form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

#contact .elegant-form .form-group {
  margin-bottom: 20px;
  position: relative;
}

#contact .elegant-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #555;
  font-size: 14px;
  transition: all 0.3s ease;
}

#contact .elegant-form .form-control {
  height: 48px;
  padding: 10px 15px;
  font-size: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  background-color: #f9f9f9;
  transition: all 0.3s ease;
  width: 100%;
}

#contact .elegant-form .form-control:focus {
  border-color: #56b8e6;
  box-shadow: 0 0 0 3px rgba(86, 184, 230, 0.15);
  background-color: #fff;
}

#contact .elegant-form textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

#contact .elegant-form .submit-btn {
  background: #56b8e6;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 3px 10px rgba(86, 184, 230, 0.3);
}

#contact .elegant-form .submit-btn:hover {
  background: #3a9fd0;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(86, 184, 230, 0.4);
}

@media (max-width: 768px) {
  #contact .elegant-form {
    padding: 20px;
  }

  #contact .elegant-form .form-row {
    flex-direction: column;
    margin-left: 0;
    margin-right: 0;
  }

  #contact .elegant-form .form-group {
    padding: 0;
  }

  #contact .elegant-form .submit-btn {
    width: 100%;
  }
}

#contact .form-container h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
  color: #333;
  position: relative;
  padding-bottom: 15px;
}

#contact .form-container h2:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 3px;
  width: 80px;
  background: #56b8e6;
  transform: translateX(-50%);
}
