/* =======

	Template Name: Play Bootstrap
	Author: UIdeck
	Author URI: https://uideck.com/
	Support: https://github.com/uideck/
	Version: 1.0

======== */
/*===========================
  COMMON css 
===========================*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&display=swap");
:root {
  --font: "Inter", sans-serif;
  --body-color: #637381;
  --heading-color: #212b36;
  --primary-color: #3056d3;
  --white: #ffffff;
}

body {
  font-family: var(--font);
  font-weight: normal;
  font-style: normal;
  color: var(--body-color);
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

a,
button,
input,
textarea {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a,
a:focus,
input:focus,
textarea:focus,
button:focus,
.navbar-toggler:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

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

i,
span,
a {
  display: inline-block;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--heading-color);
  margin: 0px;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

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

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--body-color);
  margin: 0px;
}

.bg_cover {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

/*===== All Button Style =====*/
.ud-main-btn {
  display: inline-block;
  text-align: right;
  white-space: nowrap;
  vertical-align: middle;
  font-weight: 500;
  font-size: 16px;
  border-radius: 5px;
  padding: 15px 25px;
  border: 1px solid transparent;
  color: var(--white);
  cursor: pointer;
  z-index: 5;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  background: var(--primary-color);
}

.ud-main-btn:hover {
  color: var(--white);
  background: var(--heading-color);
}

@media (max-width: 767px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.back-to-top {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: var(--primary-color);
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 99;
  color: var(--white);
}

.back-to-top:hover {
  color: var(--white);
  background: var(--heading-color);
}










































Pre-loader Style
--------------------------------------------- 
*/

.js-preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.99);
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  z-index: 9999;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

.js-preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@-webkit-keyframes dot {
  50% {
      -webkit-transform: translateX(96px);
      transform: translateX(96px);
  }
}

@keyframes dot {
  50% {
      -webkit-transform: translateX(96px);
      transform: translateX(96px);
  }
}

@-webkit-keyframes dots {
  50% {
      -webkit-transform: translateX(-31px);
      transform: translateX(-31px);
  }
}

@keyframes dots {
  50% {
      -webkit-transform: translateX(-31px);
      transform: translateX(-31px);
  }
}

.preloader-inner {
  position: relative;
  width: 142px;
  height: 40px;
  background: transparent;
}

.preloader-inner .dot {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 12px;
  left: 15px;
  background: hsl(0, 0%, 100%);
  border-radius: 50%;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-animation: dot 2.8s infinite;
  animation: dot 2.8s infinite;
}

.preloader-inner .dots {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  margin-top: 12px;
  margin-left: 31px;
  -webkit-animation: dots 2.8s infinite;
  animation: dots 2.8s infinite;
}

.preloader-inner .dots span {
  display: block;
  float: left;
  width: 16px;
  height: 16px;
  margin-left: 16px;
  background: #000080;
  border-radius: 50%;
}






.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-collapse {
  flex-grow: 1;
}

.navbar-toggler {
  margin-left: auto;
}






























/* ===== Header CSS ===== */
.ud-header {
  background-color: #ffbf00;
  backdrop-filter: blur(5px);

  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.sticky {
  position: fixed;
  z-index: 99;
  background-color: #ffbf00;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  -webkit-box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.sticky .navbar {
  padding: 0;
}

.navbar {
  padding: 0px 0;
  border-radius: 5px;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.navbar-brand {
  padding: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-brand {
    padding: 5px 0px;
  }
}

.navbar-brand img {
  max-width: 160px;
}

.navbar-toggler {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: var(--white);
  display: block;
  margin: 5px 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.navbar-toggler.active .toggler-icon:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}

.navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}

.navbar-toggler.active .toggler-icon:nth-of-type(3) {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -7px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    right: 0;
    max-width: 300px;
    width: 100%;
    background-color: var(--white);
    z-index: 9;
    -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 0px;
    display: none;
    border-radius: 5px;
  }
  .navbar-collapse.show {
    display: block;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav {
    padding: 20px 30px;
  }
}

.navbar-nav .nav-item {
  position: relative;
  padding: 0px 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .navbar-nav .nav-item {
    padding: 0px 12px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item {
    padding: 0px;
  }
}

.navbar-nav .nav-item > a {
  font-size: 16px;
  font-weight: 400;
  color: #000080;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding: 25px 8px;
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item > a {
    display: block;
    padding: 8px 0;
    color: var(--heading-color);
  }
}

.navbar-nav .nav-item > a:hover, .navbar-nav .nav-item > a.active {
  color: var(--white);

}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item > a:hover, .navbar-nav .nav-item > a.active {
    color: var(--primary-color);
  
  }
}

.navbar-nav .nav-item .ud-submenu {
  position: absolute;
  width: 250px;
  background: var(--white);
  top: 110%;
  padding: 20px 30px;
  -webkit-box-shadow: 0 15px 44px rgba(140, 140, 140, 0.18);
          box-shadow: 0 15px 44px rgba(140, 140, 140, 0.18);
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item .ud-submenu {
    position: static;
    -webkit-box-shadow: none;
            box-shadow: none;
    width: 100%;
    padding: 0px;
    opacity: 1;
    visibility: visible;
    display: none;
  }
}

.navbar-nav .nav-item .ud-submenu.show {
  display: block;
}

.navbar-nav .nav-item .ud-submenu .ud-submenu-link {
  padding: 7px 0;
  color: var(--heading-color);
  font-size: 14px;
}

.navbar-nav .nav-item .ud-submenu .ud-submenu-link:hover {
  color: var(--primary-color);
}

.navbar-nav .nav-item:hover > a {
  color:  hsl(0, 0%, 5%);
  opacity: 0.5;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item:hover > a {
    color: var(--primary-color);
    opacity: 1;
  }
}

.navbar-nav .nav-item:hover > .ud-submenu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.navbar-nav .nav-item.nav-item-has-children > a {
  position: relative;
}

.navbar-nav .nav-item.nav-item-has-children > a::after {
  content: "";
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid;
  border-right: 2px solid;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  right: -15px;
  top: 50%;
  margin-top: -2px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item.nav-item-has-children > a::after {
    right: 5px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-btn {
    position: absolute;
    top: 50%;
    right: 50px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

.navbar-btn .ud-main-btn {
  padding: 8px 16px;
  background: transparent;
}

.navbar-btn .ud-login-btn:hover {
  opacity: 0.5;
}

.navbar-btn .ud-white-btn {
  background: rgba(255, 255, 255, 0.2);
}

.navbar-btn .ud-white-btn:hover {
  background: white;
  color: var(--heading-color);
}

.sticky .navbar-toggler .toggler-icon {
  background-color: var(--heading-color);
}

.sticky .navbar-nav .nav-item:hover > a {
  color: var(--primary-color);
  opacity: 1;
}

.sticky .navbar-nav .nav-item a {
  color: var(--heading-color);
}

.sticky .navbar-nav .nav-item a.active, .sticky .navbar-nav .nav-item a:hover {
  color: var(--primary-color);
  opacity: 1;
}

.sticky .navbar-btn .ud-main-btn.ud-login-btn {
  color: var(--heading-color);
}

.sticky .navbar-btn .ud-main-btn.ud-login-btn:hover {
  color: var(--primary-color);
  opacity: 1;
}

.sticky .navbar-btn .ud-white-btn {
  background: var(--primary-color);
  color: var(--white);
}

.sticky .navbar-btn .ud-white-btn:hover {
  background: var(--heading-color);
}

/* ===== Hero CSS ===== */
.ud-hero {
  background: var(--primary-color);
  padding-top: 180px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ud-hero {
    padding-top: 160px;
  }
}

@media (max-width: 767px) {
  .ud-hero {
    padding-top: 130px;
  }
}

.ud-hero-content {
  max-width: 780px;
  margin: auto;
  margin-bottom: 30px;
}

.ud-hero-content .ud-hero-title {
  color: var(--white);
  font-weight: 700;
  font-size: 45px;
  line-height: 60px;
  text-align: center;
  margin-bottom: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ud-hero-content .ud-hero-title {
    font-size: 38px;
    line-height: 50px;
  }
}

@media (max-width: 767px) {
  .ud-hero-content .ud-hero-title {
    font-size: 26px;
    line-height: 38px;
  }
}

.ud-hero-content .ud-hero-desc {
  font-weight: normal;
  font-size: 20px;
  line-height: 35px;
  text-align: center;
  color: var(--white);
  opacity: 0.8;
  max-width: 600px;
  margin: auto;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .ud-hero-content .ud-hero-desc {
    font-size: 16px;
    line-height: 30px;
  }
}

.ud-hero-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.ud-hero-buttons .ud-main-btn {
  margin: 8px;
}

@media (max-width: 767px) {
  .ud-hero-buttons .ud-main-btn {
    margin: 5px;
  }
}

@media (max-width: 767px) {
  .ud-hero-buttons .ud-main-btn {
    padding: 12px 16px;
  }
}

.ud-hero-buttons .ud-white-btn {
  background: var(--white);
  color: var(--heading-color);
}

.ud-hero-buttons .ud-white-btn:hover {
  -webkit-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.2);
  background: #fefefe;
  color: var(--primary-color);
}

.ud-hero-buttons .ud-link-btn:hover {
  color: var(--white);
  background: transparent;
  opacity: 0.5;
}

.ud-hero-brands-wrapper {
  text-align: center;
  margin-bottom: 40px;
}

.ud-hero-brands-wrapper img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0.5;
  max-width: 250px;
}

.ud-hero-brands-wrapper img:hover {
  opacity: 1;
}

.ud-hero-image {
  max-width: 845px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.ud-hero-image img {
  max-width: 100%;
  text-align: center;
}

.ud-hero-image .shape {
  position: absolute;
  z-index: -1;
}

.ud-hero-image .shape.shape-1 {
  bottom: 0;
  left: -30px;
}

.ud-hero-image .shape.shape-2 {
  top: -20px;
  right: -20px;
}

/* ===== Features CSS ===== */
.ud-features {
  padding-top: 120px;
  padding-bottom: 90px;
}

@media (max-width: 767px) {
  .ud-features {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}

.ud-section-title {
  max-width: 620px;
  margin-bottom: 70px;
}

.ud-section-title span {
  font-weight: 600;
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.ud-section-title h2 {
  font-weight: 700;
  font-size: 42px;
  line-height: 55px;
  text-transform: capitalize;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.ud-section-title p {
  font-size: 20px;
  line-height: 30px;
}

@media (max-width: 767px) {
  .ud-section-title p {
    font-size: 16px;
    line-height: 26px;
  }
}

.ud-single-feature {
  margin-bottom: 40px;
}

.ud-single-feature:hover .ud-feature-icon::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.ud-single-feature .ud-feature-icon {
  width: 70px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 14px;
  background: var(--primary-color);
  font-size: 32px;
  color: var(--white);
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 40px;
}

.ud-single-feature .ud-feature-icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 14px;
  background: var(--primary-color);
  opacity: 0.2;
  z-index: -1;
  -webkit-transform: rotate(23deg);
  transform: rotate(23deg);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.ud-single-feature .ud-feature-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 12px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ud-single-feature .ud-feature-title {
    font-size: 18px;
    line-height: 26px;
  }
}

.ud-single-feature .ud-feature-desc {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 40px;
}

.ud-single-feature .ud-feature-link {
  font-weight: 500;
  color: var(--body-color);
}

.ud-single-feature .ud-feature-link:hover {
  color: var(--primary-color);
}

/* ===== About CSS ===== */
.ud-about {
  background: #f3f4fe;
  padding: 120px 0;
}

@media (max-width: 767px) {
  .ud-about {
    padding: 80px 0;
  }
}

.ud-about-wrapper {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ud-about-wrapper {
    display: block;
  }
}

.ud-about-content-wrapper {
  padding: 70px;
}

@media (max-width: 767px) {
  .ud-about-content-wrapper {
    padding: 50px 30px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ud-about-content-wrapper {
    padding: 50px;
  }
}

.ud-about-content {
  max-width: 500px;
}

.ud-about-content .tag {
  font-weight: 500;
  font-size: 14px;
  color: var(--white);
  background: var(--primary-color);
  padding: 5px 20px;
  display: inline-block;
  margin-bottom: 20px;
}

.ud-about-content h2 {
  font-weight: bold;
  font-size: 36px;
  line-height: 45px;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .ud-about-content h2 {
    font-size: 26px;
    line-height: 38px;
  }
}

.ud-about-content p {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 40px;
}

.ud-about-content .ud-main-btn:hover {
  background: #2748b4;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ud-about-image {
    text-align: center;
  }
}

/* ===== Pricing CSS ===== */
.ud-pricing {
  padding-top: 120px;
  padding-bottom: 90px;
}

@media (max-width: 767px) {
  .ud-pricing {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}

.ud-single-pricing {
  margin-bottom: 40px;
  background: var(--white);
  border: 2px solid #d4deff;
  border-radius: 8px;
  text-align: center;
  padding: 45px 30px;
  position: relative;
}

.ud-single-pricing.active {
  background: -webkit-gradient(linear, left top, left bottom, from(#3056d3), to(#179bee));
  background: linear-gradient(180deg, #3056d3 0%, #179bee 100%);
  border: none;
  padding: 55px 30px;
}

.ud-single-pricing.active .ud-pricing-header h3,
.ud-single-pricing.active .ud-pricing-header h4 {
  color: var(--white);
}

.ud-single-pricing.active .ud-pricing-body li {
  color: var(--white);
}

.ud-single-pricing.first-item::after, .ud-single-pricing.last-item::after {
  content: "";
  position: absolute;
  width: 55px;
  height: 55px;
  z-index: 1;
}

.ud-single-pricing.first-item::after {
  background: var(--primary-color);
  left: -2px;
  bottom: -2px;
  border-radius: 0px 55px 0px 8px;
}

.ud-single-pricing.last-item::after {
  background: #13c296;
  top: -2px;
  right: -2px;
  border-radius: 0px 8px 0px 55px;
}

.ud-single-pricing .ud-popular-tag {
  display: inline-block;
  padding: 10px 25px;
  background: var(--white);
  border-radius: 30px;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.ud-single-pricing .ud-pricing-header h3 {
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 8px;
}

.ud-single-pricing .ud-pricing-header h4 {
  font-weight: 600;
  font-size: 26px;
  color: var(--primary-color);
  margin-bottom: 40px;
}

.ud-single-pricing .ud-pricing-body {
  margin-bottom: 40px;
}

.ud-single-pricing .ud-pricing-body li {
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 18px;
}

.ud-single-pricing .ud-main-btn {
  border-radius: 30px;
  padding: 15px 40px;
}

.ud-single-pricing .ud-border-btn {
  border: 1px solid #d4deff;
  color: var(--primary-color);
  background: var(--white);
}

.ud-single-pricing .ud-border-btn:hover {
  color: var(--white);
  border-color: var(--primary-color);
  background: var(--primary-color);
}

.ud-single-pricing .ud-white-btn {
  background: var(--white);
  color: var(--heading-color);
}

.ud-single-pricing .ud-white-btn:hover {
  color: var(--white);
  background: var(--heading-color);
}

/* ===== FAQ CSS ===== */
.ud-faq {
  padding-top: 120px;
  padding-bottom: 90px;
  background: #f3f4fe;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .ud-faq {
    padding-top: 80px;
    padding-bottom: 50px;
  }
}

.ud-faq .shape {
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
}

.ud-single-faq {
  background: var(--white);
  border: 1px solid #f3f4fe;
  -webkit-box-shadow: 0px 20px 95px rgba(201, 203, 204, 0.3);
          box-shadow: 0px 20px 95px rgba(201, 203, 204, 0.3);
  border-radius: 10px;
  margin-bottom: 30px;
}

.ud-single-faq .ud-faq-btn {
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  background: transparent;
  font-weight: 600;
  font-size: 18px;
  color: var(--heading-color);
  opacity: 0.88;
  padding: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .ud-single-faq .ud-faq-btn {
    padding: 15px;
  }
}

.ud-single-faq .ud-faq-btn.collapsed span.icon i {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.ud-single-faq .ud-faq-btn span.icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(48, 86, 211, 0.06);
  border-radius: 10px;
  color: var(--primary-color);
  margin-right: 24px;
}

.ud-single-faq .ud-faq-btn span.icon i {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 14px;
  font-weight: 700;
}

.ud-single-faq .ud-faq-body {
  padding: 0px 30px 40px 95px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .ud-single-faq .ud-faq-body {
    padding: 0px 16px 20px 82px;
  }
}

/* ===== Testimonials CSS ===== */
.ud-testimonials {
  padding-top: 120px;
}

@media (max-width: 767px) {
  .ud-testimonials {
    padding-top: 80px;
  }
}

.ud-single-testimonial {
  padding: 30px;
  -webkit-box-shadow: 0px 60px 120px -20px #ebeffd;
          box-shadow: 0px 60px 120px -20px #ebeffd;
  background: var(--white);
  margin-bottom: 50px;
}

.ud-single-testimonial .ud-testimonial-ratings {
  margin-bottom: 10px;
}

.ud-single-testimonial .ud-testimonial-ratings i {
  color: #fbb040;
}

.ud-single-testimonial .ud-testimonial-content {
  margin-bottom: 25px;
}

.ud-single-testimonial .ud-testimonial-content p {
  font-size: 16px;
  line-height: 30px;
  color: #637381;
}

.ud-single-testimonial .ud-testimonial-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ud-single-testimonial .ud-testimonial-info .ud-testimonial-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
}

.ud-single-testimonial .ud-testimonial-info .ud-testimonial-meta h4 {
  font-weight: 600;
  font-size: 14px;
}

.ud-single-testimonial .ud-testimonial-info .ud-testimonial-meta p {
  font-size: 12px;
  color: #969696;
}

.ud-brands .ud-title {
  margin-bottom: 30px;
}

.ud-brands .ud-title h6 {
  font-weight: normal;
  font-size: 12px;
  color: var(--body-color);
  display: inline-block;
  position: relative;
}

.ud-brands .ud-title h6::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 1px;
  background: #afb2b5;
  right: -40px;
  top: 50%;
}

.ud-brands .ud-brands-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -40px;
}

.ud-brands .ud-brands-logo .ud-single-logo {
  margin-right: 40px;
  margin-bottom: 20px;
  max-width: 140px;
}

.ud-brands .ud-brands-logo .ud-single-logo:hover img {
  -webkit-filter: none;
          filter: none;
}

.ud-brands .ud-brands-logo .ud-single-logo img {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

/* ===== Team CSS ===== */
.ud-team {
  padding-top: 120px;
  padding-bottom: 80px;
}

@media (max-width: 767px) {
  .ud-team {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}

.ud-single-team {
  margin-bottom: 40px;
}

.ud-single-team .ud-team-image-wrapper {
  width: 170px;
  height: 170px;
  position: relative;
  margin: 0px auto 25px;
}

.ud-single-team .ud-team-image {
  border-radius: 50%;
}

.ud-single-team .ud-team-image img {
  width: 100%;
  border-radius: 50%;
}

.ud-single-team .shape {
  position: absolute;
  z-index: -1;
}

.ud-single-team .shape.shape-1 {
  top: 0;
  left: 0;
}

.ud-single-team .shape.shape-2 {
  bottom: 0;
  right: 0;
}

.ud-single-team .ud-team-info {
  text-align: center;
  margin-bottom: 20px;
}

.ud-single-team .ud-team-info h5 {
  font-weight: 500;
  font-size: 18px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.ud-single-team .ud-team-info h6 {
  font-weight: 500;
  font-size: 12px;
  color: var(--body-color);
}

.ud-single-team .ud-team-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.ud-single-team .ud-team-socials a {
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0px 10px;
  color: #cdced6;
}

.ud-single-team .ud-team-socials a:hover {
  color: var(--primary-color);
}

/* ===== Contact CSS ===== */
.ud-contact {
  padding: 120px 0px;
  position: relative;
}

@media (max-width: 767px) {
  .ud-contact {
    padding: 80px 0;
  }
}

.ud-contact::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  top: 0;
  left: 0;
  height: 50%;
  background: #f3f4fe;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ud-contact::after {
    height: 45%;
  }
}

.ud-contact-title {
  margin-bottom: 150px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ud-contact-title {
    margin-bottom: 50px;
  }
}

.ud-contact-title span {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 20px;
}

.ud-contact-title h2 {
  font-weight: 600;
  font-size: 35px;
  line-height: 41px;
}

.ud-contact-info-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ud-contact-info-wrapper {
    margin-bottom: 50px;
  }
}

.ud-contact-info-wrapper .ud-single-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
  width: 330px;
  margin-bottom: 30px;
}

.ud-contact-info-wrapper .ud-info-icon {
  font-size: 32px;
  color: var(--primary-color);
  margin-right: 24px;
}

.ud-contact-info-wrapper .ud-info-meta h5 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 15px;
}

.ud-contact-info-wrapper .ud-info-meta p {
  font-size: 15px;
  line-height: 24px;
}

.ud-contact-form-wrapper {
  -webkit-box-shadow: 0px 4px 28px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 28px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  background: var(--white);
  padding: 60px;
}

@media (max-width: 767px) {
  .ud-contact-form-wrapper {
    padding: 40px 30px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px) {
  .ud-contact-form-wrapper {
    padding: 50px 40px;
  }
}

.ud-contact-form-wrapper .ud-contact-form-title {
  font-style: normal;
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .ud-contact-form-wrapper .ud-contact-form-title {
    font-size: 24px;
  }
}

.ud-contact-form-wrapper .ud-form-group {
  margin-bottom: 25px;
}

.ud-contact-form-wrapper .ud-form-group label {
  display: block;
  font-weight: normal;
  font-size: 12px;
}

.ud-contact-form-wrapper .ud-form-group input,
.ud-contact-form-wrapper .ud-form-group textarea {
  display: block;
  width: 100%;
  padding: 15px 0;
  border: none;
  outline: none;
  border-bottom: 1px solid #f1f1f1;
  resize: none;
}

.ud-contact-form-wrapper .ud-form-group input:focus,
.ud-contact-form-wrapper .ud-form-group textarea:focus {
  border-color: var(--primary-color);
}

/* ===== Footer CSS ===== */
.ud-footer {
  background: var(--heading-color);
  padding-top: 100px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.ud-footer .shape {
  position: absolute;
  z-index: -1;
}

.ud-footer .shape.shape-1 {
  top: 0;
  left: 0;
}

.ud-footer .shape.shape-2 {
  top: 0;
  right: 0;
}

.ud-footer .shape.shape-3 {
  bottom: 0;
  right: 0;
}

.ud-widget {
  margin-bottom: 50px;
}

.ud-widget .ud-footer-logo {
  max-width: 160px;
  display: block;
  margin-bottom: 10px;
}

.ud-widget .ud-footer-logo img {
  width: 100%;
}

.ud-widget .ud-widget-desc {
  font-size: 15px;
  line-height: 24px;
  color: #f3f4fe;
  margin-bottom: 30px;
  max-width: 260px;
}

.ud-widget .ud-widget-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ud-widget .ud-widget-socials a {
  font-size: 16px;
  color: #dddddd;
  margin-right: 20px;
}

.ud-widget .ud-widget-socials a:hover {
  color: var(--primary-color);
}

.ud-widget .ud-widget-title {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 35px;
  color: var(--white);
}

.ud-widget .ud-widget-links a {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 30px;
  color: #f3f4fe;
}

.ud-widget .ud-widget-links a:hover {
  color: var(--primary-color);
  padding-left: 10px;
}

.ud-widget .ud-widget-brands {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.ud-widget .ud-widget-brands a {
  display: block;
  max-width: 120px;
  margin-bottom: 20px;
  margin-right: 20px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ud-widget .ud-widget-brands a {
    max-width: 100px;
  }
}

.ud-footer-bottom {
  padding: 35px 0;
  border-top: 1px solid rgba(136, 144, 164, 0.43);
}

.ud-footer-bottom .ud-footer-bottom-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  .ud-footer-bottom .ud-footer-bottom-left {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.ud-footer-bottom .ud-footer-bottom-left a {
  font-weight: normal;
  font-size: 15px;
  color: #f3f4fe;
  margin-right: 30px;
  display: inline-block;
}

@media (max-width: 767px) {
  .ud-footer-bottom .ud-footer-bottom-left a {
    margin: 0px 8px 8px;
  }
}

.ud-footer-bottom .ud-footer-bottom-left a:hover {
  color: var(--primary-color);
}

.ud-footer-bottom .ud-footer-bottom-right {
  text-align: right;
  font-weight: normal;
  font-size: 15px;
  color: #f3f4fe;
}

.ud-footer-bottom .ud-footer-bottom-right a {
  color: var(--primary-color);
}

.ud-footer-bottom .ud-footer-bottom-right a:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .ud-footer-bottom .ud-footer-bottom-right {
    text-align: center;
    margin-top: 10px;
  }
}

/* ====== Banner CSS ======= */
.ud-page-banner {
  padding-top: 130px;
  padding-bottom: 80px;
  background: var(--primary-color);
  background-image: url("../images/banner/banner-bg.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ud-banner-content {
  text-align: center;
  max-width: 600px;
  margin: auto;
}

.ud-banner-content h1 {
  color: var(--white);
  font-size: 38px;
  font-weight: 600;
}

/* ====== Login CSS ====== */
.ud-login {
  padding-top: 80px;
  padding-bottom: 80px;
}

.ud-login-wrapper {
  max-width: 500px;
  margin: auto;
  background: var(--white);
  text-align: center;
  padding: 60px;
  -webkit-box-shadow: 0px 10px 35px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 10px 35px rgba(0, 0, 0, 0.05);
}

.ud-login-wrapper .ud-login-logo {
  margin-bottom: 30px;
}

.ud-login-form .ud-form-group {
  margin-bottom: 25px;
}

.ud-login-form .ud-form-group input {
  width: 100%;
  border: 2px solid #dddddd;
  border-radius: 4px;
  padding: 12px 24px;
  background: #fcfdfe;
  color: var(--body-color);
}

.ud-login-form .ud-form-group input:focus {
  border-color: var(--primary-color);
}

.ud-socials-connect {
  padding-top: 10px;
  padding-bottom: 30px;
}

.ud-socials-connect p {
  font-size: 16px;
  color: var(--body-color);
  margin-bottom: 10px;
}

.ud-socials-connect ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: -10px;
  margin-right: -10px;
}

.ud-socials-connect ul li {
  width: 100%;
}

.ud-socials-connect ul li a {
  height: 45px;
  background: var(--primary-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 10px;
  border-radius: 6px;
  color: var(--white);
  font-size: 20px;
}

.ud-socials-connect ul li a.facebook {
  background: #4064ac;
}

.ud-socials-connect ul li a.facebook:hover {
  background: #315294;
}

.ud-socials-connect ul li a.twitter {
  background: #1c9cea;
}

.ud-socials-connect ul li a.twitter:hover {
  background: #0f8bd8;
}

.ud-socials-connect ul li a.google {
  background: #d64937;
}

.ud-socials-connect ul li a.google:hover {
  background: #c53b29;
}

.forget-pass {
  font-size: 16px;
  color: var(--body-color);
  margin-bottom: 8px;
}

.signup-option {
  color: var(--body-color);
  font-size: 16px;
}

.signup-option a {
  color: var(--primary-color);
}

/* ====== Blog CSS ====== */
.ud-blog-grids {
  padding-top: 120px;
  padding-bottom: 80px;
}

.ud-blog-grids.ud-related-articles {
  padding-top: 100px;
}

@media (max-width: 767px) {
  .ud-blog-grids {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}

.ud-single-blog {
  margin-bottom: 40px;
}

.ud-single-blog:hover .ud-blog-image img {
  -webkit-transform: scale(1.1) rotate(3deg);
  transform: scale(1.1) rotate(3deg);
}

.ud-single-blog .ud-blog-image {
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 30px;
}

.ud-single-blog .ud-blog-image a {
  display: block;
}

.ud-single-blog .ud-blog-image img {
  width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.ud-single-blog .ud-blog-date {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 5px;
  margin-bottom: 20px;
}

.ud-single-blog .ud-blog-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 15px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ud-single-blog .ud-blog-title {
    font-size: 20px;
    line-height: 28px;
  }
}

.ud-single-blog .ud-blog-title a {
  color: inherit;
}

.ud-single-blog .ud-blog-title a:hover {
  color: var(--primary-color);
}

.ud-single-blog .ud-blog-desc {
  font-size: 16px;
  line-height: 28px;
}

.ud-related-articles-title {
  font-weight: 800;
  font-size: 28px;
  padding-bottom: 25px;
  position: relative;
  margin-bottom: 50px;
}

.ud-related-articles-title::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 2px;
  background: var(--primary-color);
  left: 0;
  bottom: 0;
}

/* ====== Blog Details CSS ====== */
.ud-blog-details {
  padding-top: 120px;
}

@media (max-width: 767px) {
  .ud-blog-details {
    padding-top: 80px;
  }
}

.ud-blog-details-image {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  height: 500px;
}

@media (max-width: 767px) {
  .ud-blog-details-image {
    height: 300px;
  }
}

.ud-blog-details-image > img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.ud-blog-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(46.88%, rgba(48, 86, 211, 0)), color-stop(93.23%, rgba(13, 21, 49, 0.72)));
  background: linear-gradient(180deg, rgba(48, 86, 211, 0) 46.88%, rgba(13, 21, 49, 0.72) 93.23%);
  border-radius: 5px;
  padding: 30px;
}

.ud-blog-overlay-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  .ud-blog-overlay-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.ud-blog-overlay-content .ud-blog-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 40px;
}

@media (max-width: 767px) {
  .ud-blog-overlay-content .ud-blog-author {
    margin-right: 0px;
    margin-bottom: 20px;
  }
}

.ud-blog-overlay-content .ud-blog-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.ud-blog-overlay-content .ud-blog-author span {
  font-weight: 500;
  font-size: 14px;
  line-height: 28px;
  color: #ffffff;
}

.ud-blog-overlay-content .ud-blog-author a {
  color: inherit;
}

.ud-blog-overlay-content .ud-blog-author a:hover {
  color: var(--primary-color);
}

.ud-blog-overlay-content .ud-blog-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ud-blog-overlay-content .ud-blog-meta p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 28px;
  color: #ffffff;
  margin-right: 30px;
}

.ud-blog-overlay-content .ud-blog-meta p:last-child {
  margin-right: 0px;
}

.ud-blog-overlay-content .ud-blog-meta p i {
  font-size: 16px;
  margin-right: 10px;
}

.ud-blog-details-content {
  padding-top: 60px;
}

@media only screen and (min-width: 1400px) and (max-width: 1920px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ud-blog-details-content {
    padding-right: 50px;
  }
}

.ud-blog-details-title {
  font-weight: 700;
  font-size: 35px;
  line-height: 50px;
  margin-bottom: 35px;
}

@media (max-width: 767px) {
  .ud-blog-details-title {
    font-size: 26px;
    line-height: 35px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ud-blog-details-title {
    font-size: 30px;
    line-height: 40px;
  }
}

.ud-blog-details-para {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 30px;
}

.ud-blog-details-subtitle {
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .ud-blog-details-subtitle {
    font-size: 22px;
    margin-bottom: 25px;
  }
}

.ud-blog-quote {
  background-image: url("../images/blog/quote-bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px;
  text-align: center;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .ud-blog-quote {
    padding: 30px;
  }
}

.ud-blog-quote i {
  font-size: 40px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .ud-blog-quote i {
    margin-bottom: 15px;
  }
}

.ud-blog-quote p {
  font-style: italic;
  font-weight: 600;
  font-size: 16px;
  line-height: 27px;
  text-align: center;
  color: var(--heading-color);
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .ud-blog-quote p {
    font-size: 14px;
    line-height: 24px;
  }
}

.ud-blog-quote h6 {
  color: var(--body-color);
  font-style: italic;
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
}

.ud-blog-details-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 767px) {
  .ud-blog-details-action {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.ud-blog-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  .ud-blog-tags {
    margin-bottom: 20px;
  }
}

.ud-blog-tags li {
  margin-right: 14px;
}

.ud-blog-tags li:last-child {
  margin-right: 0px;
}

.ud-blog-tags a {
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--primary-color);
  background: rgba(48, 86, 211, 0.06);
  border-radius: 3px;
}

.ud-blog-tags a:hover {
  background: var(--primary-color);
  color: var(--white);
}

.ud-blog-share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ud-blog-share h6 {
  font-weight: 500;
  font-size: 12px;
  color: var(--body-color);
  margin-right: 20px;
}

.ud-blog-share-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ud-blog-share-links li {
  margin-right: 14px;
}

.ud-blog-share-links li:last-child {
  margin-right: 0px;
}

.ud-blog-share-links a {
  font-size: 18px;
  width: 35px;
  height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  color: var(--white);
}

.ud-blog-share-links a.facebook {
  background: #4064ac;
}

.ud-blog-share-links a.facebook:hover {
  background: #315294;
}

.ud-blog-share-links a.twitter {
  background: #1c9cea;
}

.ud-blog-share-links a.twitter:hover {
  background: #0f8bd8;
}

.ud-blog-share-links a.linkedin {
  background: #007ab9;
}

.ud-blog-share-links a.linkedin:hover {
  background: #03689b;
}

.ud-blog-sidebar {
  padding-top: 60px;
}

.ud-newsletter-box {
  background: var(--primary-color);
  padding: 60px 45px;
  position: relative;
  z-index: 1;
  text-align: center;
  border-radius: 5px;
  margin-bottom: 50px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .ud-newsletter-box {
    padding: 50px 30px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ud-newsletter-box {
    padding: 60px 45px;
  }
}

.ud-newsletter-box .shape {
  position: absolute;
  z-index: -1;
}

.ud-newsletter-box .shape.shape-1 {
  top: 0;
  right: 0;
}

.ud-newsletter-box .shape.shape-2 {
  left: 0;
  bottom: 0;
}

.ud-newsletter-box .ud-newsletter-title {
  font-weight: 600;
  font-size: 25px;
  color: var(--white);
  margin-bottom: 5px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ud-newsletter-box .ud-newsletter-title {
    font-size: 23px;
  }
}

.ud-newsletter-box p {
  font-size: 16px;
  line-height: 24px;
  color: var(--white);
}

.ud-newsletter-box .ud-newsletter-form {
  margin-top: 30px;
}

.ud-newsletter-box .ud-newsletter-form input {
  width: 100%;
  -webkit-box-shadow: 0px 4px 42px rgba(0, 0, 0, 0.01);
          box-shadow: 0px 4px 42px rgba(0, 0, 0, 0.01);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  text-align: center;
  margin-bottom: 15px;
  border: 2px solid transparent;
  padding: 12px 20px;
}

.ud-newsletter-box .ud-newsletter-form input::-webkit-input-placeholder {
  color: var(--white);
  opacity: 1;
}

.ud-newsletter-box .ud-newsletter-form input:-ms-input-placeholder {
  color: var(--white);
  opacity: 1;
}

.ud-newsletter-box .ud-newsletter-form input::-ms-input-placeholder {
  color: var(--white);
  opacity: 1;
}

.ud-newsletter-box .ud-newsletter-form input::placeholder {
  color: var(--white);
  opacity: 1;
}

.ud-newsletter-box .ud-newsletter-form input:focus {
  border-color: var(--white);
}

.ud-newsletter-box .ud-newsletter-form .ud-main-btn {
  background: #13c296;
  -webkit-box-shadow: 0px 4px 42px rgba(0, 0, 0, 0.01);
          box-shadow: 0px 4px 42px rgba(0, 0, 0, 0.01);
  border-radius: 5px;
  width: 100%;
  margin-bottom: 24px;
}

.ud-newsletter-box .ud-newsletter-form .ud-main-btn:hover {
  background: var(--heading-color);
}

.ud-newsletter-box .ud-newsletter-form .ud-newsletter-note {
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
}

.ud-articles-box {
  margin-bottom: 50px;
}

.ud-articles-box .ud-articles-box-title {
  font-weight: 600;
  font-size: 28px;
  padding-bottom: 25px;
  position: relative;
  margin-bottom: 20px;
}

.ud-articles-box .ud-articles-box-title::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 2px;
  background: var(--primary-color);
  left: 0;
  bottom: 0;
}

.ud-articles-box .ud-articles-list li {
  padding: 20px 0;
  border-bottom: 1px solid #f2f3f8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ud-articles-box .ud-articles-list li:last-child {
  padding-bottom: 0px;
  border-bottom: 0px;
}

.ud-articles-box .ud-articles-list .ud-article-image {
  max-width: 80px;
  width: 100%;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .ud-articles-box .ud-articles-list .ud-article-image {
    max-width: 65px;
    height: 65px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ud-articles-box .ud-articles-list .ud-article-image {
    max-width: 80px;
    height: 80px;
  }
}

.ud-articles-box .ud-articles-list .ud-article-image img {
  width: 100%;
}

.ud-articles-box .ud-articles-list .ud-article-title {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 5px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ud-articles-box .ud-articles-list .ud-article-title {
    font-size: 16px;
  }
}

.ud-articles-box .ud-articles-list .ud-article-title a {
  color: inherit;
}

.ud-articles-box .ud-articles-list .ud-article-title a:hover {
  color: var(--primary-color);
}

.ud-articles-box .ud-articles-list .ud-article-author {
  font-size: 14px;
}

.ud-banner-ad {
  border-radius: 5px;
  overflow: hidden;
}

.ud-banner-ad a {
  display: block;
}

.ud-banner-ad img {
  width: 100%;
}

/* ====== Error 404 CSS ======= */
.ud-404 {
  padding-top: 120px;
  padding-bottom: 120px;
}

@media (max-width: 767px) {
  .ud-404 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.ud-404-wrapper {
  text-align: center;
  max-width: 850px;
  margin: 0px auto;
  background: var(--white);
  padding: 100px 60px;
  -webkit-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media (max-width: 767px) {
  .ud-404-wrapper {
    padding: 50px 30px;
  }
}

.ud-404-wrapper .shape {
  position: absolute;
  z-index: -1;
}

.ud-404-wrapper .shape.shape-1 {
  top: 0;
  left: 0;
}

.ud-404-wrapper .shape.shape-2 {
  right: 0;
  bottom: 0;
}

.ud-404-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ud-404-title {
    font-size: 35px;
  }
}

@media (max-width: 767px) {
  .ud-404-title {
    font-size: 30px;
  }
}

.ud-404-subtitle {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ud-404-subtitle {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .ud-404-subtitle {
    font-size: 18px;
  }
}

.ud-404-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.ud-404-links a {
  font-size: 16px;
  font-weight: 500;
  padding: 12px 24px;
  color: var(--heading-color);
  background: rgba(48, 86, 211, 0.06);
  border-radius: 5px;
  margin: 5px 10px;
}

.ud-404-links a:hover {
  background: var(--heading-color);
  color: var(--white);
}

@media (max-width: 767px) {
  .ud-404-links a {
    margin: 5px 10px;
    font-size: 14px;
    padding: 10px 20px;
  }
}
/*# sourceMappingURL=ud-styles.css.map */







/* HERO SECTION */
.avi-hero {
  position: relative;
}

.hero-img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

/* DARK OVERLAY */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.561);
  z-index: 1;
}

/* CONTENT */
.hero-content {
  position: absolute;
  bottom: 20%;
  left: 5%;
  z-index: 2;
  color: #fff;
  max-width: 700px;
}

/* BIG AVI STYLE TEXT */
.hero-content h1 {
  font-size: 45px;
  font-weight: 700;
  line-height: 1.1;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #ffbf00;
}

/* SUBTEXT */
.hero-content p {
  font-size: 18px;
  color: #ddd;
}

/* SMOOTH TEXT ANIMATION */
.carousel-item.active .hero-content h1 {
  animation: slideUp 0.5s ease;
}

.carousel-item.active .hero-content p {
  animation: slideUp 0.7s ease;
}

/* ANIMATION */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CONTROLS CLEAN */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content {
    bottom: 15%;
  }
}









/* HERO WRAPPER */
.avi-hero {
  position: relative;
}

/* SLIDE BACKGROUND */
.hero-slide {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;

  /* Smooth zoom effect */
  transform: scale(1);
  transition: transform 6s ease;
}

/* ACTIVE SLIDE ZOOM (cinematic effect) */
.carousel-item.active .hero-slide {
  transform: scale(1.08);
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* CONTENT */
.hero-content {
  position: absolute;
  bottom: 18%;
  left: 8%;
  max-width: 650px;
  color: #fff;
  z-index: 2;
}

/* TITLE */
.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  color: #ffbf00;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(40px);
}

/* TEXT */
.hero-content p {
  font-size: 18px;
  color: #ddd;
  opacity: 0;
  transform: translateY(40px);
}

/* TEXT ANIMATION */
.carousel-item.active .hero-content h1 {
  animation: smoothFadeUp 0.8s ease forwards;
}

.carousel-item.active .hero-content p {
  animation: smoothFadeUp 1s ease forwards;
}

/* DELAY FOR NATURAL FLOW */
.carousel-item.active .hero-content p:nth-child(2) {
  animation-delay: 0.3s;
}

.carousel-item.active .hero-content p:nth-child(3) {
  animation-delay: 0.5s;
}

/* ANIMATION KEYFRAME */
@keyframes smoothFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CONTROLS */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
  opacity: 0.7;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-content {
    left: 5%;
    right: 5%;
    bottom: 15%;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 15px;
  }
}









































































































/* BORDER BUTTON AT THE HEADER */
.border-button a {
  display: inline-block;
  margin-top: px;
  padding: 10px 25px;
  border-radius: 30px;
  background: #000080;
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
}

/* 🔥 HOVER EFFECT */
.border-button a:hover {
  background: #000;
  color: #fff;
}


.border-button {
  transform: translateX(-70px);
}




.border-button1 a {
  display: inline-block;
  margin-top: px;
  padding: 10px 25px;
  border-radius: 30px;
  background: #000080;
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
}

/* 🔥 HOVER EFFECT */
.border-button1 a:hover {
  background: #000;
  color: #fff;
}

















/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Arial, sans-serif;
}

body{
  background:#f4f6f9;
  color:#0f172a;
}

/* GLOBAL */
section{
  padding:70px 8%;
}

h1{font-size:32px;}
h2{font-size:24px;}
h3{font-size:18px;}
p{color:#555; font-size:14px;}

.btn{
  background:#0ea5e9;
  color:#fff;
  padding:10px 18px;
  border-radius:4px;
  display:inline-block;
  margin-top:10px;
}

/* ================= CONTACT ================= */

.contact{
  display:flex;
  min-height:600px;
}

/* LEFT */
.contact-left{
  width:55%;
  background:#fff;
  padding:50px;
}

.contact-left input,
.contact-left select,
.contact-left textarea{
  width:100%;
  padding:10px;
  margin:10px 0;
  border:1px solid #ddd;
}

/* RIGHT ANGLED PANEL */
.contact-right{
  width:45%;
  position:relative;
  background:linear-gradient(135deg,#0a3d91,#0ea5e9);
  color:#fff;
  padding:60px;
}

/* ANGLED CUT */
.contact-right::before{
  content:"";
  position:absolute;
  left:-80px;
  top:0;
  width:160px;
  height:100%;
  background:#f4f6f9;
  transform:skewX(-20deg);
}

/* ================= HELP ================= */

.help{
  background:#e9eef5;
}

.help-item{
  display:flex;
  justify-content:space-between;
  padding:15px 0;
  border-bottom:1px solid #ccc;
}

/* ================= CTA ================= */

.cta{
  background:#0a3d91;
  color:#fff;
  text-align:center;
}

.cta .btn{
  margin:10px;
}

/* ================= HERO ================= */

.hero{
  position:relative;
  height:420px;
  background:#999;
  display:flex;
  align-items:flex-end;
  padding:40px;
  color:#fff;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.4);
}

.hero h1{
  position:relative;
  z-index:2;
}

/* ================= SPLIT ================= */

.split{
  display:flex;
  gap:50px;
  align-items:center;
}

.img{
  background:#cbd5e1;
  height:260px;
  flex:1;
}

.text{
  flex:1;
}

/* ================= UCC GRID ================= */

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

.card{
  background:#fff;
  padding:15px;
}

.card .img{
  height:180px;
  margin-bottom:10px;
}

/* ================= DARK STRIP ================= */

.dark{
  background:#0a3d91;
  color:#fff;
}

.dark-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.dark .img{
  height:180px;
  background:#1e3a8a;
}

/* ================= CERT ================= */

.cert{
  text-align:center;
}

.cert-row{
  display:flex;
  justify-content:center;
  gap:40px;
  margin-top:20px;
}

.cert-row div{
  width:70px;
  height:70px;
  background:#ddd;
  border-radius:50%;
}

/* ================= RESPONSIVE ================= */

@media(max-width:900px){
  .contact{flex-direction:column;}
  .contact-left,.contact-right{width:100%;}
  .split{flex-direction:column;}
  .grid{grid-template-columns:1fr;}
  .dark-grid{grid-template-columns:1fr;}
}































































































/* PARTNERS SECTION */
.partners-section {
    background: #ffffff;
}

.partners-title {
    font-weight: 700;
    letter-spacing: 1px;
}

.partners-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 60px; /* clean spacing between logos */
    width: max-content;

    animation: scrollPartners 25s linear infinite;
}

.partners-track img {
    height: 70px;
    width: auto;
    flex-shrink: 0; /* VERY IMPORTANT (prevents breaking) */

    object-fit: contain;
}

/* SMOOTH CONTINUOUS SCROLL */
@keyframes scrollPartners {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}












/* SECTION BACKGROUND */
.services-slider-section {
    background: #f6f6f8; /* deep navy */
    padding: 80px 0;
    color: #fff;
}

/* HEADER */
.services-header {
    max-width: 1200px;
    margin: 0 auto 40px;
    position: relative;
}

.services-header .small-text {
    font-size: 14px;
    opacity: 0.7;
    color: #000080;
}

.services-header h2 {
    font-size: 40px;
    font-weight: 800;
    margin: 10px 0;
    color: #000080;
}

.explore-btn {
    position: absolute;
    right: 0;
    top: 20px;
    border: 1px solid #fd0101;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.explore-btn:hover {
    background: #00cfff;
    color: #000;
}

/* SLIDER */
.services-slider {
    overflow: hidden;
    width: 100%;
}

.services-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: slideServices 25s linear infinite;
}

/* CARD */
.service-card {
    position: relative;
    width: 300px;
    height: 150px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 6px;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OVERLAY TEXT */
.service-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 15px;
    color: #000080;
    background: linear-gradient(transparent, hsla(0, 0%, 100%, 0.485));
    width: 100%;
}

.service-card h4 {
    margin-top: 70px;
    color: #000080;
}

/* ANIMATION */
@keyframes slideServices {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* OPTIONAL HOVER PAUSE */
.services-slider:hover .services-track {
    animation-play-state: paused;
}





















/* HERO SECTION */
.airport-hero {
    background: #f5f5f5;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-left {
    padding: 40px 60px;
    position: relative;
    z-index: 2;
}

.hero-left h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-left p {
    color: #555;
    margin-bottom: 30px;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background: #000;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
}

.btn-outline-custom {
    border: 1px solid #000;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    color: #000;
}

/* RIGHT IMAGE */
.hero-right {
    position: relative;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

/* PARTNERS SECTION */
.trusted-section {
    background: #fafafa;
    padding: 40px 0;
}

.trusted-text {
    margin-bottom: 20px;
    color: #444;
}

/* LOGOS */
.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.trusted-logos img {
    height: 40px;
    object-fit: contain;
    opacity: 0.8;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f7fa;
}

.security-section {
  padding: 60px 20px;
  text-align: center;
}

.security-section h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.subtitle {
  color: #666;
  max-width: 600px;
  margin: 0 auto 40px;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.card h3 {
  margin: 10px 0;
  font-size: 20px;
}

.card p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

.card a {
  display: inline-block;
  margin-top: 10px;
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.card a:hover {
  text-decoration: underline;
}








































/* AIRPORT SECTION */
.airport-section {
  background: #f8f9fc;
}

.section-title {
  font-size: 32px;
  font-weight: 600;
}

.section-subtitle {
  color: #6c757d;
  max-width: 600px;
  margin: auto;
}

/* IMAGE */
.airport-image img {
  border-radius: 12px;
  box-shadow: 0 30px 30px rgba(0,0,0,0.1);
}





/* IMAGE */
.airport-image1 img {
  border-radius: 12px;
  box-shadow: 0 30px 30px rgba(0,0,0,0.1);
}


/* CONTENT */
.airport-content h4 {
  font-weight: 600;
}

.airport-feature {
  gap: 15px;
  margin-bottom: 25px;
}

.airport-feature i {
  font-size: 24px;
  color: #0d6efd;
  min-width: 40px;
}

.airport-feature h6 {
  margin-bottom: 5px;
  font-weight: 600;
}

.airport-feature p {
  margin: 0;
  color: #6c757d;
  font-size: 14px;
}

/* RESPONSIVE TUNING */
@media (max-width: 768px) {
  .section-title {
    font-size: 24px;
  }

  .airport-feature {
    flex-direction: row;
  }
}



























/* CONSTRUCTION SECTION */
.construction-section {
  background: #ffffff;
}

/* TABS */
.construction-tabs {
  display: inline-flex;
  gap: 15px;
  flex-wrap: wrap;
}

.tab-btn {
  border: 1px solid #ddd;
  padding: 10px 25px;
  border-radius: 30px;
  background: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.tab-btn.active {
  background: #0d6efd;
  color: #fff;
  border-color: #0d6efd;
}

.tab-btn:hover {
  background: #0d6efd;
  color: #fff;
}

/* CONTENT */
.construction-content h3 {
  font-weight: 600;
  margin-bottom: 10px;
}

.construction-content p {
  color: #6c757d;
}

/* FEATURES */
.construction-feature {
  gap: 15px;
  margin-bottom: 25px;
}

.construction-feature i {
  font-size: 22px;
  color: #0d6efd;
  min-width: 40px;
}

.construction-feature h6 {
  margin-bottom: 5px;
  font-weight: 600;
}

.construction-feature p {
  margin: 0;
  font-size: 14px;
  color: #6c757d;
}

/* IMAGE */
.construction-image img {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .construction-tabs {
    justify-content: center;
  }

  .tab-btn {
    padding: 8px 18px;
    font-size: 14px;
  }
}




.tab-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



























/* ================= TELECOM ================= */
.fn-telecom {
  padding: 80px 0;
  background: #f5f7fb;
}

.telecom-text small {
  color: #7a8bb5;
  font-weight: 600;
  letter-spacing: 1px;
}

.telecom-text h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 15px 0;
  color:    #000080;
}

.telecom-text p {
  color: #555;
  line-height: 1.7;
}

.telecom-text ul {
  margin-top: 20px;
  padding-left: 20px;
}

.telecom-text ul li {
  margin-bottom: 10px;
  color: #444;
}

/* IMAGE */
.telecom-image img {
  width: 100%;
  border-radius: 10px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .hero-content {
    padding: 60px 30px;
  }

  .hero-text h1 {
    font-size: 30px;
  }

  .hero-content::before {
    transform: none;
    right: 0;
  }

  .fn-telecom {
    text-align: center;
  }
}


















/* ================= WIRELESS SECTION ================= */
.fn-wireless {
  background: #f5f7fb;
  padding: 80px 0;
}

/* LABEL */
.section-label {
  font-size: 12px;
  font-weight: 600;
  color: #8a94b8;
  letter-spacing: 1px;
}

/* HEADING */
.fn-wireless h2 {
  font-size: 32px;
  font-weight: 700;
  color: #000080;
  margin: 15px 0;
  line-height: 1.3;
}

/* TEXT */
.fn-wireless p {
  color: #6b7280;
  line-height: 1.7;
  max-width: 500px;
}

/* IMAGE */
.image-box {
  border-radius: 12px;
  overflow: hidden;
}

.image-box img {
  width: 100%;
  display: block;
}

/* CARDS */
.cards-row {
  margin-top: 50px;
}

.feature-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 25px;
  height: 100%;
  transition: 0.3s ease;
}

/* HOVER EFFECT (optional but nice) */
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* CARD TEXT */
.feature-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #000080;
}

.feature-card p {
  font-size: 14px;
  color: #6b7280;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .fn-wireless {
    text-align: center;
  }

  .fn-wireless p {
    margin: auto;
  }

  .cards-row {
    gap: 20px;
  }
}







/* SECTION LAYOUT */
.quote-section {
  background: #f5f7fa;
  padding: 80px 0;
  font-family: Arial, sans-serif;
}

.quote-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

/* LEFT SIDE FORM */
.quote-wrapper form {
  background: #fff;
  padding: 40px;
  border-radius: 6px;
}

.quote-wrapper p {
  margin-bottom: 20px;
  color: #555;
}

/* FORM GROUP */
.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #1a2a4f;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #dcdfe6;
  border-radius: 3px;
  font-size: 14px;
  transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #00a9b5;
  outline: none;
}

/* BUTTON */
.quote-btn {
  background: #00a9b5;
  color: #fff;
  padding: 12px 24px;
  border: none;
  font-size: 14px;
  cursor: pointer;
  border-radius: 3px;
  transition: 0.3s;
}

.quote-btn:hover {
  background: #008d97;
}

/* RIGHT BLUE PANEL */
.quote-wrapper::after {
  content: "";
}

.quote-section .side-panel {
  background: #1f5fa8;
  color: #fff;
  padding: 40px;
  border-radius: 6px;
}

/* If you want to manually add the panel */
.side-panel {
  background: #1f5fa8;
  color: #fff;
  padding: 40px;
  border-radius: 6px;
  height: 100%;
}

.side-panel h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.side-panel p {
  margin-bottom: 15px;
  color: #e3ecff;
}

.side-panel .help-btn {
  display: inline-block;
  background: linear-gradient(90deg, #00a9b5, #00d2c3);
  color: #000;
  padding: 12px 20px;
  margin-top: 20px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 3px;
}

/* BOTTOM CTA SECTION */
.cta-section {
  background: #0d2a5c;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.cta-section h2 {
  margin-bottom: 25px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.cta-buttons a {
  padding: 12px 20px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 3px;
}

.cta-primary {
  background: #00a9b5;
  color: #000;
}

.cta-secondary {
  border: 1px solid #00a9b5;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .quote-wrapper {
    grid-template-columns: 1fr;
  }
}









.team-section {
  font-family: Arial, sans-serif;
  padding: 60px 40px;
  background: #f7f7f7;
}





/* BOARD SECTION */
.board-section {
  text-align: center;
}

.board-section h2 {
  margin-bottom: 10px;
}

.board-desc {
  margin-bottom: 20px;
  color: #666;
}



.btn.green {
  background: #4caf50;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.card {
  background: #fff;
  padding: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.card img {
  width: 100%;
  border-radius: 5px;
  margin-bottom: 10px;
}

.card h4 {
  margin: 10px 0 5px;
}

.card p {
  font-size: 14px;
  color: #666;
}

.card ul {
  padding-left: 15px;
  text-align: left;
  font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .ceo-section {
    flex-direction: column;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}





/* ===============================
NETWORK INFRASTRUCTURE SECTIONS
================================ */

.network-sections {
  margin-top: 40px;
  margin-bottom: 60px;
}

.network-section {
  padding: 50px 20px;
}

.network-section h2,
.network-section h3 {
  margin-bottom: 15px;
  font-weight: 700;
}

.network-section p {
  color: #555;
  line-height: 1.7;
}

.light-bg {
  background: #f8f8f8;
}

.network-list {
  list-style: none;
  padding-left: 0;
}

.network-list li {
  padding-left: 22px;
  margin-bottom: 10px;
  position: relative;
}

.network-list li::before {
  content: "⦁";
  position: absolute;
  left: 0;
  color: #fc6303; /* matches Medigo red tone */
  font-weight: bolder;
}











.network-list1 {
  list-style: none;
  padding-left: 0;
}
.network-list1 li {
  padding-left: 22px;
  margin-bottom: 10px;
  position: relative;
}

.network-list1 li::before {
  content: "⦁";
  position: absolute;
  left: 0;
  color: #fdfcfc; /* matches Medigo red tone */
  font-weight: bolder;
}

.value-points {
  margin-top: 30px;
}

.value-box {
  background: #fff;
  padding: 25px;
  text-align: center;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.value-box h4 {
  margin-bottom: 10px;
  font-weight: 600;
}






/* SECTION */
.banking-banner {
  position: relative;
  height: 85vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 60px;
}

/* IMAGE */
.banking-banner-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 1;
}

/* OVERLAY */
.banking-banner-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(10, 30, 60, 0.65);
  top: 0;
  left: 0;
  z-index: 2;
}

/* CONTENT */
.banking-banner-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  color: #fff;
}

/* TAG */
.banking-banner-tag {
  color: #ffc107;
  font-weight: bold;
  letter-spacing: 1px;
  font-size: 14px;
}

/* TITLE */
.banking-banner h1 {
  font-size: 44px;
  line-height: 1.2;
  margin: 15px 0;
  font-weight: 700;
  color: #d0d7e2;
}

/* TEXT */
.banking-banner p {
  font-size: 16px;
  line-height: 1.6;
  color: #d0d7e2;
  margin-bottom: 25px;
}

/* BUTTON */
.banking-banner-btn {
  display: inline-block;
  background: #000080;
  color: #fff;
  padding: 12px 22px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.banking-banner-btn:hover {
  background: #0000ff8c;
}






/* SECTION */
.fn-skills-section {
  padding: 80px 60px;
  background: #f5f7fb;
  text-align: center;
}

/* HEADER */
.fn-skills-header h2 {
  font-size: 32px;
  color:   #000080;
  margin-bottom: 15px;
}

.fn-skills-header p {
  max-width: 700px;
  margin: 0 auto 50px;
  color: #6b7a99;
  font-size: 15px;
  line-height: 1.6;
}

/* GRID */
.fn-skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.fn-skill-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

/* IMAGE */
.fn-skill-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* OVERLAY */
.fn-skill-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px;
  color: #fff;
  font-weight: 400;
  font-size: 20px;

  background: linear-gradient(
    to top,
    #000080,
    rgba(10, 30, 60, 0.65),
    transparent
  );
}

/* HOVER EFFECT */
.fn-skill-card:hover img {
  transform: scale(1.05);
  transition: 0.4s ease;
}



.nav .sub-menu a {
    text-transform: none !important;
}





/* =========================
   RESPONSIVE FIXES
========================= */

/* Tablets */
@media (max-width: 1024px) {

  .banking-banner {
    padding: 0 30px;
    height: auto;
    min-height: 70vh;
  }

  .banking-banner h1 {
    font-size: 34px;
  }

  .fn-skills-section {
    padding: 60px 30px;
  }

  .fn-skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* Mobile */
@media (max-width: 768px) {

  .banking-banner {
    padding: 40px 20px;
    height: auto;
    text-align: center;
    justify-content: center;
  }

  .banking-banner-content {
    max-width: 100%;
  }

  .banking-banner h1 {
    font-size: 26px;
  }

  .banking-banner p {
    font-size: 14px;
  }

  .banking-banner-btn {
    padding: 10px 18px;
    font-size: 14px;
  }

  /* Skills Section */
  .fn-skills-section {
    padding: 50px 20px;
  }

  .fn-skills-header h2 {
    font-size: 24px;
  }

  .fn-skills-header p {
    font-size: 14px;
  }

  .fn-skills-grid {
    grid-template-columns: 1fr;
  }

  .fn-skill-card img {
    height: 200px;
  }

}

/* Small Phones */
@media (max-width: 480px) {

  .banking-banner h1 {
    font-size: 22px;
  }

  .banking-banner p {
    font-size: 13px;
  }

  .banking-banner-btn {
    width: 100%;
    text-align: center;
  }

  .fn-skill-overlay {
    font-size: 16px;
    padding: 10px;
  }

}



/* FIX: center and lower banner text safely */
.banking-banner {
  justify-content: center;
}

.banking-banner-content {
  margin-top: 60px; /* pushes text down */
  text-align: center;
}







@media (max-width: 768px) {

  /* make header behave properly */
  .main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* hide desktop menu */
  .main-nav .nav {
    display: none;
  }

  /* keep logo left */
  .logo {
    flex: 0 0 auto;
  }

  /* push button to the right side */
  .border-button {
    margin-left: auto;
    margin-right: 10px;
  }

  /* keep button small so it fits */
  .border-button a {
    padding: 6px 10px;
    font-size: 12px;
    white-space: nowrap;
  }

  /* keep menu trigger at far right */
  .menu-trigger {
    margin-left: 5px;
  }

}




/* SECTION LAYOUT */
.quote-section {
  background: #f5f7fa;
  padding: 80px 0;
  font-family: Arial, sans-serif;
}

.quote-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

/* LEFT SIDE FORM */
.quote-wrapper form {
  background: #fff;
  padding: 40px;
  border-radius: 6px;
}

.quote-wrapper p {
  margin-bottom: 20px;
  color: #555;
}



/* BUTTON */
.quote-btn {
  background: #000080;
  color: #fff;
  padding: 12px 24px;
  border: none;
  font-size: 14px;
  cursor: pointer;
  border-radius: 3px;
  transition: 0.3s;
}

.quote-btn:hover {
  background: #2f08c983;
}

/* RIGHT BLUE PANEL */
.quote-wrapper::after {
  content: "";
}

.quote-section .side-panel {
  background: #ffbf00;
  color: #fff;
  padding: 40px;
  padding-right: 20px;
  border-radius: 6px;
}

/* If you want to manually add the panel */
.side-panel {
  background: #000080;
  color: #fff;
  padding: 20px;
  border-radius: 6px;
  height: 100%;
}

.side-panel h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.side-panel p {
  margin-bottom: 15px;
  color: #e3ecff;
}

.side-panel .help-btn {
  display: inline-block;
  background: #000080;
  color: hsl(0, 20%, 97%);
  padding: 12px 20px;
  margin-top: 20px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 3px;
}



.why-slider-section {
  padding: 60px 20px;
  background:hsl(0, 0%, 100%); /* dark premium background */
  color: #fff;
}

.section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
}

/* WRAPPER */
.slider-wrapper {
  position: relative;
  max-width: 1200px;
  margin: auto;
}

/* SLIDER */
.slider {
  display: flex;
  gap: 20px;
  overflow: hidden;
  scroll-behavior: smooth;
}

/* CARD */
.card {
  min-width: 300px;
  max-width: 320px;
  background: #000080;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
}

/* IMAGE */
.card-img {
  position: relative;
  height: 180px;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}




 #fdbc02,
    #b14902,
    
/* DARK OVERLAY */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;

}

/* CAPTION */
.caption {
  position: center;
  bottom: 10px;
  left: 15px;
  right: 15px;
  font-size: 18px;
  font-weight: 600;
    color: hsl(0, 100%, 100%);
}

/* BODY */
.card-body {
  padding: 18px;
  margin-bottom: 10px;
}

.card-body p {
  font-size: 14px;
    margin-top: 50px;
  margin-bottom: 30px;
  color: hsl(0, 100%, 100%);
}

.card-body ul {
  padding-left: 18px;
  margin-bottom: 10px;
    color: hsl(0, 9%, 98%);
}

.card-body li {
  font-size: 14px;
  margin-bottom: 6px;
    color: #ffffff;
}

/* NAV BUTTONS */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: #000;
  border: none;
  padding: 6px 14px;
  border-radius: 100%;
  cursor: pointer;
  z-index: 10;
}

.prev {
  left: -15px;
}

.next {
  right: -15px;
}

/* MOBILE */
@media (max-width: 768px) {
  .slider {
    overflow-x: auto;
  }

  .nav-btn {
    display: none;
  }
}






.location-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: 0.3s;
}

.location-link:hover {
  color: #ff6a00; /* match your theme color */
  transform: translateY(-3px);
}














/* Scoped wrapper to avoid conflicts */
.it-consulting-section {
  padding: 80px 20px;
  background: #ff9606;
  color: #e5e7eb;
}

/* ONLY affect container inside this section */
.it-consulting-section .itc-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Header */
.it-consulting-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.it-consulting-section .section-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

/* Image */
.it-consulting-section .header-image img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 12px;
}

/* Content box */
.it-consulting-section .content-box {
  background: #472003;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Each paragraph */
.it-consulting-section .content-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
  padding-left: 15px;
  border-left: 3px solid #ffba05;
}

/* Icon */
.it-consulting-section .content-item .itc-icon {
  font-size: 20px;
  margin-top: 3px;
}

/* Text */
.it-consulting-section .content-item p {
  font-size: 16px;
  line-height: 1.8;
  color: #cbd5f5;
  margin: 0;
}

/* CTA */
.it-consulting-section .cta-box {
  text-align: center;
  margin-top: 40px;
}

.it-consulting-section .cta-btn {
  display: inline-block;
  padding: 14px 30px;
  background: #fc6303;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}
s
.it-consulting-section .cta-btn:hover {
  background: #ff9606;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .it-consulting-section .section-header h2 {
    font-size: 24px;
  }

  .it-consulting-section .content-box {
    padding: 25px;
  }

  .it-consulting-section .content-item p {
    font-size: 15px;
  }
}






/* =========================
   JOB APPLICATION FORM ONLY
========================= */

#applicationForm {
  max-width: 700px;
  margin: auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  font-family: "Segoe UI", Arial, sans-serif;
}

/* SECTION HEADINGS */
#applicationForm h3 {
  font-size: 18px;
  margin: 25px 0 15px;
  color: #1f2937;
  border-left: 4px solid #fc6303;
  padding-left: 10px;
}

/* INPUTS + SELECTS */
#applicationForm input,
#applicationForm select,
#applicationForm textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 15px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  font-size: 14px;
  outline: none;
  transition: 0.3s ease;
}

/* FOCUS STATE */
#applicationForm input:focus,
#applicationForm select:focus,
#applicationForm textarea:focus {
  border-color: #fc6303;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(252, 99, 3, 0.15);
}

/* TEXTAREA */
#applicationForm textarea {
  min-height: 120px;
  resize: vertical;
}

/* FILE INPUT */
#applicationForm input[type="file"] {
  background: #fff;
  padding: 10px;
}

/* LABEL */
#applicationForm label {
  display: block;
  margin: 10px 0 6px;
  font-weight: 600;
  color: #374151;
}

/* SUBMIT BUTTON */
#applicationForm button {
  width: 100%;
  padding: 14px;
  background: linear-gradient(90deg, #fc6303, #ff7a1a);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  margin-top: 10px;
}

/* BUTTON HOVER */
#applicationForm button:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* STATUS MESSAGE */
#formStatus {
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
  color: #374151;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
  #applicationForm {
    padding: 20px;
  }

  #applicationForm h3 {
    font-size: 16px;
  }
}



























/* =========================
   WHATS SETS US APART
========================= */


/* Section */
.features {
  background: #f5f5f5;
  padding: 80px 20px;
}

.container {
  max-width: 1100px;
  margin: auto;
}

/* Header */
.features-header {
  text-align: center;
  margin-bottom: 60px;
}

.features-header h2 {
  font-size: 36px;
  color: #1d2b6b;
  margin-bottom: 20px;
}

.features-header p {
  max-width: 750px;
  margin: auto;
  color: #555;
  line-height: 1.6;
}

/* Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 40px;
}

/* Cards */
.feature-card img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.feature-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: #1d2b6b;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.feature-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

/* Stagger effect (like your image) */
.feature-card:nth-child(2),
.feature-card:nth-child(4) {
  margin-top: 60px;
}

/* Arrow (optional visual like image) */
.feature-card h4::after {
  content: "→";
  float: right;
  color: #999;
}

/* Mobile */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card:nth-child(2),
  .feature-card:nth-child(4) {
    margin-top: 0;
  }

  .features-header h2 {
    font-size: 28px;
  }
}


.features::after {
  content: "➜";
  position: absolute;
  right: 80px;
  top: 200px;
  font-size: 120px;
  color: orange;
  opacity: 0.8;
}

































































/* =========================
   WHATS SETS US APART 2


========================= */
.our-features {
  padding: 80px 20px;
  background: #f7f9fc;
  font-family: Arial, sans-serif;
}

/* ===== TITLE ===== */
.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #222;
}

/* ===== GRID LAYOUT ===== */
.features-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== CARD STYLE ===== */
.feature-box {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

/* hover effect */
.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

/* ===== ICON ===== */
.icon {
  margin-bottom: 15px;
}

.icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

/* ===== TEXT ===== */
.feature-box h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111;
}

.feature-box p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}
@media (max-width: 600px) {
  .features-wrapper {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 26px;
  }
}


























/* 
---------------------------------------------
Contact Style
--------------------------------------------- 
*/

.contact-us {
  position: relative;
}

.contact-us::before {
  content: url(../images/contact-left.jpg);
  top: -60px;
  left: 0;
  position: absolute;
  width: 103px;
  height: 464px;
  z-index: -1;
}

.contact-us::after {
  content: url(../images/contact-left.jpg);
  bottom: -90px;
  right: 0;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  position: absolute;
  width: 103px;
  height: 464px;
  z-index: -1;
}

.contact-us .contact-us-content {
  border-radius: 23px;
  padding: 60px;
  background-color: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.10);
}

.contact-us .contact-us-content #contact-form {
  padding: 60px;
  border-radius: 23px 23px 0px 0px;
  border: 1px solid #f3d7ff;
}

#contact-form .section-heading {
  text-align: center;
}

#contact-form input {
  width: 100%;
  height: 46px;
  border-radius: 23px;
  background-color: #f9ebff;
  border: none;
  outline: none;
  padding: 0px 15px;
  font-size: 14px;
  color: #2a2a2a;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact-form input::placeholder {
  color: #2a2a2a;
}

#contact-form textarea {
  width: 100%;
  height: 120px;
  border-radius: 23px;
  background-color: #f9ebff;
  border: none;
  outline: none;
  padding: 15px;
  font-size: 14px;
  color: #2a2a2a;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact-form textarea::placeholder {
  color: #2a2a2a;
}

#contact-form button {
  border: none;
  height: 46px;
  background-color: #000080;
  width: 100%;
  border-radius: 23px;
  color: #fff;
  transition: all .4s;
}

#contact-form button:hover {
  opacity: 0.8;
    background-color: #0000ff;
}

.contact-us-content .more-info {
  text-align: center;
  background:#000080;
  background: linear-gradient(90deg, #000080, #0000ff);
  border-radius: 0px 0px 23px 23px;
  padding: 45px 30px 15px 30px;
}

.contact-us-content .more-info .info-item {
  text-align: center;
  margin-bottom: 30px;
}

.contact-us-content .more-info i {
  font-size: 32px;
  color: #fff;
  margin-bottom: 15px;
}

.contact-us-content .more-info h4 a {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}






#free-quote .section-heading {
  margin-bottom: 40px;
}

#free-quote input {
  width: 100%;
  height: 46px;
  border-radius: 23px;
  background-color: #f9ebff;
  border: none;
  outline: none;
  padding: 0px 15px;
  font-size: 14px;
  color: #2a2a2a;
  font-weight: 600;
  margin-bottom: 15px;
}

#free-quote input::placeholder {
  color: #2a2a2a;
}

#free-quote button {
  border: none;
  height: 46px;
  background-color: #000080;
  width: 100%;
  border-radius: 23px;
  color: #fff;
  transition: all .4s;
}

#free-quote button:hover {
  opacity: 0.8;
  color: #0000ff;
}






/*
---------------------------------------------
Happy Steps Style
---------------------------------------------
*/

.happy-steps {
  background-image: url(../images/video-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  padding: 80px 0px;
}

.happy-steps h2 {
  font-size: 30px;
  color: hsl(0, 0%, 5%);
  text-align: center;
  margin-bottom: 60px;
}

.happy-steps .steps {
  background-color: #fefefe;     
  padding: 30px;
  border-radius: 23px;
}

.happy-steps .steps .item {
  text-align: center;
  border-right: 1px solid rgba(250, 250, 250, 0.2);
  margin-right: -15px;
}

.happy-steps .steps .last-item {
  border-right: none;
  margin-right: 0px;
}

.happy-steps .steps .item h4 {
  font-size: 20px;
  color: #090909;
  margin-top: 15px;
}




