
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;900&amp;family=Rubik:wght@300;400;500;600;700;900&amp;display=swap");
:root {
  /**
  @font family declaration
  */
  --bd-ff-body: 'Poppins', sans-serif;;
  --bd-ff-heading: 'Poppins', sans-serif;;
  --bd-ff-p: font-family: 'Rubik', sans-serif;;
  --bd-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --clr-common-white: #ffffff;
  --clr-common-black: #000;
  --clr-common-placeholder: #c6c6c6;
  --clr-common-heading: #1f242c;
  --clr-common-body-text: #1f242c;
  --clr-common-orange: #F79210;
  --clr-theme-1: #0E84E1;
  --clr-theme-2: #0a0a09;
  --clr-theme-3: #6551B3;
  --clr-theme-4: #9747FF;
  --clr-theme-5: #4285F4;
  --clr-text-1: #999999;
  --clr-text-2: #aaaaaa;
  --clr-text-3: #141d38;
  --clr-text-4: #777777;
  --clr-text-5: #bdbdbd;
  --clr-text-6: #e4e4e5;
  --clr-text-7: #7b818d;
  --clr-text-8: #8f96a0;
  --clr-text-9: #a7adb8;
  --clr-text-10: #BFDCF2;
  --clr-text-11: #161A33;
  --clr-text-13: #606060;
  --clr-text-14: #8E8E8E;
  --clr-text-15: #D9D9D9;
  --clr-text-16: #848484;
  --clr-text-17: #535353;
  --clr-text-18: #A0A0A0;
  --clr-text-19: #484848;
  --clr-text-20: #E2E2E2;
  --clr-text-21: #1F4941;
  --clr-text-22: #3F3F3F;
  --clr-text-23: #A89F94;
  --clr-bg-black-russian: #1a1e25;
  --clr-bg-grey-1: #f7f7f7;
  --clr-bg-grey-2: #f8f8f8;
  --clr-bg-grey-3: #f3f3f3;
  --clr-bg-grey-4: #f2f3f5;
  --clr-bg-charcoal: #232932;
  --clr-bg-footer: #1a1e25;
  --clr-bg-1: #161A33;
  --clr-bg-2: #252525;
  --clr-bg-3: #EFEFEF;
  --clr-bg-4: #B0B0B0;
  --clr-bg-5: #FAFAFA;
  --clr-bg-6: #EEF8FF;
  --clr-bg-7: #EA4335;
  --clr-bg-8: #FBBC05;
  --clr-bg-9: #34A853;
  --clr-bg-10: #05FBC0;
  --clr-bg-11: #F1F1F1;
  --clr-border-1: #344166;
  --clr-border-2: #ebeff3;
  --clr-border-3: #f6f6f6;
  --clr-border-4: #22262e;
  --clr-border-5: #f4f4f4;
  --clr-border-6: #f9f9f9;
  --clr-border-7: #ececec;
  --clr-border-8: #5ca1df;
  --clr-border-9: #eeeeee;
  --clr-border-10: #ededed;
  --clr-border-11: #f0f0f5;
  --clr-border-12: #AEAEAE;
  --clr-border-13: #BCBCBC;
  --clr-border-14: #555555;
  --clr-border-15: #CFCFCF;
  --clr-border-16: #DFD8CE;
  --clr-border-17: #D2D2D2;
  --clr-border-18: #717171;
  --clr-border-19: #C0CCD8;
  --clr-border-20: #D7D7D7;
  --clr-border-21: #D4D4D4;
  --clr-footer-1: #9ba1ad;
  /**
  @font weight declaration
  */
  --bd-fw-normal: normal;
  --bd-fw-thin: 100;
  --bd-fw-elight: 200;
  --bd-fw-light: 300;
  --bd-fw-regular: 400;
  --bd-fw-medium: 500;
  --bd-fw-sbold: 600;
  --bd-fw-bold: 700;
  --bd-fw-ebold: 800;
  --bd-fw-black: 900;
  /**
  @font size declaration
  */
  --bd-fs-body: 16px;
  --bd-fs-p: 16px;
  --bd-fs-h1: 60px;
  --bd-fs-h2: 50px;
  --bd-fs-h3: 24px;
  --bd-fs-h4: 20px;
  --bd-fs-h5: 16px;
  --bd-fs-h6: 14px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Add this at the top of your CSS */
/* html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.smooth-container {
  scroll-behavior: smooth;
} */

/* html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.bd-ud-sticky {
  animation: none !important;
}

@media (max-width: 992px) {
  .wow {
    animation: none !important;
    visibility: visible !important;
  }
} */

/* Fix smooth scrolling with hardware acceleration */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Prevent repaints during scroll */
* {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Disable WOW.js animations during scroll to prevent conflicts */
.wow {
  animation-duration: 1s !important;
  animation-fill-mode: both !important;
}

/* Specifically target body to prevent scroll flash */
body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  overflow-y: scroll; /* Force scrollbar to prevent layout shift */
}

/* Fix for sticky header */
.bd-ud-sticky,
.sticky,
#header-sticky {
  animation: none !important;
  transition: transform 0.3s ease !important;
  transform: translateZ(0); /* Force GPU acceleration */
  will-change: transform;
}

/* Media query adjustments */
@media (max-width: 992px) {
  .wow {
      /* animation: none !important; */
      visibility: visible !important;
  }
  
  /* Disable smooth scroll on mobile if still problematic */
  html {
      scroll-behavior: auto;
  }
}


/* .nav-link.active {
  color: #0e84e1 !important;
} */


/* Add this to your main.css or create nav.css */
.bd-ud-main-menu li.active a.nav-link {
  color: #0E84E1 !important;
  font-weight: 600;
}

.bd-ud-main-menu li.active {
  position: relative;
}

.bd-ud-main-menu li.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #0E84E1, #3ba0ff);
  display: none;
}

/* Also style for mobile menu */
.mobile-menu li.active a.nav-link {
  color: #0E84E1 !important;
  font-weight: 600;
}

/*---------------------------------
    Typography css start 
---------------------------------*/
body {
  font-family: var(--bd-ff-body);
  font-size: var(--bd-fs-body);
  font-weight: normal;
  color: var(--clr-common-body-text);
  line-height: 26px;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--bd-ff-heading);
  color: var(--clr-common-heading);
  margin-top: 0px;
  font-weight: var(--bd-fw-bold);
  line-height: 1.3;
  margin-bottom: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  color: var(--clr-common-heading);
}

h1 {
  font-size: var(--bd-fs-h1);
}

h2 {
  font-size: var(--bd-fs-h2);
}

h3 {
  font-size: var(--bd-fs-h3);
}

h4 {
  font-size: var(--bd-fs-h4);
}

h5 {
  font-size: var(--bd-fs-h5);
}

h6 {
  font-size: var(--bd-fs-h6);
}

ul {
  margin: 0px;
  padding: 0px;
}

li {
  list-style: none;
}

p {
  font-family: var(--bd-ff-p);
  font-size: var(--bd-fs-p);
  font-weight: var(--bd-fw-normal);
  color: var(--clr-text-4);
  margin-bottom: 15px;
  line-height: 28px;
}

a,
.btn,
span,
p,
input,
select,
textarea,
li,
img,
svg path,
*::after,
*::before,
.transition-3,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

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

a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
  border: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

input {
  outline: none;
}

input[type=color] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  padding: 0;
  border-radius: 50%;
}

*::-moz-selection {
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
  text-shadow: none;
}

::selection {
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: var(--clr-common-placeholder);
  opacity: 1;
  font-size: 16px;
}

*::placeholder {
  color: var(--clr-common-placeholder);
  opacity: 1;
  font-size: 16px;
}

/*---------------------------------
    common classes css start 
---------------------------------*/
.w-img img {
  width: 100%;
}

.m-img img {
  max-width: 100%;
}

.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

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

.z-index-11 {
  z-index: 11;
}

.overflow-y-visible {
  overflow-x: hidden;
  overflow-y: visible;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

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

.hr-1 {
  border-top: 1px solid rgb(232, 232, 232);
}

/*----------------------------------------
    Body Overlay 
-----------------------------------------*/
.body-overlay {
  background-color: rgba(var(--clr-common-heading), 0.5);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 99;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.body-overlay:hover {
  cursor: pointer;
}

.body-overlay.opened {
  opacity: 1;
  visibility: visible;
}

/*----------------------------------------
    Progress Wrap
-----------------------------------------*/
@media (max-width: 575px) {
  .progress-wrap {
    right: 15px;
    bottom: 15px;
  }
}

/*----------------------------------------
   Basic-pagaination
-----------------------------------------*/

.bd-basic__pagination ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .bd-basic__pagination ul {
    justify-content: start;
  }
}
.bd-basic__pagination ul li {
  list-style: none;
}
.bd-basic__pagination ul li a {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  position: relative;
  right: 0;
  top: 50%;
  font-weight: var(--bd-fw-medium);
  font-size: 16px;
  border: 1px solid var(--clr-border-11);
  overflow: hidden;
  z-index: 5;
}
.bd-basic__pagination ul li a:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-image: -webkit-linear-gradient(0deg, var(--clr-theme-1) 0%, var(--clr-theme-3) 100%);
  color: var(--clr-common-heading);
  z-index: -1;
  opacity: 0;
}
.bd-basic__pagination ul li a:hover {
  background-position: 0% 100%;
  color: var(--clr-common-white);
}
.bd-basic__pagination ul li a:hover::after {
  opacity: 1;
  color: var(--clr-common-white);
  border-color: 1px solid var(--clr-common-white);
}
.bd-basic__pagination ul li span {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  position: relative;
  right: 0;
  top: 50%;
  font-weight: var(--bd-fw-sbold);
  font-size: 14px;
  border: 1px solid var(--clr-border-11);
  overflow: hidden;
  color: var(--clr-common-white);
  z-index: 5;
}
.bd-basic__pagination ul li span:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-image: linear-gradient(to right, var(--clr-theme-3), var(--clr-theme-1), var(--clr-theme-1), var(--clr-theme-3));
  color: var(--clr-common-heading);
  background-position: 100% 100%;
  background-size: 300% 100%;
  z-index: -1;
}

.t-center {
  text-align: center;
}

.t-end {
  text-align: end;
}

.ud-gradient-1 {
  background: linear-gradient(90deg, var(--clr-theme-1) 0%, var(--clr-theme-3) 100.23%);
}

.white-text {
  color: var(--clr-common-white);
}

/* .ud-white-bg {
  background: var(--clr-common-black);
} */
.ud-white-bg {
  /* background: var(--clr-common-black); */
  background: linear-gradient(to right, var(--clr-theme-1), var(--clr-theme-3), var(--clr-theme-3), var(--clr-theme-1));
}

.ud-black-bg-1 {
  background: var(--clr-bg-1);
}

.bd-ud-gray-1 {
  background: var(--clr-bg-grey-1);
}

.bd-ud-bg-1 {
  background: var(--clr-bg-1);
}

.bd-ud-bg-2 {
  background: var(--clr-bg-2);
}

.bd-ud-bg-3 {
  background: var(--clr-bg-3);
}

.bd-ud-bg-4 {
  background: var(--clr-bg-4);
}

.bd-ud-bg-5 {
  background: var(--clr-text-20);
}

.bd-ud-bg-6 {
  background-color: var(--clr-bg-5);
}

.bd-ud-bg-widget {
  background: var(--clr-bg-5);
}

.et-bg-4 {
  background: var(--clr-theme-1);
}

.bd-ud-gradient-bg-1 {
  background: linear-gradient(95.09deg, var(--clr-theme-4) -1.37%, var(--clr-theme-1) 100%);
  box-shadow: 0px 4px 105px rgba(14, 132, 225, 0.12);
  border-radius: 10px;
}

.lh-1 {
  line-height: 1;
}

.et-gray-bg {
  background: var(--clr-border-5);
}

.bd-ud-btn {
  background: var(--clr-ud-gradient-1);
  background-image: linear-gradient(to right, var(--clr-theme-1), var(--clr-theme-3), var(--clr-theme-3), var(--clr-theme-1));
  background-size: 300% 100%;
  color: var(--clr-common-white);
  font-weight: var(--bd-fw-sbold);
  font-size: 16px;
  text-transform: uppercase;
  padding: 0 30px;
  /* display: inline-block; */
  border-radius: 6px;
  line-height: 60px;
  height: 60px;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.bd-ud-btn i {
  margin-left: 15px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .bd-ud-btn {
    padding: 14px 24px; /* slightly smaller */
    font-size: 14px;
  }
}


.bd-ud-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.bd-ud-btn i {
  font-size: 14px;
  line-height: 1;
}

.bd-ud-btn:hover {
  background-position: 100% 0;
  color: var(--clr-common-white);
}

.bd-ud-btn-border {
  background: transparent;
  color: var(--clr-theme-1);
  font-weight: var(--bd-fw-sbold);
  font-size: 16px;
  text-transform: uppercase;
  padding: 0 30px;
  display: inline-block;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  line-height: 60px;
  height: 60px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border: 2px solid var(--clr-theme-1);
}
.bd-ud-btn-border i {
  margin-left: 15px;
}
.bd-ud-btn-border:hover {
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
}

.bd-ud-btn-white {
  background: var(--clr-common-white);
  color: var(--clr-theme-1);
  font-weight: var(--bd-fw-sbold);
  font-size: 16px;
  text-transform: uppercase;
  padding: 0 30px;
  display: inline-block;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  line-height: 61px;
  height: 60px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.bd-ud-btn-white i {
  margin-left: 15px;
}
.bd-ud-btn-white:hover {
  background: var(--clr-common-black);
  color: var(--clr-common-white);
}

.et-btn-4 {
  text-transform: uppercase;
  font-weight: var(--bd-fw-medium);
  font-size: 16px;
  color: var(--clr-text-11);
  display: inline-block;
  position: relative;
  background: var(--clr-common-white);
  padding: 7px 0px;
}
.et-btn-4::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -32%;
  border: 1px solid var(--clr-border-13);
  z-index: -1;
  width: 102px;
  height: 70px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.et-btn-4 i {
  margin-left: 20px;
}
.et-btn-4:hover {
  color: var(--clr-theme-1);
}
.et-btn-4:hover::before {
  border-color: var(--clr-theme-1);
  left: -15%;
}

.blue-btn a {
  display: inline-block;
  padding: 18px 30px;
  color: var(--clr-common-white);
  background-color: var(--clr-theme-1);
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  z-index: 2;
  height: 60px;
}
.blue-btn a i {
  margin-left: 15px;
}
.blue-btn a::after {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 0;
  content: "";
  background-color: var(--clr-bg-1);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  z-index: -1;
}
.blue-btn a:focus, .blue-btn a::hover {
  color: ar(--clr-common-white);
  background-color: transparent;
}
.blue-btn a:hover::after {
  width: 100%;
  left: 0;
}

.et-view-btn {
  font-size: 16px;
  color: var(--clr-bg-1);
  font-weight: var(--bd-fw-sbold);
  text-transform: capitalize;
}
.et-view-btn i {
  padding-left: 0px;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  opacity: 0;
  visibility: hidden;
  display: inline-block;
}
.et-view-btn:hover {
  color: var(--clr-theme-1);
}
.et-view-btn:hover i {
  padding-left: 10px;
  opacity: 1;
  visibility: visible;
}

.et-btn-5 {
  border: 1px solid var(--clr-common-white);
  display: inline-block;
}
.et-btn-5 a {
  background: var(--clr-common-white);
  height: 73px;
  display: inline-block;
  line-height: 73px;
  padding: 0 42px;
  position: relative;
  z-index: 1;
  text-transform: capitalize;
  color: #000000;
  -webkit-transform: translate(16px, 13px);
  -moz-transform: translate(16px, 13px);
  -ms-transform: translate(16px, 13px);
  -o-transform: translate(16px, 13px);
  transform: translate(16px, 13px);
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.et-btn-5:hover {
  border-color: var(--clr-theme-1);
}
.et-btn-5:hover a {
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
.et-btn-5.blue {
  border-color: var(--clr-theme-1);
}
.et-btn-5.blue a {
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
}

.bd-ud-line {
  border: 1px solid var(--clr-border-17);
}

.bg-css {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  /* height: 300px; */
}

.bd-ud-br-8 {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
}

.bd-ud-br-10 {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
}

.bd-ud-overlay-1 {
  position: relative;
  z-index: 1;
}
.bd-ud-overlay-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--clr-bg-1);
  opacity: 0.5;
  z-index: -1;
}

.section-subtitle {
  font-size: 16px;
  line-height: 24px;
  color: #A89F94;
  text-transform: uppercase;
  font-weight: 500;
}
.section-title {
  font-weight: 500;
  font-size: 55px;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: var(--clr-bg-1);
  color: #ffffff;
}
@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: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-title {
    font-size: 40px;
  }
}
@media (max-width: 450px) {
  .section-title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-title br {
    display: none;
  }
}
.section-title.white-color {
  color: var(--clr-common-white);
}
.section-desc {
  font-size: 18px;
  line-height: 30px;
  text-transform: capitalize;
  color: var(--clr-border-15);
}

.dark .section-subtitle {
  color: var(--clr-common-white);
}
.dark .section-title {
  color: var(--clr-common-white);
}
.dark .section-title.white-color {
  color: var(--clr-common-white);
}
.dark .section-desc {
  color: var(--clr-common-white);
}

.section-shape span {
  position: relative;
}
.section-shape span img {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  display: block;
}

.mr--35 {
  margin-right: -35px;
}

.ml--7 {
  margin-left: -7px;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.fill-black {
  fill: var(--clr-text-11);
}

.fill-theme {
  fill: var(--clr-theme-1);
}

.stroke-white {
  fill: var(--clr-common-white);
}

.has-image {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 2;
}
.has-image::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.et-pagination nav ul {
  display: flex;
  column-gap: 10px;
  flex-wrap: wrap;
}
.et-pagination nav ul li a, .et-pagination nav ul li .current {
  width: 66px;
  height: 66px;
  display: inline-block;
  border: 1px solid var(--clr-border-15);
  line-height: 66px;
  text-align: center;
  border-radius: 50%;
  font-weight: 500;
  font-size: 20px;
  color: var(--clr-bg-1);
}
@media (max-width: 575px) {
  .et-pagination nav ul li a, .et-pagination nav ul li .current {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
  }
}
.et-pagination nav ul li a:hover, .et-pagination nav ul li .current:hover {
  background: var(--clr-theme-1);
  border-color: transparent;
  color: var(--clr-common-white);
}
.et-pagination nav ul li .current {
  background: var(--clr-theme-1);
  border-color: transparent;
  color: var(--clr-common-white);
}

body.dark {
  background: var(--clr-bg-1);
}

/*--- Background color
-----------------------------------------*/
.white-bg {
  background-color: var(--clr-common-white);
}

.black-bg {
  background-color: var(--clr-common-black);
}

.section-bg {
  background-color: var(--clr-common-heading);
}

.grey-bg {
  background-color: var(--clr-bg-grey-1);
}

.grey-bg-2 {
  background-color: var(--clr-bg-grey-2);
}

.footer-bg {
  background-color: var(--clr-bg-footer);
}

/*----------------------------------------*/
/*  05. BUTTTON CSS START
/*----------------------------------------*/
.header__btn-1 {
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--bd-fw-sbold);
  height: 50px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  color: var(--clr-common-heading);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  padding-left: 20px;
  padding-right: 60px;
  background-image: none;
  background-color: var(--clr-common-white);
  border: 2px solid rgb(242, 242, 242);
  z-index: 5;
}
.header__btn-1 i {
  background-color: var(--clr-theme-1);
  position: absolute;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 40px;
  color: var(--clr-common-white);
  font-size: 14px;
  right: 10px;
  top: 50%;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__btn-1::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, var(--clr-theme-3), var(--clr-theme-1), var(--clr-theme-1), var(--clr-theme-3));
  background-size: auto;
  background-size: 300% 100%;
  background-position: 100% 100%;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
}
.header__btn-1:hover {
  color: var(--clr-common-white);
  border-color: transparent;
}
.header__btn-1:hover:after {
  opacity: 1;
  visibility: visible;
}
.header__btn-1:hover i {
  background: var(--clr-common-white);
  color: var(--clr-text-3);
}
.header__btn-1.s-2 {
  padding: 0 30px;
}

.header__btn-2 {
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--bd-fw-sbold);
  height: 50px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  color: var(--clr-common-white);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  padding-left: 20px;
  padding-right: 60px;
  background-image: none;
  background-image: linear-gradient(to right, var(--clr-theme-3), var(--clr-theme-1), var(--clr-theme-1), var(--clr-theme-3));
  background-size: auto;
  background-size: 300% 100%;
  background-position: 100% 100%;
}
.header__btn-2 i {
  background-color: var(--clr-common-white);
  position: absolute;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 40px;
  color: var(--clr-common-heading);
  font-size: 14px;
  right: 10px;
  top: 50%;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__btn-2:hover {
  color: var(--clr-common-white);
  background-position: 0% 100%;
}

.it__btn-2 {
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--bd-fw-sbold);
  height: 60px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  color: var(--clr-common-heading);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  padding-left: 20px;
  padding-right: 70px;
  background-image: none;
  background-position: 100% 100%;
  background-size: 300% 100%;
  background-image: linear-gradient(to right, var(--clr-theme-3), var(--clr-theme-1), var(--clr-theme-1), var(--clr-theme-3));
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  color: var(--clr-common-white);
}
.it__btn-2 i {
  background: var(--clr-theme-1);
  position: absolute;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  color: var(--clr-common-heading);
  font-size: 14px;
  right: 10px;
  top: 50%;
  background-color: var(--clr-common-white);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.it__btn-2.radius {
  border-radius: 50px;
  padding-left: 30px;
  padding-right: 70px;
  font-size: 16px;
}
.it__btn-2.radius i {
  border-radius: 50px;
  right: 10px;
}
.it__btn-2:hover {
  background-position: 0% 100%;
  color: var(--clr-common-white);
}
.it__btn-2:hover i {
  background: var(--clr-common-white);
  color: var(--clr-text-3);
}

.it__btn-3 {
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--bd-fw-sbold);
  height: 60px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  color: var(--clr-common-heading);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  padding-left: 20px;
  padding-right: 70px;
  background-image: none;
  background-color: var(--clr-common-white);
  border: 2px solid rgb(242, 242, 242);
  z-index: 5;
}
.it__btn-3 i {
  background-color: var(--clr-theme-1);
  position: absolute;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  color: var(--clr-common-white);
  font-size: 14px;
  right: 10px;
  top: 50%;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  align-items: center;
  justify-content: center;
}
.it__btn-3::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, var(--clr-theme-3), var(--clr-theme-1), var(--clr-theme-1), var(--clr-theme-3));
  background-size: auto;
  background-size: 300% 100%;
  background-position: 100% 100%;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.it__btn-3.radius {
  border-radius: 50px;
  padding-left: 30px;
  padding-right: 70px;
  font-size: 16px;
  -webkit-box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border: 0;
}
.it__btn-3.radius i {
  border-radius: 50px;
  right: 10px;
  background-image: -moz-linear-gradient(0deg, rgb(11, 218, 253) 0%, rgb(106, 72, 175) 100%);
  background-image: -webkit-linear-gradient(0deg, rgb(11, 218, 253) 0%, rgb(106, 72, 175) 100%);
  background-image: -ms-linear-gradient(0deg, rgb(11, 218, 253) 0%, rgb(106, 72, 175) 1000);
}
.it__btn-3.radius i:hover:after {
  opacity: 1;
  visibility: visible;
}
.it__btn-3.radius span {
  transition: 0.5s;
}
.it__btn-3 .s-2 {
  font-size: 16px;
}
.it__btn-3:hover {
  color: var(--clr-common-white);
  border-color: transparent;
}
.it__btn-3:hover:after {
  opacity: 1;
  visibility: visible;
}
.it__btn-3:hover i {
  background: var(--clr-common-white);
  color: var(--clr-text-3);
}

.it__btn-4 {
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--bd-fw-sbold);
  height: 60px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  border-radius: 6px;
  color: var(--clr-common-white);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  padding-left: 20px;
  padding-right: 100px;
  background-image: none;
  background-color: transparent;
  border: 2px solid rgb(39, 45, 54);
  z-index: 5;
}
.it__btn-4 i {
  background-color: var(--clr-theme-1);
  position: absolute;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  color: var(--clr-common-white);
  font-size: 14px;
  right: 10px;
  top: 50%;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.it__btn-4:hover {
  border-color: transparent;
  color: var(--clr-common-white);
}
.it__btn-4:hover::after {
  opacity: 1;
  visibility: visible;
}
.it__btn-4::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, var(--clr-theme-3), var(--clr-theme-1), var(--clr-theme-1), var(--clr-theme-3));
  background-size: auto;
  background-size: 300% 100%;
  background-position: 100% 100%;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
}

.contact__btn {
  background-image: linear-gradient(to right, var(--clr-theme-3), var(--clr-theme-1), var(--clr-theme-1), var(--clr-theme-3));
  background-position: 100% 100%;
  background-size: 300% 100%;
  width: 100%;
  display: inline-flex;
  height: 60px;
  color: var(--clr-common-white);
  font-size: 14px;
  text-transform: uppercase;
  font-weight: var(--bd-fw-sbold);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.contact__btn.s-2 {
  -webkit-border-radius: 0px 0px 6px 6px;
  -moz-border-radius: 0px 0px 6px 6px;
  -o-border-radius: 0px 0px 6px 6px;
  -ms-border-radius: 0px 0px 6px 6px;
  border-radius: 0px 0px 6px 6px;
  font-size: 16px;
}
.contact__btn:hover {
  background-position: 0% 100%;
  color: var(--clr-common-white);
}

.pricing__btn {
  padding: 0px 39px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: var(--bd-fw-sbold);
  background-image: linear-gradient(to right, var(--clr-theme-3), var(--clr-theme-1), var(--clr-theme-1), var(--clr-theme-3));
  border: none;
  color: var(--clr-common-white);
  background-position: 100% 100%;
  background-size: 300% 100%;
}
.pricing__btn:hover {
  background-position: 0% 100%;
  color: var(--clr-common-white);
}

.comment__btn {
  padding: 0px 30px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: var(--bd-fw-sbold);
  background-image: linear-gradient(to right, var(--clr-theme-3), var(--clr-theme-1), var(--clr-theme-1), var(--clr-theme-3));
  border: none;
  color: var(--clr-common-white);
  background-position: 100% 100%;
  background-size: 300% 100%;
}
.comment__btn:hover {
  background-position: 0% 100%;
  color: var(--clr-common-white);
}

/*----------------------------------------*/
/* 06. CAROUSEL CSS START
/*----------------------------------------*/
.case__study-nav {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 15px;
  position: absolute;
  top: -125px;
  right: 0;
  z-index: 55;
  border: 2px solid var(--clr-border-2);
  padding: 10px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
}
@media (max-width: 575px) {
  .case__study-nav {
    display: none;
  }
}
.case__study-nav button {
  width: 40px;
  height: 40px;
  font-size: 18px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  background-color: var(--clr-border-2);
  color: var(--clr-common-heading);
}
.case__study-nav button:hover {
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
}

.case-study__active-2.swiper-container {
  padding-bottom: 120px;
}
.case-study__active-2 .swiper-scrollbar-drag {
  width: 400px !important;
  background-image: -moz-linear-gradient(0deg, var(--clr-theme-1) 0%, var(--clr-theme-3) 100%);
  background-image: -webkit-linear-gradient(0deg, var(--clr-theme-1) 0%, var(--clr-theme-3) 100%);
  background-image: -ms-linear-gradient(0deg, var(--clr-theme-1) 0%, var(--clr-theme-3) 100%);
  box-shadow: 0px 8px 16px 0px rgba(104, 75, 177, 0.3) !important;
}
.case-study__active-2 .swiper-scrollbar {
  height: 10px !important;
  background: var(--clr-border-5);
  opacity: 1 !important;
  width: 100% !important;
  left: 0 !important;
  bottom: 0 !important;
  position: inherit !important;
  margin-top: 50px;
}

.portfolio__navigation {
  display: flex;
  gap: 10px;
  position: relative;
  z-index: 66;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .portfolio__navigation {
    /* display: none; */
  }
}
.portfolio__navigation button {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  position: relative;
  background-color: var(--clr-bg-grey-4);
  color: var(--clr-common-heading);
  z-index: -1;
}
.portfolio__navigation button::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-image: linear-gradient(to right, #141f2b, #141f2b, var(--clr-theme-1), var(--clr-theme-3));
  background-position: 100% 100%;
  background-size: 300% 100%;
  left: 0;
  top: 0;
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
}
.portfolio__navigation button:hover {
  color: var(--clr-common-white);
}
.portfolio__navigation button:hover:after {
  opacity: 1;
}
.portfolio__navigation.style-2 button {
  background-color: var(--clr-common-white);
}

.testimonial__navigation {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: end;
  gap: 10px;
  position: relative;
  z-index: 55;
  margin-top: 25px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .testimonial__navigation {
    display: none;
  }
}
.testimonial__navigation button {
  width: 60px;
  height: 60px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  position: relative;
  color: var(--clr-common-white);
  background-color: transparent;
  z-index: -1;
  border: 2px solid rgba(255, 255, 255, 0.1);
}
.testimonial__navigation button::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-image: -webkit-linear-gradient(0deg, var(--clr-theme-1) 0%, var(--clr-theme-3) 100%);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  left: 0;
  top: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
}
.testimonial__navigation button:hover {
  background-color: transparent;
  color: var(--clr-common-white);
  border: 2px solid transparent;
}
.testimonial__navigation button:hover:after {
  opacity: 1;
}
.testimonial__navigation.style-2 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #f5f5f5;
  padding: 10px 10px;
  border-radius: 50px;
  bottom: -30px;
}
.testimonial__navigation.style-2 button {
  width: 50px;
  height: 50px;
  background-color: var(--clr-common-white);
  color: var(--clr-common-heading);
}
.testimonial__navigation.style-2 button:hover {
  border-color: transparent;
  color: var(--clr-common-white);
}

/*  */

/* Alternative: Reposition navigation buttons for tablet/mobile */
@media (max-width: 991px) {
  .case__study-nav {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    display: flex !important;
    justify-content: center !important;
    /* margin-top: 40px; */
    margin-bottom: 20px;
    background: transparent;
    border: none;
    padding: 0;
  }
  
  .case__study-nav button {
    width: 45px;
    height: 45px;
    background: var(--clr-bg-grey-3);
    border-radius: 50%;
    margin: 0 10px;
    font-size: 16px;
  }
  
  .case__study-nav button:hover {
    background: var(--clr-theme-1);
    color: white;
  }
}

/* For very small screens, make buttons smaller */
@media (max-width: 575px) {
  .case__study-nav button {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}
/*----------------------------------------*/
/* 07. OFFCANVAS CSS START
/*----------------------------------------*/
.offcanvas__close button {
  height: 45px;
  width: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-common-white);
  font-size: 18px;
  background-image: -webkit-linear-gradient(0deg, var(--clr-theme-1) 0%, var(--clr-theme-3) 100%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
.offcanvas__close button i {
  color: var(--clr-common-white);
}
.offcanvas__info {
  background: var(--clr-common-white) none repeat scroll 0 0;
  border-left: 3px solid var(--clr-theme-1);
  position: fixed;
  right: 0;
  top: 0;
  width: 370px;
  height: 100%;
  -webkit-transform: translateX(calc(100% + 80px));
  -moz-transform: translateX(calc(100% + 80px));
  -ms-transform: translateX(calc(100% + 80px));
  -o-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
  -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
  background-color: var(--clr-bg-black-russian);
}
@media (max-width: 575px) {
  .offcanvas__info {
    width: 300px;
  }
}
.offcanvas__info.info-open {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.offcanvas__logo a img {
  max-width: 180px;
}
.offcanvas__wrapper {
  position: relative;
  height: 100%;
  padding: 30px 30px;
}
@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}
.offcanvas__top {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--clr-border-1);
}
.offcanvas__color {
  margin-bottom: 40px;
}
.offcanvas__color h5 {
  font-size: 22px;
  margin-bottom: 15px;
}
.offcanvas__color input {
  display: none;
}
.offcanvas__color label {
  width: 100%;
  height: 60px;
  background-color: var(--clr-theme-1);
}
.offcanvas__color label:hover {
  cursor: pointer;
}
.offcanvas__color-2 label {
  background-color: var(--bd-theme-2);
}
.offcanvas__search {
  position: relative;
}
.offcanvas__search input {
  width: 100%;
  height: 40px;
  line-height: 40px;
  padding-right: 20px;
  background: transparent;
  border: none;
  outline: none;
  border-bottom: 1px solid var(--clr-border-1);
  font-size: 14px;
  color: var(--clr-common-white);
}
.offcanvas__search input::placeholder {
  color: var(--clr-common-white);
}
.offcanvas__search input:focus {
  border-color: var(--clr-common-white);
}
.offcanvas__search button {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 16px;
  color: var(--clr-common-white);
}
.offcanvas__text p {
  margin-bottom: 25px;
}
.offcanvas__contact h4 {
  font-size: 22px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: var(--bd-fw-bold);
  color: var(--clr-common-white);
}
.offcanvas__contact ul li:not(:last-child) {
  margin-bottom: 20px;
}
.offcanvas__contact ul li:hover i {
  color: var(--clr-common-white);
  border-color: var(--clr-bg-black-russian);
}
.offcanvas__contact ul li:hover i::after {
  opacity: 1;
}
.offcanvas__contact-icon i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  text-align: center;
  border: 1px solid var(--clr-border-1);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  overflow: hidden;
  color: var(--clr-common-white);
  position: relative;
  z-index: 5;
}
.offcanvas__contact-icon i::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-image: -webkit-linear-gradient(0deg, var(--clr-theme-1) 0%, var(--clr-theme-3) 100%);
  z-index: -1;
  opacity: 0;
}
.offcanvas__contact-text a {
  font-size: 16px;
  font-weight: 500;
  color: var(--clr-common-white);
}
.offcanvas__contact-text a:hover {
  color: var(--clr-theme-1);
}
.offcanvas__wallet-btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-common-white);
  padding: 0;
  background-color: var(--clr-theme-1);
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
  padding: 5px 22px;
  padding-right: 24px;
}
.offcanvas__wallet-btn svg {
  width: 16px;
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
  margin-right: 2px;
}
.offcanvas__wallet-btn svg path {
  fill: none;
}
.offcanvas__wallet-btn:hover {
  color: var(--clr-common-white);
  background-color: var(--clr-common-heading);
}
.offcanvas__wallet-btn:hover svg path {
  stroke: var(--clr-common-white);
}
.offcanvas__social {
  margin-bottom: 30px;
}
.offcanvas__social ul li {
  display: inline-block;
}
.offcanvas__social ul li:not(:last-child) {
  margin-right: 5px;
}
.offcanvas__social ul li a {
  display: inline-block;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--clr-border-1);
  color: var(--clr-theme-1);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 5;
}
.offcanvas__social ul li a::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-image: -webkit-linear-gradient(0deg, var(--clr-theme-1) 0%, var(--clr-theme-3) 100%);
  z-index: -1;
  opacity: 0;
  top: 0;
  left: 0;
  z-index: -1;
}
.offcanvas__social ul li a:hover {
  color: var(--clr-common-white);
  border: 1px solid var(--clr-bg-black-russian);
}
.offcanvas__social ul li a:hover::after {
  opacity: 1;
}
.offcanvas__notification-icon a {
  font-size: 14px;
  color: var(--clr-common-heading);
  position: relative;
}
.offcanvas__notification-icon a .notification-count {
  position: absolute;
  top: -4px;
  right: -13px;
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 22px;
  font-size: 12px;
  font-weight: 600;
  background-color: var(--clr-theme-1);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  color: var(--clr-common-white);
  text-align: center;
}
.offcanvas__notification-text p {
  margin-bottom: 0;
  font-weight: 500;
  color: var(--clr-common-heading);
  font-size: 14px;
}
.offcanvas__notification-text p .notification-number {
  color: var(--clr-theme-1);
}
.offcanvas__notification-text p a {
  color: var(--clr-theme-1);
}

.offcanvas-overlay.overlay-open {
  opacity: 0.5;
  visibility: visible;
}

.offcanvas-overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: var(--clr-common-black);
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

/*----------------------------------------*/
/*  09. SECTION TITLE CSS START
/*----------------------------------------*/
.section__title-one h2 {
  font-size: 50px;
  line-height: 1.2;
}
@media (max-width: 575px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .section__title-one h2 {
    font-size: 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section__title-one h2 {
    font-size: 36px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section__title-one h2 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .section__title-one h2 {
    font-size: 30px;
  }
}
.section__title-one.s-2 h2 {
  color: var(--clr-common-white);
}
.section__title-one.s-3 h2 {
  letter-spacing: -1px;
}
.section__title-one span {
  color: var(--clr-theme-1);
  font-size: 14px;
  margin-bottom: 15px;
  display: block;
  font-weight: var(--bd-fw-sbold);
  text-transform: capitalize;
  line-height: 1;
}

.section__title-two span {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  background-image: -webkit-linear-gradient(0deg, var(--clr-theme-1) 0%, var(--clr-theme-3) 100%);
  font-size: 14px;
  font-weight: var(--bd-fw-bold);
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.1);
  padding: 0px 15px;
  height: 27px;
  line-height: 27px;
  display: inline-block;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
  font-family: var(--bd-ff-heading);
  text-transform: capitalize;
  margin-bottom: 15px;
}
.section__title-two.s-2 h2 {
  letter-spacing: -1.5px;
  font-size: 50px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .section__title-two.s-2 h2 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .section__title-two.s-2 h2 {
    font-size: 36px;
  }
}
.section__title-two.s-3 h2 {
  color: var(--clr-common-white);
  font-size: 50px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .section__title-two.s-3 h2 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .section__title-two.s-3 h2 {
    font-size: 35px;
  }
}
.section__title-two.s-3 p {
  background-image: linear-gradient(to right, #141f2b, #141f2b, var(--clr-theme-1), var(--clr-theme-3));
  background-position: 100% 100%;
  background-size: 300% 100%;
  color: var(--clr-common-white);
  font-size: 14px;
  font-weight: var(--bd-fw-bold);
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.1);
  padding: 0px 15px;
  height: 27px;
  line-height: 27px;
  display: inline-block;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
  font-family: var(--bd-ff-heading);
  text-transform: capitalize;
}

.section__subtitle-3 p {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  background-image: linear-gradient(90deg, var(--clr-theme-1) 0%, var(--clr-theme-3) 100%);
  font-weight: 500;
  margin-bottom: 20px;
  -webkit-text-fill-color: transparent;
}
.section__subtitle-3 span::after {
  position: absolute;
  content: "";
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--clr-theme-1);
  bottom: -9px;
  border-radius: 10px;
  z-index: 2;
}

.gradient__subtitle {
  display: inline-block;
  padding-right: 18px;
}
.gradient__subtitle::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 1px;
  left: 100%;
  bottom: 0;
  transform: rotate(-45deg) translateY(5px) translateX(-5px);
  background-image: linear-gradient(to right, var(--clr-theme-1), var(--clr-theme-3));
  background-position: 100%;
  background-size: 300% 100%;
  transform-origin: left;
}
.gradient__subtitle::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background-image: linear-gradient(to right, var(--clr-theme-1), var(--clr-theme-3), var(--clr-theme-1), var(--clr-theme-3));
  background-size: 350%;
}

.section__title-3.s-2 h2 {
  color: var(--clr-common-white);
}
.section__title-3 h2 {
  font-size: 50px;
}
@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: 768px) and (max-width: 991px) {
  .section__title-3 h2 {
    font-size: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section__title-3 h2 {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  .section__title-3 h2 {
    font-size: 36px;
  }
  .section__title-3 h2 br {
    display: none;
  }
}

.bd-ud-section-subtitle span {
  background: linear-gradient(90deg, var(--clr-theme-1) -1.84%, var(--clr-theme-4) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: 18px;
  font-weight: var(--bd-fw-sbold);
  position: relative;
  display: inline-block;
  padding-right: 22px;
  margin-top: 60px;
}
.bd-ud-section-subtitle span::before {
  content: "";
  width: 8px;
  height: 8px;
  background: linear-gradient(90deg, var(--clr-theme-1) -1.84%, var(--clr-theme-4) 100%);
  position: absolute;
  border-radius: 50%;
  top: 57%;
  transform: translateY(-50%);
  right: 0;
}

.bd-ud-section-title h2 {
  font-size: var(--bd-fs-h2);
}
@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: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-ud-section-title h2 {
    font-size: 40px;
  }
  .bd-ud-section-title h2 br {
    display: none;
  }
}
@media (max-width: 575px) {
  .bd-ud-section-title h2 {
    font-size: 30px;
  }
  .bd-ud-section-title h2 br {
    display: none;
  }
}

.bd-ud-section-sm-title h3 {
  font-size: 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: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-ud-section-sm-title h3 br {
    display: none;
  }
}

.bd-ud-section-gradient.two {
  padding-left: 24px;
}
.bd-ud-section-gradient.two::after {
  content: "";
  width: 8px;
  height: 8px;
  background: linear-gradient(90deg, var(--clr-theme-1) -1.84%, var(--clr-theme-4) 100%);
  position: absolute;
  border-radius: 50%;
  top: 57%;
  transform: translateY(-50%);
  left: 0;
}

.bd-ud-section-subtitle2 span {
  font-weight: var(--bd-fw-medium);
  font-size: 16px;
  color: var(--clr-text-23);
}

.dark .bd-ud-section-title h2 {
  color: var(--clr-common-white);
}

/*----------------------------------------*/
/*  04. BREAADCRUMB CSS START
/*----------------------------------------*/
.breadcrumb__area {
  padding-top: 155px;
  padding-bottom: 155px;
  position: relative;
  z-index: 1;
}
.breadcrumb__area:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: transparent;
  opacity: 0.92;
  background-image: linear-gradient(55deg, #684CB1 0%, #0ED5FA 115%);
}
.breadcrumb__menu ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 25px;
  justify-content: center;
}
.breadcrumb__menu ul li {
  list-style: none;
  position: relative;
  line-height: 1;
}
.breadcrumb__menu ul li:not(:last-child):after {
  display: inline-block;
  content: "\f101";
  position: absolute;
  right: -19px;
  top: 50%;
  font-family: var(--bd-ff-fontawesome);
  color: var(--clr-common-white);
  font-size: 14px;
  transform: translateY(-50%);
}
.breadcrumb__menu ul li span {
  font-size: 16px;
  color: var(--clr-common-white);
  text-transform: capitalize;
}
.breadcrumb__menu ul li span a {
  color: var(--clr-common-white);
}
.breadcrumb__menu ul li span a:hover {
  color: var(--clr-theme-1);
}
.breadcrumb__title h2 {
  font-size: 60px;
  color: var(--clr-common-white);
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: capitalize;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .breadcrumb__title h2 {
    font-size: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .breadcrumb__title h2 {
    font-size: 60px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .breadcrumb__title h2 {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .breadcrumb__title h2 {
    font-size: 45px;
  }
}

.bd-ud-breadcrumb__area {
  padding-top: 155px;
  padding-bottom: 155px;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .bd-ud-breadcrumb__area {
    padding-top: 115px;
    padding-bottom: 120px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-ud-breadcrumb__area {
    padding-top: 70px;
    padding-bottom: 100px;
  }
}
.bd-ud-breadcrumb__area:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: var(--clr-bg-1);
  opacity: 0.6;
}
.bd-ud-breadcrumb__menu ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 25px;
}
.bd-ud-breadcrumb__menu ul li {
  list-style: none;
  position: relative;
  padding-right: 6px;
  line-height: 1;
}
.bd-ud-breadcrumb__menu ul li:not(:last-child):after {
  display: inline-block;
  content: "\f10f";
  position: absolute;
  right: -19px;
  top: 50%;
  font-family: flaticon_eurtech_update !important;
  color: var(--clr-common-white);
  font-size: 14px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.bd-ud-breadcrumb__menu ul li span {
  font-size: 16px;
  color: var(--clr-common-white);
  text-transform: capitalize;
  font-weight: var(--bd-fw-medium);
}
.bd-ud-breadcrumb__menu ul li span a {
  color: var(--clr-common-white);
}
.bd-ud-breadcrumb__menu ul li span a:hover {
  color: var(--clr-theme-1);
}
.bd-ud-breadcrumb__title h2 {
  font-size: 55px;
  color: var(--clr-common-white);
  margin-bottom: 22px;
  text-transform: capitalize;
  font-weight: var(--bd-fw-sbold);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-ud-breadcrumb__title h2 {
    font-size: 45px;
  }
}
.bd-ud-breadcrumb-shape-1 {
  bottom: 45px;
  left: 50px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .bd-ud-breadcrumb-shape-1 {
    max-width: 300px;
  }
}
@media (max-width: 575px) {
  .bd-ud-breadcrumb-shape-1 {
    max-width: 185px;
    left: 0;
  }
}
.bd-ud-breadcrumb-shape-2 {
  right: 0;
  bottom: 45px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .bd-ud-breadcrumb-shape-2 {
    max-width: 245px;
  }
}
@media (max-width: 575px) {
  .bd-ud-breadcrumb-shape-2 {
    max-width: 150px;
  }
}

/*----------------------------------------*/
/*  02.ANIMATION CSS START
/*----------------------------------------*/
@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes popupBtn {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.4;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}
/* ========= video-ripple ========== */
@keyframes video-ripple {
  0%, 35% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}
@-webkit-keyframes video-ripple {
  0%, 35% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}
/* ========= zoom-rotate ========== */
@keyframes et-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes UpDown {
  0% {
    transform: translateY(-30px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(-30px);
  }
}
/*----------------------------------------*/
/*  08. PRELODER CSS START
/*----------------------------------------*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--clr-common-white);
  z-index: 9999;
}

.preloader .color-1 {
  background-color: var(--clr-theme-1) !important;
}

.rubix-cube {
  border: 1px solid var(--clr-common-white);
  width: 48px;
  height: 48px;
  background-color: var(--clr-common-white);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.rubix-cube .layer {
  width: 14px;
  height: 14px;
  background-color: var(--clr-theme-1);
  border: 1px solid var(--clr-common-white);
  position: absolute;
}

.rubix-cube .layer-1 {
  left: 0px;
  top: 0px;
  -webkit-animation: rubixcube4 2s infinite linear;
  animation: rubixcube4 2s infinite linear;
}

.rubix-cube .layer-2 {
  left: 16px;
  top: 0px;
  -webkit-animation: rubixcube3 2s infinite linear;
  animation: rubixcube3 2s infinite linear;
}

.rubix-cube .layer-3 {
  left: 32px;
  top: 0px;
}

.rubix-cube .layer-4 {
  left: 0px;
  top: 16px;
  -webkit-animation: rubixcube5 2s infinite linear;
  animation: rubixcube5 2s infinite linear;
}

.rubix-cube .layer-5 {
  left: 16px;
  top: 16px;
  -webkit-animation: rubixcube2 2s infinite linear;
  animation: rubixcube2 2s infinite linear;
}

.rubix-cube .layer-6 {
  left: 32px;
  top: 16px;
  -webkit-animation: rubixcube1 2s infinite linear;
  animation: rubixcube1 2s infinite linear;
}

.rubix-cube .layer-7 {
  left: 0px;
  top: 32px;
  -webkit-animation: rubixcube6 2s infinite linear;
  animation: rubixcube6 2s infinite linear;
}

.rubix-cube .layer-8 {
  left: 16px;
  top: 32px;
  -webkit-animation: rubixcube7 2s infinite linear;
  animation: rubixcube7 2s infinite linear;
}

@-webkit-keyframes rubixcube1 {
  20% {
    top: 16px;
    left: 32px;
  }
  30% {
    top: 32px;
    left: 32px;
  }
  40% {
    top: 32px;
    left: 32px;
  }
  50% {
    top: 32px;
    left: 32px;
  }
  60% {
    top: 32px;
    left: 32px;
  }
  70% {
    top: 32px;
    left: 32px;
  }
  80% {
    top: 32px;
    left: 32px;
  }
  90% {
    top: 32px;
    left: 32px;
  }
  100% {
    top: 32px;
    left: 16px;
  }
}
@keyframes rubixcube1 {
  20% {
    top: 16px;
    left: 32px;
  }
  30% {
    top: 32px;
    left: 32px;
  }
  40% {
    top: 32px;
    left: 32px;
  }
  50% {
    top: 32px;
    left: 32px;
  }
  60% {
    top: 32px;
    left: 32px;
  }
  70% {
    top: 32px;
    left: 32px;
  }
  80% {
    top: 32px;
    left: 32px;
  }
  90% {
    top: 32px;
    left: 32px;
  }
  100% {
    top: 32px;
    left: 16px;
  }
}
@-webkit-keyframes rubixcube2 {
  30% {
    left: 16px;
  }
  40% {
    left: 32px;
  }
  50% {
    left: 32px;
  }
  60% {
    left: 32px;
  }
  70% {
    left: 32px;
  }
  80% {
    left: 32px;
  }
  90% {
    left: 32px;
  }
  100% {
    left: 32px;
  }
}
@keyframes rubixcube2 {
  30% {
    left: 16px;
  }
  40% {
    left: 32px;
  }
  50% {
    left: 32px;
  }
  60% {
    left: 32px;
  }
  70% {
    left: 32px;
  }
  80% {
    left: 32px;
  }
  90% {
    left: 32px;
  }
  100% {
    left: 32px;
  }
}
@-webkit-keyframes rubixcube3 {
  30% {
    top: 0px;
  }
  40% {
    top: 0px;
  }
  50% {
    top: 16px;
  }
  60% {
    top: 16px;
  }
  70% {
    top: 16px;
  }
  80% {
    top: 16px;
  }
  90% {
    top: 16px;
  }
  100% {
    top: 16px;
  }
}
@keyframes rubixcube3 {
  30% {
    top: 0px;
  }
  40% {
    top: 0px;
  }
  50% {
    top: 16px;
  }
  60% {
    top: 16px;
  }
  70% {
    top: 16px;
  }
  80% {
    top: 16px;
  }
  90% {
    top: 16px;
  }
  100% {
    top: 16px;
  }
}
@-webkit-keyframes rubixcube4 {
  50% {
    left: 0px;
  }
  60% {
    left: 16px;
  }
  70% {
    left: 16px;
  }
  80% {
    left: 16px;
  }
  90% {
    left: 16px;
  }
  100% {
    left: 16px;
  }
}
@keyframes rubixcube4 {
  50% {
    left: 0px;
  }
  60% {
    left: 16px;
  }
  70% {
    left: 16px;
  }
  80% {
    left: 16px;
  }
  90% {
    left: 16px;
  }
  100% {
    left: 16px;
  }
}
@-webkit-keyframes rubixcube5 {
  60% {
    top: 16px;
  }
  70% {
    top: 0px;
  }
  80% {
    top: 0px;
  }
  90% {
    top: 0px;
  }
  100% {
    top: 0px;
  }
}
@keyframes rubixcube5 {
  60% {
    top: 16px;
  }
  70% {
    top: 0px;
  }
  80% {
    top: 0px;
  }
  90% {
    top: 0px;
  }
  100% {
    top: 0px;
  }
}
@-webkit-keyframes rubixcube6 {
  70% {
    top: 32px;
  }
  80% {
    top: 16px;
  }
  90% {
    top: 16px;
  }
  100% {
    top: 16px;
  }
}
@keyframes rubixcube6 {
  70% {
    top: 32px;
  }
  80% {
    top: 16px;
  }
  90% {
    top: 16px;
  }
  100% {
    top: 16px;
  }
}
@-webkit-keyframes rubixcube7 {
  80% {
    left: 16px;
  }
  90% {
    left: 0px;
  }
  100% {
    left: 0px;
  }
}
@keyframes rubixcube7 {
  80% {
    left: 16px;
  }
  90% {
    left: 0px;
  }
  100% {
    left: 0px;
  }
}
/*----------------------------------------*/
/*  23. MEAN MENU CSS START
/*----------------------------------------*/
/* mean menu customize */
.mean-container a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
}

.mean-container .mean-nav > ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 15px 0;
  color: var(--clr-common-black);
  border-top: 1px solid #344166;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--clr-common-white);
}
.mean-container .mean-nav ul li a:hover {
  color: var(--clr-theme-1);
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !important;
  border: 1px solid #ebebeb !important;
  height: 30px;
  width: 30px;
  color: var(--clr-common-white);
  top: 5px;
  font-weight: 400;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: space-evenly;
}
.mean-container .mean-nav ul li a.mean-expand:hover {
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
  border: 1px solid var(--clr-theme-1) !important;
}

.mean-container .mean-nav ul li > a > i {
  display: none;
  font-size: 16px;
  font-weight: 500;
}

.mean-container .mean-nav ul li > a.mean-expand i {
  display: inline-block;
}

.mean-container .mean-nav > ul > li:first-child > a {
  border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked {
  color: var(--clr-common-white);
  background-color: var(--clr-theme-1);
  border: 1px solid var(--clr-theme-1) !important;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  color: var(--clr-common-white);
}

/*----------------------------------------*/
/*  20. HEADER CSS START
/*----------------------------------------*/
.sticky {
  position: fixed;
  top: 0;
  background: var(--clr-common-white);
  z-index: 800;
  right: 0;
  left: 0;
  width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-box-shadow: 0 0 60px 0 rgba(53, 57, 69, 0.15);
  -moz-box-shadow: 0 0 60px 0 rgba(53, 57, 69, 0.15);
  -ms-box-shadow: 0 0 60px 0 rgba(53, 57, 69, 0.15);
  -o-box-shadow: 0 0 60px 0 rgba(53, 57, 69, 0.15);
  box-shadow: 0 0 60px 0 rgba(53, 57, 69, 0.15);
  animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
}
.sticky .header__widget-wrapper {
  display: none;
}
.sticky .header__widget-main {
  padding: 0px 0;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .sticky .header__widget-main {
    padding: 20px 0;
  }
}
.sticky .hidden__header {
  display: block;
}
.sticky .main-menu ul li a {
  padding: 38px 0;
}

.hidden__header {
  display: none;
}

.hidden__header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .hidden__header-inner {
    justify-content: end;
  }
}

.sticky.sticky__header-area {
  display: block !important;
  background-color: var(--clr-common-heading);
}

.sticky__header-area .bar-icon span {
  background: var(--clr-common-white);
}

.header__transparent {
  position: absolute;
  left: 0;
  margin: auto;
  top: 130px;
  width: 100%;
  z-index: 99;
  background: transparent;
}
.header__transparent-2 {
  position: absolute;
  left: 0;
  margin: auto;
  top: 0;
  width: 100%;
  z-index: 99;
  background: transparent;
}

.header-top__area {
  background-color: var(--clr-bg-black-russian);
}

.topbar__social ul {
  display: flex;
  align-items: center;
  gap: 15px;
}
.topbar__social ul li a {
  color: var(--clr-text-1);
  font-size: 14px;
}
.topbar__social ul li a:hover {
  color: var(--clr-theme-1);
}
.topbar__link {
  display: flex;
  align-items: center;
  gap: 70px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .topbar__link {
    gap: 30px;
  }
}
.topbar__link a {
  color: var(--clr-common-white);
  font-size: 14px;
}
.topbar__link a:hover {
  color: var(--clr-theme-1);
}
.topbar__link a:not(:last-child) {
  position: relative;
}
.topbar__link a:not(:last-child)::before {
  position: absolute;
  content: "";
  height: 16px;
  width: 1px;
  background: var(--clr-border-1);
  left: 60px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .topbar__link a:not(:last-child)::before {
    left: 40px;
  }
}
.topbar__text p {
  font-size: 14px;
  margin-bottom: 0;
}
.topbar__text strong {
  color: var(--clr-common-heading);
}
.topbar__style-2 .header-top__area {
  background: var(--clr-common-white);
  padding: 6.5px 1px;
  border-bottom: 1px solid var(--clr-border-5);
}
.topbar__style-2 .topbar__link {
  gap: 30px;
}
.topbar__style-2 .topbar__link a {
  color: var(--clr-common-heading);
  font-weight: var(--bd-fw-sbold);
}
.topbar__style-2 .topbar__link a:not(:last-child)::before {
  position: inherit;
}

.header__widget-main {
  padding: 20px 0;
}
.header__widget-main-2 {
  padding: 20px 40px;
  background-color: var(--clr-common-white);
  -webkit-box-shadow: 0px 0px 80px 20px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 80px 20px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0px 0px 80px 20px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0px 0px 80px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 80px 20px rgba(0, 0, 0, 0.1);
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .header__widget-main-2 {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .header__widget-main-2 {
    padding: 20px 0px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header__widget-main-2 {
    padding: 20px 20px;
  }
}
.header__widget-wrapper {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 50px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header__widget-wrapper {
    gap: 20px;
  }
}
.header__widget-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .header__widget-info {
    display: none;
  }
}
.header__widget-content span {
  color: #aaa;
  line-height: 1;
  display: block;
  margin-bottom: 3px;
}
.header__widget-content h4 {
  font-size: 18px;
  font-weight: var(--bd-fw-bold);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header__widget-content h4 {
    font-size: 16px;
  }
}
.header__widget-content h4 a:hover {
  color: var(--clr-theme-1);
}

.header__lang-selected {
  font-size: 14px;
  height: 40px;
  background: var(--clr-theme-1);
  display: inline-flex;
  padding: 0 37px 0 20px;
  color: var(--clr-common-white);
  align-items: center;
  line-height: 1;
  text-transform: capitalize;
  position: relative;
  cursor: pointer;
}
.header__lang-selected:after {
  position: absolute;
  content: "\f063";
  font-family: var(--bd-ff-fontawesome);
  right: 20px;
  font-size: 14px;
  top: 50%;
  transform: translateY(-50%);
}
.header__lang-list {
  background-color: var(--clr-common-white);
  position: absolute;
  top: 100%;
  right: 0;
  padding: 9px 18px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
  -moz-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
  -ms-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
  -o-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
  box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
}
.header__lang-list li {
  font-size: 14px;
  line-height: 1;
  padding: 5px 0;
  cursor: pointer;
}
.header__lang:hover .header__lang-list {
  visibility: visible;
  opacity: 1;
}

.header__main-wrapper {
  -webkit-box-shadow: 0 -40px 40px 25px rgba(0, 0, 0, 0.04);
  -moz-box-shadow: 0 -40px 40px 25px rgba(0, 0, 0, 0.04);
  -ms-box-shadow: 0 -40px 40px 25px rgba(0, 0, 0, 0.04);
  -o-box-shadow: 0 -40px 40px 25px rgba(0, 0, 0, 0.04);
  box-shadow: 0 -40px 40px 25px rgba(0, 0, 0, 0.04);
  background-color: var(--clr-common-white);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
}
.header__main-wrapper-2 {
  background-color: var(--clr-common-heading);
  border-radius: 0px 0px 6px 6px;
  padding: 0px 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .header__main-wrapper-2 {
    padding: 0px 20px;
  }
}
.header__main-wrapper-3 {
  -webkit-box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.04);
  -moz-box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.04);
  -ms-box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.04);
  -o-box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.04);
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.04);
  background-color: var(--clr-common-white);
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .header__main-wrapper-3 {
    padding: 20px 0;
  }
}
.header__toggle button {
  background-color: rgb(235, 235, 235);
  -webkit-border-radius: 6px 0px 0px 6px;
  -moz-border-radius: 6px 0px 0px 6px;
  -o-border-radius: 6px 0px 0px 6px;
  -ms-border-radius: 6px 0px 0px 6px;
  border-radius: 6px 0px 0px 6px;
  width: 70px;
  height: 70px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__toggle button i {
  font-size: 28px;
  position: relative;
}
.header__toggle.style-2 button {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: -moz-linear-gradient(0deg, var(--clr-theme-1) 0%, var(--clr-theme-3) 100%);
  background-image: -webkit-linear-gradient(0deg, var(--clr-theme-1) 0%, var(--clr-theme-3) 100%);
  background-image: -ms-linear-gradient(0deg, var(--clr-theme-1) 0%, var(--clr-theme-3) 100%);
  color: var(--clr-common-white);
}

@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .header__area-2 {
    background: var(--clr-common-white);
    -webkit-box-shadow: 0px 0px 80px 20px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 80px 20px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0px 0px 80px 20px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0px 0px 80px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 80px 20px rgba(0, 0, 0, 0.1);
  }
}

.bar-icon {
  width: 20px;
  height: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.bar-icon span {
  width: 100%;
  height: 2px;
  background: #000;
  display: inline-block;
}

.bar-icon span:nth-child(2) {
  margin-left: 9px;
  transition: 0.3s;
}

.bar-icon:hover span:nth-child(2) {
  margin-left: 0;
}

.main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-right: 50px;
}
.main-menu ul li:last-child {
  margin-right: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .main-menu ul li {
    margin-right: 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .main-menu ul li {
    margin-right: 35px;
  }
}
.main-menu ul li a {
  display: inline-block;
  font-size: 14px;
  color: var(--clr-common-heading);
  padding: 27.5px 0;
  font-weight: var(--bd-fw-sbold);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  text-transform: uppercase;
  line-height: 1;
}
.main-menu ul li a:before {
  position: absolute;
  content: "";
  height: 0px;
  width: 2px;
  left: auto;
  right: 0;
  background: var(--clr-theme-1);
  top: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
.main-menu ul li.has-dropdown > a {
  position: relative;
}
.main-menu ul li.has-dropdown > a::after {
  content: "+";
  -webkit-transform: translateY(1px);
  -moz-transform: translateY(1px);
  -ms-transform: translateY(1px);
  -o-transform: translateY(1px);
  transform: translateY(1px);
  font-size: 14px;
  color: var(--clr-text-5);
  font-family: var(--bd-ff-fontawesome);
  font-weight: 400;
  margin-left: 5px;
  color: var(--clr-common-heading);
  display: inline-block;
}
.main-menu ul li .submenu {
  position: absolute;
  top: 120%;
  left: 0;
  width: 220px;
  padding: 15px 0;
  padding-bottom: 15px;
  background: var(--clr-common-white);
  border-top: 3px solid var(--clr-theme-1);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-box-shadow: 0px 30px 70px 0px rgba(11, 6, 70, 0.08);
  -moz-box-shadow: 0px 30px 70px 0px rgba(11, 6, 70, 0.08);
  -ms-box-shadow: 0px 30px 70px 0px rgba(11, 6, 70, 0.08);
  -o-box-shadow: 0px 30px 70px 0px rgba(11, 6, 70, 0.08);
  box-shadow: 0px 30px 70px 0px rgba(11, 6, 70, 0.08);
  -webkit-border-radius: 0px 0px 6px 6px;
  -moz-border-radius: 0px 0px 6px 6px;
  -o-border-radius: 0px 0px 6px 6px;
  -ms-border-radius: 0px 0px 6px 6px;
  border-radius: 0px 0px 6px 6px;
  visibility: hidden;
  opacity: 0;
  z-index: 11;
}
.main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
}
.main-menu ul li .submenu li.has-dropdown > a::after {
  position: absolute;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%) rotate(-90deg);
  -moz-transform: translateY(-50%) rotate(-90deg);
  -ms-transform: translateY(-50%) rotate(-90deg);
  -o-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
}
.main-menu ul li .submenu li > a {
  width: 100%;
  display: block;
  padding: 10px 25px;
  text-transform: capitalize;
  color: var(--clr-common-heading);
  font-weight: var(--bd-fw-medium);
  text-transform: uppercase;
  position: relative;
}
.main-menu ul li .submenu li > a::after {
  right: 30px;
  -webkit-transform: translateY(-50%) rotate(-90deg);
  -moz-transform: translateY(-50%) rotate(-90deg);
  -ms-transform: translateY(-50%) rotate(-90deg);
  -o-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
}
.main-menu ul li .submenu li > a::before {
  display: none;
}
.main-menu ul li .submenu li .submenu {
  left: 120%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}
.main-menu ul li .submenu li:hover > a {
  color: var(--clr-theme-1);
}
.main-menu ul li .submenu li:hover > a::after {
  color: var(--clr-theme-1);
  -webkit-transform: translateY(-6px) rotate(45deg);
  -moz-transform: translateY(-6px) rotate(45deg);
  -ms-transform: translateY(-6px) rotate(45deg);
  -o-transform: translateY(-6px) rotate(45deg);
  transform: translateY(-6px) rotate(45deg);
}
.main-menu ul li .submenu li:hover > a::before {
  left: 0;
  right: auto;
  width: 100%;
}
.main-menu ul li .submenu li:hover > .submenu {
  left: 100%;
  visibility: visible;
  opacity: 1;
}
.main-menu ul li.menu-last > ul {
  left: auto;
  right: 0;
}
.main-menu ul li:hover > a {
  color: var(--clr-theme-1);
}
.main-menu ul li:hover > a::after {
  color: var(--clr-theme-1);
  -webkit-transform: translateY(-1px) rotate(45deg);
  -moz-transform: translateY(-1px) rotate(45deg);
  -ms-transform: translateY(-1px) rotate(45deg);
  -o-transform: translateY(-1px) rotate(45deg);
  transform: translateY(-1px) rotate(45deg);
}
.main-menu ul li:hover > a:before {
  height: 20px;
}
.main-menu ul li:hover > .submenu {
  top: 100%;
  visibility: visible;
  opacity: 1;
}
.main-menu-2 ul li .submenu {
  background-color: var(--clr-common-heading);
}
.main-menu-2 ul li .submenu li > a {
  color: var(--clr-common-white);
}
.main-menu-2 ul li a {
  color: var(--clr-common-white);
  padding: 33px 0;
}
.main-menu-2 ul li.has-dropdown > a::after {
  color: var(--clr-common-white);
}
.main-menu-2 ul li:hover > a::after {
  color: var(--clr-theme-1);
}
.main-menu-3 {
  margin-right: 85px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .main-menu-3 {
    margin-right: 40px;
  }
}
.main-menu-3 ul li a {
  padding: 38px 0;
}

.search__button {
  position: relative;
}
.search__button a {
  height: 70px;
  width: 70px;
  background-image: -moz-linear-gradient(0deg, var(--clr-theme-1) 0%, var(--clr-theme-3) 100%);
  background-image: -webkit-linear-gradient(0deg, var(--clr-theme-1) 0%, var(--clr-theme-3) 100%);
  background-image: -ms-linear-gradient(0deg, var(--clr-theme-1) 0%, var(--clr-theme-3) 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-common-white);
  -webkit-border-radius: 0px 6px 6px 0px;
  -moz-border-radius: 0px 6px 6px 0px;
  -o-border-radius: 0px 6px 6px 0px;
  -ms-border-radius: 0px 6px 6px 0px;
  border-radius: 0px 6px 6px 0px;
}

.bd-search__toggle {
  position: absolute;
  top: 50px;
  right: 50%;
  padding: 16px 40px 40px 40px;
  background-color: var(--clr-theme-1);
  z-index: 555;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}
.bd-search__form {
  position: absolute;
  top: 80px;
  right: 0;
  padding: 10px 30px 30px 30px;
  background-image: -webkit-linear-gradient(0deg, var(--clr-theme-1) 0%, var(--clr-theme-3) 100%);
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  z-index: 9;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
.bd-search__form input {
  height: 50px;
  width: 270px;
  background: transparent;
  padding-right: 25px;
  border: none;
  border-bottom: 1px solid var(--clr-common-white);
  color: var(--clr-common-white);
}
.bd-search__form input::placeholder {
  color: var(--clr-common-white);
  opacity: 1;
  font-size: 16px;
}
.bd-search__form input::selection {
  color: var(--clr-common-white);
  opacity: 1;
  font-size: 16px;
}
.bd-search__form input:focus {
  border-color: var(--clr-common-white);
}
.bd-search__form button {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  right: 30px;
}
.bd-search__form button i {
  color: var(--clr-common-white);
}

.search__open .bd-search__form {
  opacity: 1;
  visibility: visible;
}
.search__open .header-search__btn {
  opacity: 0;
  transform: scale(0);
}
.search__open .header-search__close {
  transform: scale(1);
  opacity: 1;
}
.search__button {
  position: relative;
}

.header-search__btn {
  font-size: 20px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  transform: scale(1);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.header-search__close {
  cursor: pointer;
  font-size: 20px;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  transform: scale(0);
}

.bd-ud-header-top.style-1 ul {
  line-height: 1;
}
.bd-ud-header-top.style-1 ul li {
  display: inline-block;
}
.bd-ud-header-top.style-1 ul li i {
  color: var(--clr-common-white);
  margin-right: 5px;
}
.bd-ud-header-top.style-1 ul li a {
  color: var(--clr-common-white);
  font-size: 14px;
}
.bd-ud-header-top-page ul li {
  margin-left: 20px;
  position: relative;
  padding-left: 20px;
}
.bd-ud-header-top-page ul li:first-child {
  margin-left: 0;
  padding-left: 0;
}
.bd-ud-header-top-page ul li:first-child::before {
  display: none;
}
.bd-ud-header-top-page ul li::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 2px;
  height: 16px;
  background: var(--clr-text-10);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.bd-ud-header-top-lang {
  margin-left: 46px;
}
.bd-ud-header-top-lang .nice-select {
  background: transparent;
  border: 0;
  color: var(--clr-common-white);
}
.bd-ud-header-top-lang .nice-select::after {
  border-bottom: 2px solid var(--clr-common-white);
  border-right: 2px solid var(--clr-common-white);
  right: 8px;
  top: 48%;
  width: 8px;
  height: 8px;
}
.bd-ud-header-top-lang .nice-select ul li {
  display: block;
  color: var(--clr-common-heading);
}
.bd-ud-header-top-padd {
  padding: 2px 0;
}

.bd-ud-header-middle-info ul {
  display: flex;
  justify-content: end;
}
.bd-ud-header-middle-info ul li {
  position: relative;
  margin-left: 40px;
  padding-left: 40px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .bd-ud-header-middle-info ul li {
    margin-left: 20px;
    padding-left: 20px;
  }
}
.bd-ud-header-middle-info ul li span {
  color: var(--clr-text-13);
  font-size: 14px;
}
.bd-ud-header-middle-info ul li:first-child {
  margin-left: 0;
  padding-left: 0;
}
.bd-ud-header-middle-info ul li:first-child::before {
  display: none;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .bd-ud-header-middle-info ul li:first-child {
    display: none;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-ud-header-middle-info ul li:nth-child(2) {
    margin-left: 0;
    padding-left: 0;
  }
  .bd-ud-header-middle-info ul li:nth-child(2)::before {
    display: none;
  }
}
.bd-ud-header-middle-info ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  background: var(--clr-border-12);
  height: 16px;
  width: 2px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.bd-ud-header-middle-info ul li a {
  font-size: 18px;
  color: var(--clr-text-11);
  font-weight: var(--bd-fw-sbold);
}
.bd-ud-header-middle-info ul li a i {
  color: var(--clr-theme-1);
  font-size: 20px;
  margin-right: 5px;
}
.bd-ud-header-middle-info ul li i {
  margin-right: 10px;
}
.bd-ud-header-middle-info ul li b {
  font-size: 18px;
  font-weight: var(--bd-fw-sbold);
  color: var(--clr-text-11);
}
.bd-ud-header-middle-info ul li span {
  color: var(--clr-text-13);
}
.bd-ud-header-middle-info ul li:hover a {
  color: var(--clr-theme-1);
}

.bd-ud-main-menu nav ul > li {
  display: inline-block;
  margin-right: 40px;
  position: relative;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .bd-ud-main-menu nav ul > li {
    margin-right: 35px;
  }
}
.bd-ud-main-menu nav ul > li:last-child {
  margin-right: 0;
}
.bd-ud-main-menu nav ul > li a {
  font-size: 16px;
  font-weight: var(--bd-fw-medium);
  color: var(--clr-common-white);
  text-transform: uppercase;
  padding: 30px 0;
  display: block;
  position: relative;
  text-decoration: none !important;
}
.bd-ud-main-menu nav ul > li.menu-item-has-children > a::after {
  content: "\f078";
  margin-left: 5px;
  font-family: "font awesome 5 pro";
  font-size: 14px;
}
.bd-ud-main-menu nav ul > li > ul {
  position: absolute;
  top: 120%;
  left: 0;
  width: 250px;
  padding: 20px 0;
  z-index: 10;
  background: var(--clr-bg-1);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border-top: 3px solid var(--clr-theme-1);
  -webkit-box-shadow: 0px 30px 70px 0px rgba(11, 6, 70, 0.08);
  -moz-box-shadow: 0px 30px 70px 0px rgba(11, 6, 70, 0.08);
  -ms-box-shadow: 0px 30px 70px 0px rgba(11, 6, 70, 0.08);
  -o-box-shadow: 0px 30px 70px 0px rgba(11, 6, 70, 0.08);
  box-shadow: 0px 30px 70px 0px rgba(11, 6, 70, 0.08);
  -webkit-border-radius: 0px 0px 6px 6px;
  -moz-border-radius: 0px 0px 6px 6px;
  -o-border-radius: 0px 0px 6px 6px;
  -ms-border-radius: 0px 0px 6px 6px;
  border-radius: 0px 0px 6px 6px;
}
.bd-ud-main-menu nav ul > li > ul > li {
  display: block;
  margin-right: 0;
  padding: 4px 25px;
  position: relative;
}
.bd-ud-main-menu nav ul > li > ul > li a {
  padding: 0;
}
.bd-ud-main-menu nav ul > li > ul > li::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 25px;
  width: 10px;
  height: 2px;
  background: var(--clr-theme-1);
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
}
.bd-ud-main-menu nav ul > li > ul > li > ul {
  left: 100%;
  top: 0 !important;
}
.bd-ud-main-menu nav ul > li > ul > li:hover {
  padding-left: 40px;
}
.bd-ud-main-menu nav ul > li > ul > li:hover::before {
  opacity: 1;
  visibility: visible;
}
.bd-ud-main-menu nav ul > li.menu-last > ul {
  left: auto;
  right: 0;
}
.bd-ud-main-menu nav ul > li:hover > a {
  color: var(--clr-theme-1);
}
.bd-ud-main-menu nav ul > li:hover > ul {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.bd-ud-search__toggle {
  font-size: 20px;
}
.bd-ud-search__toggle i {
  color: var(--clr-common-white);
}
.bd-ud-search__toggle i:hover {
  color: var(--clr-theme-1);
}
.bd-ud-search__toggle .bd-ud-header-search__close {
  opacity: 0;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  margin-left: -22px;
}
.bd-ud-search__toggle:hover {
  color: var(--clr-theme-1);
}
.bd-ud-search__button .bd-search__form {
  top: 57px;
}
.bd-ud-search__button .bd-search__form.style-2 {
  top: 65px;
  border-radius: 6px;
}
.bd-ud-search__button.search__open .bd-ud-header-search__close {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  color: var(--clr-theme-1);
}
.bd-ud-search__button.search__open .bd-ud-header-search__btn {
  opacity: 0;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}
.bd-ud-header-bottom-cart a {
  color: var(--clr-common-white);
  font-size: 20px;
}
.bd-ud-header-bottom-cart a:hover {
  color: var(--clr-theme-1);
}
.bd-ud-header-bottom-cta-item {
  margin-left: 45px;
}
@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: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-ud-header-bottom-cta-item {
    margin-left: 25px;
  }
}
.bd-ud-header-bottom-cta-item:first-child {
  margin-left: 0;
  margin-top: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-ud-hm-padd {
    padding: 20px 0;
  }
}
.bd-ud-main-menu.style-2 {
  text-align: center;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .bd-ud-main-menu.style-2 {
    text-align: right;
  }
}
.bd-ud-main-menu.style-2 nav > ul > li > a {
  padding: 35px 0px;
}
.bd-ud-main-menu.style-2 nav > ul > li ul {
  text-align: start;
}

.et-header-border-bottom {
  border-bottom: 1px solid #8A8A8A;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .et-header-border-bottom {
    padding-bottom: 15px;
  }
}

.bd-ud-header2-transparent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  width: 100%;
  background: transparent;
}

.bd-ud-sticky {
  position: fixed !important;
  top: 0;
  background: var(--clr-bg-1) !important;
  z-index: 800;
  right: 0;
  left: 0;
  width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-box-shadow: 0 0 60px 0 rgba(53, 57, 69, 0.15);
  -moz-box-shadow: 0 0 60px 0 rgba(53, 57, 69, 0.15);
  -ms-box-shadow: 0 0 60px 0 rgba(53, 57, 69, 0.15);
  -o-box-shadow: 0 0 60px 0 rgba(53, 57, 69, 0.15);
  box-shadow: 0 0 60px 0 rgba(53, 57, 69, 0.15);
  animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
}
.bd-ud-sticky .et-header-border-bottom {
  border-bottom: 1px solid transparent;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-ud-sticky .et-header-border-bottom {
    padding-bottom: 0;
  }
}

.bd-ud-sticky-2 {
  position: fixed !important;
  top: 0;
  background: var(--clr-common-white);
  z-index: 800;
  right: 0;
  left: 0;
  width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-box-shadow: 0 0 60px 0 rgba(53, 57, 69, 0.15);
  -moz-box-shadow: 0 0 60px 0 rgba(53, 57, 69, 0.15);
  -ms-box-shadow: 0 0 60px 0 rgba(53, 57, 69, 0.15);
  -o-box-shadow: 0 0 60px 0 rgba(53, 57, 69, 0.15);
  box-shadow: 0 0 60px 0 rgba(53, 57, 69, 0.15);
  animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
}
.bd-ud-sticky-2.black {
  background: #000;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .main-menu-4 {
    text-align: end;
  }
}
.main-menu-4 nav ul li a {
  color: #161A33;
}
.main-menu-4 nav ul li ul {
  background: var(--clr-common-white);
  text-align: start;
}

.main-menu-5 nav ul li a {
  color: #C5C5C5;
  padding: 40px 0;
}
.main-menu-5 nav ul li ul {
  background: var(--clr-common-white);
  text-align: start;
}
.main-menu-5 nav ul li ul li a {
  color: #000;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .et-header4-mobile-padd {
    padding: 20px 0;
  }
}

.sidebar__toggle i {
  font-size: 25px;
}

.sidebar__bar {
  transform: translate(4px, 4px);
}
.sidebar__bar span {
  display: block;
  width: 29px;
  height: 2px;
  background: var(--clr-common-white);
  margin: 9px 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .sidebar__bar span {
    margin: 6px 0;
    width: 25px;
  }
}

.sidebar__bar-border {
  position: relative;
  cursor: pointer;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .sidebar__bar-border {
    margin-right: 32px;
  }
}
.sidebar__bar-border::before, .sidebar__bar-border::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 73px;
  height: 73px;
  border: 1px solid var(--clr-common-white);
  transform: translate(-50%, -50%);
  -webkit-transition: all 1s ease-out 0s;
  -moz-transition: all 1s ease-out 0s;
  -ms-transition: all 1s ease-out 0s;
  -o-transition: all 1s ease-out 0s;
  transition: all 1s ease-out 0s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .sidebar__bar-border::before, .sidebar__bar-border::after {
    width: 55px;
    height: 55px;
  }
}
.sidebar__bar-border::before {
  transform: translate(-40%, -40%);
}
.sidebar__bar-border:hover::before {
  transform: translate(-50%, -50%);
  border-color: var(--clr-theme-1);
}
.sidebar__bar-border:hover::after {
  transform: translate(-40%, -40%);
  border-color: var(--clr-theme-1);
  z-index: 2;
}

.et-header5-toggle-wrap {
  display: flex;
  justify-content: space-around;
  align-items: center;
  column-gap: 50px;
}
@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: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .et-header5-toggle-wrap {
    justify-content: end;
  }
}
.et-header5-talk a {
  font-weight: 400;
  font-size: 24px;
  color: var(--clr-common-white);
  position: relative;
}
.et-header5-talk a::before, .et-header5-talk a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 2px;
  background: var(--clr-common-white);
}
.et-header5-talk a::after {
  right: 0;
  left: auto;
  width: 50%;
  background: var(--clr-theme-1);
  z-index: -1;
}
.et-header5-talk a span {
  color: var(--clr-theme-1);
}
.et-header5-talk a:hover span {
  color: var(--clr-common-white);
}
.et-header5-talk a:hover::before {
  width: 100%;
  z-index: 1;
  transition: all 1s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .et-header5-mobile-padd {
    padding: 20px 0;
  }
}

/*----------------------------------------*/
/*  21. HERO CSS START
/*----------------------------------------*/
.hero__height {
  min-height: 830px;
}
/* Typewriter Effect for Title */
.bd-ud-breadcrumb__title h2 {
  /* font-family: monospace; */
  overflow: hidden;
  /* border-right: 3px solid #fff;  */
  white-space: nowrap;
  margin: 0 auto;
  letter-spacing: 0.15em;
  opacity: 1;
  animation: 
      typing 1.5s steps(30, end) 0.3s forwards,
      blink-caret 0.75s step-end infinite;
  width: 0;
  padding-bottom: 20px;
}

.about-hero-subtitle {
  animation: fadeIn 0.8s ease-out 1.8s both;
  opacity: 0;
}

.bd-ud-breadcrumb__menu {
  animation: fadeIn 0.8s ease-out 2s both;
  opacity: 0;
}

.bd-ud-breadcrumb-shape-1 {
  animation: fadeIn 1s ease-out 0.2s both;
  opacity: 0;
}

.bd-ud-breadcrumb-shape-2 {
  animation: fadeIn 1s ease-out 0.4s both;
  opacity: 0;
}

/* The typing effect */
@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

/* The typewriter cursor effect */
@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: #fff; }
}

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

/* Responsive adjustment */
@media (max-width: 768px) {
  .bd-ud-breadcrumb__title h2 {
      white-space: normal;
      border-right: none;
      /* animation: none; */
      width: 100%;
  }
  
  .about-hero-subtitle {
      animation: fadeIn 0.8s ease-out 0.5s both;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .hero__height {
    min-height: 550px;
  }
}
.hero__height-2 {
  min-height: 970px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero__height-2 {
    min-height: 680px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .hero__height-2 {
    min-height: 600px;
  }
}
@media (max-width: 575px) {
  .hero__height-2 {
    min-height: 550px;
  }
}
.hero__bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .hero__bg {
    background-position: left;
  }
}
.hero__content {
  margin-top: 45px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .hero__content {
    margin-top: 0;
  }
}
.hero__content > span {
  font-size: 20px;
  font-weight: var(--bd-fw-light);
  margin-bottom: 6px;
  display: block;
}
.hero__content h2 {
  font-size: 120px;
  line-height: 1.2;
  letter-spacing: -1px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .hero__content h2 {
    font-size: 100px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero__content h2 {
    font-size: 100px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .hero__content h2 {
    font-size: 80px;
  }
}
@media (max-width: 575px) {
  .hero__content h2 {
    font-size: 50px;
  }
}
.hero__content p {
  margin-bottom: 45px;
  font-size: 18px;
  opacity: 70%;
}
.hero__content-2 h2 {
  font-size: 80px;
  line-height: 1.1;
  margin-bottom: 35px;
  letter-spacing: -2px;
}
@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: 768px) and (max-width: 991px) {
  .hero__content-2 h2 {
    font-size: 65px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .hero__content-2 h2 {
    font-size: 55px;
  }
}
@media (max-width: 575px) {
  .hero__content-2 h2 {
    font-size: 40px;
  }
}
.hero__content-2 > span {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: -webkit-linear-gradient(0deg, var(--clr-theme-1) 0%, var(--clr-theme-3) 100%);
  font-size: 14px;
  font-weight: var(--bd-fw-bold);
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.1);
  padding: 0px 22px;
  height: 26px;
  line-height: 26px;
  display: inline-block;
  margin-bottom: 20px;
  border-radius: 10px;
}
.hero__content-3 span {
  font-size: 80px;
  font-family: var(--bd-ff-heading);
  font-weight: var(--bd-fw-thin);
  margin-bottom: 25px;
  display: block;
  color: var(--clr-common-heading);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero__content-3 span {
    font-size: 65px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .hero__content-3 span {
    font-size: 55px;
  }
}
@media (max-width: 575px) {
  .hero__content-3 span {
    font-size: 40px;
  }
}
.hero__content-3 h2 {
  font-size: 80px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero__content-3 h2 {
    font-size: 65px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .hero__content-3 h2 {
    font-size: 55px;
  }
}
@media (max-width: 575px) {
  .hero__content-3 h2 {
    font-size: 40px;
  }
}
.hero__btn-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 575px) {
  .hero__btn-wrapper {
    flex-wrap: wrap;
  }
}
.hero__btn-link ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero__video-intro {
  font-size: 16px;
  font-weight: var(--bd-fw-sbold);
  text-transform: uppercase;
  color: var(--clr-common-heading);
}
.hero__video-intro:hover {
  color: var(--clr-theme-1);
}
.hero__video-btn {
  position: relative;
  background: var(--clr-common-white);
  -webkit-box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  font-size: 16px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  text-align: center;
  z-index: 1;
  animation: pulseBig infinite 5s linear;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.hero__video-btn i {
  color: var(--bd-theme-1);
  color: var(--clr-common-heading);
}
.hero__video-btn:hover {
  background-color: var(--clr-theme-1);
}
.hero__video-btn:hover i {
  color: var(--clr-common-white);
}
.hero__video-btn::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  border: 1px solid #eaeaea;
  animation: popupBtn 1.8s linear infinite;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .hero__thumb {
    display: none;
  }
}
.hero__thumb img {
  position: absolute;
  right: 0;
  top: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero__thumb img {
    width: 680px;
    top: 170px;
  }
}
.hero__thumb-shape {
  z-index: -1;
}
.hero__overlay {
  position: relative;
  z-index: 5;
}
.hero__overlay:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: var(--clr-common-white);
  opacity: 0.902;
  z-index: -1;
  top: 0;
}

.hero__contact-wrapper {
  padding: 55px 55px;
  background-color: var(--clr-common-white);
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.04);
  border-radius: 6px;
  position: relative;
  top: -15px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero__contact-wrapper {
    padding: 55px 25px;
  }
}
@media (max-width: 575px) {
  .hero__contact-wrapper {
    padding: 55px 20px;
  }
}

.contact__input {
  position: relative;
}
.contact__input input {
  width: 100%;
  height: 50px;
  padding: 0 40px 0px 20px;
  border: solid 1px var(--clr-border-9);
  border-radius: 6px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.contact__input input::placeholder {
  font-size: 14px;
}
.contact__input input:focus {
  border: double 1px transparent;
  background-image: linear-gradient(#f9f9f9, #f9f9f9), linear-gradient(to right, var(--clr-theme-1), var(--clr-theme-3));
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
.contact__input textarea {
  width: 100%;
  height: 50px;
  padding: 10px 40px 10px 20px;
  border: solid 1px var(--clr-border-9);
  border-radius: 6px;
  outline: none;
  min-height: 120px;
  resize: none;
  font-size: 14px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.contact__input textarea::placeholder {
  font-size: 14px;
}
.contact__input textarea:focus {
  border: double 1px transparent;
  background-image: linear-gradient(#f9f9f9, #f9f9f9), linear-gradient(to right, var(--clr-theme-1), var(--clr-theme-3));
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
.contact__input i {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 14px;
  color: var(--clr-common-heading);
}

.banner__height {
  min-height: 505px;
  position: relative;
  margin-top: -185px;
  z-index: -1;
}

/*----------------------------------------*/
/*  Update hero area css 03 start
/*----------------------------------------*/
.et-slider-height {
  /* min-height: 823px; */
  min-height: 600px;

}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .et-slider-height {
    min-height: 700px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .et-slider-height {
    min-height: 650px;
  }
}
@media (max-width: 575px) {
  .et-slider-height {
    min-height: 600px;
  }
}

.et-hero-slide-1 .has-image {
  transform: scale(1);
  -webkit-transition: all 8s ease-out 0s;
  -moz-transition: all 8s ease-out 0s;
  -ms-transition: all 8s ease-out 0s;
  -o-transition: all 8s ease-out 0s;
  transition: all 8s ease-out 0s;
}
.et-hero-slide-1 .has-image:before {
  background: linear-gradient(100.28deg, var(--clr-common-white) 0.2%, rgba(255, 255, 255, 0) 100%);
}
.et-hero__content {
  position: relative;
  z-index: 5;
}
.et-hero__content .et-btn {
  opacity: 0;
  transform: translateY(80px);
  transition: all 1000ms ease;
}
.et-hero__subtitle {
  font-size: 18px;
  font-weight: 500;
  color: var(--clr-theme-1);
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(-80px);
  transition: all 1000ms ease;
}
.et-hero__subtitle span {
  font-weight: 700;
  display: inline-block;
  margin: 0 6px;
  position: relative;
  padding: 0 3px;
}
.et-hero__subtitle span svg {
  position: absolute;
  left: -11px;
  top: -15px;
}
.et-hero__title {
  font-size: 65px;
  font-weight: 600;
  color: var(--clr-text-11);
  opacity: 0;
  transform: translateX(80px);
  transition: all 1000ms ease;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .et-hero__title {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .et-hero__title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .et-hero__title {
    font-size: 40px;
  }
}
.et-hero__title span {
  font-size: 75px;
  font-weight: 700;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .et-hero__title span {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .et-hero__title span {
    font-size: 36px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .et-hero__title span {
    font-size: 50px;
  }
}
.et-hero__description {
  font-size: 20px;
  color: var(--clr-text-11);
  opacity: 0;
  transform: translateX(-80px);
  transition: all 1000ms ease;
  font-weight: 700;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .et-hero__description br {
    display: none;
  }
}
.et-hero__btn {
  font-size: 16px;
  color: var(--clr-text-11);
  display: inline-block;
  padding: 16px 20px;
  font-weight: 600;
  border: 2px solid var(--clr-text-11);
  border-radius: 5px;
  text-transform: uppercase;
  position: relative;
}
.et-hero__btn i {
  margin-left: 12px;
}
.et-hero__btn.white-btn {
  border: 2px solid var(--clr-common-white);
  color: var(--clr-common-white);
}
.et-hero__btn:focus, .et-hero__btn:hover {
  color: var(--clr-common-white);
  border: 2px solid var(--clr-theme-1);
}
.et-hero__btn:after {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 0;
  content: "";
  background-color: var(--clr-theme-1);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  z-index: -1;
}
.et-hero__btn:hover:after {
  width: 100%;
  left: 0;
}
.et-hero__playbtn.popup-video {
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 16px;
  color: var(--clr-text-11);
  background: none;
  display: inline-block;
  border: 2px solid var(--clr-text-11);
  border-radius: 5px;
  text-align: center;
  animation: none;
}
.et-hero__playbtn.popup-video:focus, .et-hero__playbtn.popup-video:hover {
  color: var(--clr-theme-1);
  border: 2px solid var(--clr-theme-1);
}
.et-hero__playbtn.white-btn {
  border: 2px solid var(--clr-common-white);
  color: var(--clr-common-white);
  border-radius: 50%;
}

.et-hero-phone {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 10;
}

.et-hero-phone .hero-call {
  display: flex;
  align-items: center;
  transform: translateX(223px);
  transition: 0.5s;
  background: #fff;
  border-radius: 5px 0 0 5px;
}

.et-hero-phone .text {
  width: calc(100% - 55px);
  height: 55px;
  padding: 13px 11px;
}

.et-hero-phone .icon {
  width: 55px;
  height: 55px;
  font-size: 18px;
  background-color: transparent;
  line-height: 55px;
  text-align: center;
  color: var(--clr-theme-1);
  border-radius: inherit;
  transition: 0.5s;
}

.et-hero-phone .hero-call a {
  font-size: 18px;
  font-weight: 600;
  color: #161a33;
  padding: 0;
  border-radius: 0;
  display: block;
}

.et-hero-phone .hero-call:hover {
  transform: translateX(0);
}

/*----------------------------------------*/
/*  Update hero area css 04 start
/*----------------------------------------*/
.et-slider-height-2 {
  min-height: 1080px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .et-slider-height-2 {
    min-height: 900px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .et-slider-height-2 {
    min-height: 750px;
  }
}
@media (max-width: 575px) {
  .et-slider-height-2 {
    min-height: 700px;
  }
}

.et-hero-slide-2 .has-image {
  transform: scale(1);
  -webkit-transition: all 8s ease-out 0s;
  -moz-transition: all 8s ease-out 0s;
  -ms-transition: all 8s ease-out 0s;
  -o-transition: all 8s ease-out 0s;
  transition: all 8s ease-out 0s;
}
.et-hero-slide-2 .has-image:before {
  background: var(--clr-bg-1);
  opacity: 0.7;
}
.et-hero-slide-2 h2,
.et-hero-slide-2 h5 {
  color: var(--clr-common-white);
}
.et-hero-slide-2 h2 {
  font-weight: 700;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .et-hero-slide-2 h2 br {
    display: none;
  }
}
@media (max-width: 450px) {
  .et-hero-slide-2 .et-btn {
    flex-direction: column;
  }
}
@media (max-width: 450px) {
  .et-hero-slide-2 .et-btn .et-hero__btn:first-child {
    margin-right: 0;
    margin-bottom: 20px;
  }
}


/* 767px down to 451px */
@media (max-width: 767px) and (min-width: 650px) {
  .et-btn .et-hero__btn {
    font-size: 14px;
  }
}

@media (max-width: 650px) and (min-width: 550px) {
  .et-btn .et-hero__btn {
    font-size: 13px;
  }
}


@media (max-width: 550px) and (min-width: 450px) {
  .et-btn .et-hero__btn {
    font-size: 12px;
    padding: 18px 13px;

  }
}

@media (max-width: 450px) {
  .et-btn {
    flex-direction: column;
    align-items: center;   /* makes buttons full width */
  }

  .et-btn > div {
    width: 100%;
  }

  .et-btn .et-hero__btn {
    width: 80%;            /* or 100% if you want full width */
    /* margin: 0 10 12px 0 !important; */
    font-size: 13px;
    text-align: center;
    margin-left: 35px;
  }

  .et-btn > div:first-child {
    margin-bottom: 15px;   /* gap between buttons */
  }
}

.et-hero-slide-2 .et-hero__playbtn {
  opacity: 0;
  transform: translateX(-80px);
  transition: all 1000ms ease;
}
.et-hero-phone {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 10;
}
.et-hero-phone .hero-call a > i,
.et-hero-phone .message a {
  width: 55px;
  height: 55px;
  font-size: 20px;
  color: var(--clr-theme-1);
  background-color: var(--clr-common-white);
  border-radius: 5px 0 0 5px;
  display: inline-block;
  line-height: 55px;
  text-align: center;
}
.et-hero-phone .hero-call a > i {
  color: var(--clr-common-white);
  background-color: var(--clr-theme-1);
  margin-right: 20px;
}
.et-hero-phone .hero-call a {
  font-size: 18px;
  font-weight: 600;
  color: var(--clr-text-11);
  padding: 0px 20px 0px 0px;
  border-radius: 5px 0 0 5px;
  background: var(--clr-common-white);
  display: block;
}

.slider-trasition .swiper-slide-active .has-image {
  transform: scale(1.2);
}
.slider-trasition .swiper-slide-active h5,
.slider-trasition .swiper-slide-active h2,
.slider-trasition .swiper-slide-active p,
.slider-trasition .swiper-slide-active .et-btn {
  opacity: 1;
}
.slider-trasition .swiper-slide-active h5,
.slider-trasition .swiper-slide-active .et-btn {
  transform: translateY(0);
  transition-delay: 1000ms;
}
.slider-trasition .swiper-slide-active h2,
.slider-trasition .swiper-slide-active p {
  transform: translateX(0);
  transition-delay: 1300ms;
}
.slider-trasition .swiper-slide-active .et-hero-slide-2 .et-hero__playbtn {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1300ms;
}

.et-slider-pagination {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  z-index: 4;
}
.et-slider-pagination span {
  color: var(--clr-common-white);
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  position: relative;
  transform: rotate(-90deg);
  font-weight: 600;
  display: inline-block;
  margin: 0 20px;
}
.et-slider-pagination span:not(:first-child):after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  display: inline-block;
  background: var(--clr-common-white);
  left: 50%;
  top: -22px;
  border-radius: 50%;
  transform: translateX(-50%);
}
.et-slider-pagination span.swiper-pagination-bullet {
  width: auto;
  height: auto;
  background-color: transparent;
  opacity: 1;
}
.et-slider-pagination span.swiper-pagination-bullet-active {
  color: var(--clr-theme-1);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .et-slider-pagination {
    display: none;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-active-four .et-hero__content.style-2 {
    padding-top: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hero-active-four .et-hero__content.style-2 {
    padding-top: 60px;
  }
}
.hero-active-four .et-slider-pagination {
  left: 80px;
  right: auto;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  z-index: 4;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-active-four .et-slider-pagination {
    left: 20px;
  }
}
@media (max-width: 450px) {
  .hero-active-four .et-slider-pagination {
    display: none;
  }
}
.hero-active-four .et-slider-pagination span {
  margin: 0 10px;
  transform: rotate(0deg);
}
.hero-active-four .et-slider-pagination span:after {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  display: inline-block;
  border: 1px solid var(--clr-common-white);
  background: transparent;
  left: 3px;
  top: -5px;
  border-radius: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
}
.hero-active-four .et-slider-pagination span.swiper-pagination-bullet {
  width: 5px;
  height: 5px;
  background-color: var(--clr-common-white);
}
.hero-active-four .et-slider-pagination span.swiper-pagination-bullet-active:after {
  opacity: 1;
  visibility: visible;
}

.brand__actiive .swiper-slide {
	width: auto !important;
}


/*----------------------------------------*/
/*  Update hero area css 05 start
/*----------------------------------------*/
.hero-area-five {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.hero-area-five .et-hero__content h5,
.hero-area-five .et-hero__content h2 {
  opacity: 1;
  transform: none;
}
.hero-area-five .et-hero__content h2 {
  font-size: 65px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-area-five .et-hero__content h2 {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .hero-area-five .et-hero__content h2 {
    font-size: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-area-five .et-hero__content h2 {
    font-size: 40px;
  }
}
.hero-area-five .et-hero__content h2 span {
  font-size: 75px;
  font-weight: 700;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-area-five .et-hero__content h2 span {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .hero-area-five .et-hero__content h2 span {
    font-size: 36px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-area-five .et-hero__content h2 span {
    font-size: 50px;
  }
}
.hero-area-five .et-hero__imgBox {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 538px;
  z-index: 2;
  background-position: 75%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-area-five .et-hero__imgBox {
    background-position: 60%;
    min-height: 450px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-area-five .et-hero__imgBox {
    background-position: 30%;
    min-height: 400px;
  }
}
@media (max-width: 575px) {
  .hero-area-five .et-hero__imgBox {
    background-position: 20%;
    min-height: 360px;
  }
}
.hero-area-five .et-hero__imgBox::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(97.83deg, rgba(14, 132, 225, 0.37) 0%, rgba(151, 71, 255, 0.19) 100%);
  z-index: -1;
}
.hero-area-five .et-hero__shape-img {
  position: absolute;
  top: -190px;
  right: 330px;
  z-index: 2;
}
.hero-area-five .et-hero__video-btn {
  position: absolute;
  top: -80px;
  right: 130px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: var(--clr-common-white);
  z-index: 2;
  display: grid;
  place-items: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hero-area-five .et-hero__video-btn {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-area-five .et-hero__video-btn {
    right: 80px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-area-five .et-hero__video-btn {
    right: 20px;
  }
}
@media (max-width: 575px) {
  .hero-area-five .et-hero__video-btn {
    width: 120px;
    height: 120px;
  }
}
.hero-area-five .et-hero__video-btn::before {
  position: absolute;
  top: -15px;
  left: -15px;
  content: "";
  width: 180px;
  height: 180px;
  border: 2px dashed var(--clr-common-white);
  border-radius: 50%;
  z-index: -1;
}
@media (max-width: 575px) {
  .hero-area-five .et-hero__video-btn::before {
    width: 135px;
    height: 135px;
    top: -7px;
    left: -8px;
  }
}
.hero-area-five .et-hero__playbtn {
  background-color: var(--clr-theme-1);
  border: 0;
  animation: PulseVideo 3s ease infinite;
}
.hero-area-five .et-hero__playbtn:focus, .hero-area-five .et-hero__playbtn:hover {
  border: 0;
  color: var(--clr-common-white);
}

@keyframes PulseVideo {
  0%, 50% {
    box-shadow: 0 0 0 0 var(--clr-theme-1);
  }
  100% {
    box-shadow: 0 0 0 40px transparent;
  }
}
.pt-380 {
  padding-top: 380px;
}

.pb-240 {
  padding-bottom: 240px;
}

.banner4-area::after, .banner4-area::before {
  content: "";
  position: absolute;
  filter: blur(217px);
  z-index: -1;
  border-radius: 50%;
}
.banner4-area::before {
  width: 270px;
  height: 270px;
  left: 87px;
  top: 80px;
  background: linear-gradient(180deg, #F3FAFF 0%, #F79210 100%);
}
@media (max-width: 450px) {
  .banner4-area::before {
    display: none;
  }
}
.banner4-area::after {
  width: 488px;
  height: 488px;
  right: 80px;
  top: 147px;
  background: linear-gradient(180deg, #F3FAFF 0%, #6FBEFD 100%);
  opacity: 0.75;
}
.banner4-subtitle, .banner4-title {
  font-weight: var(--bd-fw-medium);
  color: #161A33;
  text-transform: uppercase;
}
.banner4-subtitle {
  font-size: 20px;
  display: block;
}
.banner4-title {
  font-size: 112px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .banner4-title {
    font-size: 90px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .banner4-title {
    font-size: 80px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner4-title {
    font-size: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner4-title {
    font-size: 50px;
  }
}
@media (max-width: 450px) {
  .banner4-title {
    font-size: 40px;
  }
}
.banner4-title span {
  color: #EF3D1E;
  font-weight: 700;
}
.banner4-rating {
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 84.46%);
  filter: drop-shadow(0px 4px 74px rgba(14, 132, 225, 0.95));
  border-radius: 100px;
  padding: 10px;
  width: 220px;
  gap: 5px;
  position: absolute;
  top: 50%;
  left: 80px;
  transform: translateY(-50%);
  animation: UpDown 3s linear infinite;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner4-rating {
    display: none;
  }
}
.banner4-rating .rating-text p {
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  color: #191919;
}
.banner4-rating .rating-text p i {
  color: #F79210;
  margin-right: 10px;
}
.banner4-space {
  padding-top: 380px;
  padding-bottom: 240px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .banner4-space {
    padding-top: 240px;
    padding-bottom: 200px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .banner4-space {
    padding-top: 200px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner4-space {
    padding-top: 180px;
    padding-bottom: 180px;
  }
}

.pos-rel {
  position: relative;
}

.banner5-title {
  font-size: 85px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--clr-common-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .banner5-title {
    font-size: 70px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner5-title {
    font-size: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner5-title {
    font-size: 48px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner5-title {
    font-size: 40px;
  }
}
@media (max-width: 450px) {
  .banner5-title {
    font-size: 30px;
  }
}

.banner5-text p {
  color: var(--clr-common-white);
  font-size: 20px;
  line-height: 2;
  font-weight: 400;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner5-text p {
    font-size: 16px;
    line-height: 1.8;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner5-text.mb-115 {
    margin-bottom: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner5-text.mb-115 {
    margin-bottom: 60px;
  }
}

.banner5-area {
  z-index: 1;
}
.banner5-area::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--clr-common-black);
  opacity: 0.2;
  z-index: -1;
}

.slider5-height {
  min-height: 1080px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider5-height {
    min-height: 900px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider5-height {
    min-height: 750px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .slider5-height {
    min-height: 700px;
  }
}

.banner5-shape {
  left: -200px;
  top: -57px;
  animation: et-rotate 7s linear infinite;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px), only screen and (min-width: 1400px) and (max-width: 1600px) {
  .banner5-shape {
    left: -13px;
    top: -40px;
  }
}

.banner5-content {
  padding-top: 140px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner5-content {
    padding-top: 70px;
  }
}

.banner5-social-link {
  position: absolute;
  top: 50%;
  right: -148px;
  transform: translateY(-50%) rotate(-90deg);
  display: inline-block;
  z-index: 1;
}
.banner5-social-link a {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: #606060;
  padding: 0px 10px;
  position: relative;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px), only screen and (min-width: 1400px) and (max-width: 1600px), 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: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner5-social-link a {
    color: var(--clr-common-white);
  }
}
.banner5-social-link a::before {
  position: absolute;
  content: "";
  background: #606060;
  width: 1px;
  height: 12px;
  right: 0;
  top: 6px;
}
.banner5-social-link a:last-child::before {
  display: none;
}
.banner5-social-link a:hover {
  color: var(--clr-common-white);
}

/* banner css end */
.et-tsparticles {
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
}

.count-particles {
  background: #000022;
  position: absolute;
  top: 48px;
  left: 0;
  width: 80px;
  color: #13E8E9;
  font-size: 0.8em;
  text-align: left;
  text-indent: 4px;
  line-height: 14px;
  padding-bottom: 2px;
  font-weight: bold;
}

.js-count-particles {
  font-size: 1.1em;
}

#stats,
.count-particles {
  -webkit-user-select: none;
  margin-top: 5px;
  margin-left: 5px;
}

#stats {
  border-radius: 3px 3px 0 0;
  overflow: hidden;
}

.count-particles {
  border-radius: 0 0 3px 3px;
}

#particles-js {
  width: 100%;
  height: 100%;
  background: transparent;
}

/*----------------------------------------*/
/*  10. ABOUT CSS START
/*----------------------------------------*/
.about__right-content {
  padding-left: 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about__right-content {
    padding-left: 30px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .about__right-content {
    padding-left: 0px;
  }
}
.about__left-thumb {
  position: relative;
  text-align: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about__left-thumb {
    text-align: left;
  }
}
.about__left-thumb img {
  margin-top: 50px;
  max-width: 520px;
  width: 100%;
}
@media (max-width: 575px) {
  .about__left-thumb img {
    width: 100%;
  }
}
.about__experience-shape {
  position: absolute;
  top: 0px;
  left: 0;
}
.about__experience-content {
  background-color: #1f242c;
  border-radius: 6px;
  text-align: center;
  padding: 40px 34px;
  position: relative;
  z-index: 9;
}
.about__experience-content h2 {
  color: var(--clr-common-white);
  font-size: 80px;
  line-height: 1.1;
  margin-bottom: 0;
}
.about__experience-content span {
  color: #999;
}
.about__experience-content i {
  font-size: 100px;
  position: absolute;
  left: 0;
  bottom: 1px;
  color: #252a32;
  z-index: -1;
}
.about__quote-content {
  position: relative;
  margin-left: 21px;
}
.about__quote-content h3 {
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  margin-bottom: 13px;
}
.about__quote-content::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  background: var(--clr-theme-1);
  top: 2px;
  left: -20px;
}
.about__quote-author h4 {
  font-size: 14px;
  font-weight: 600;
}
.about__quote-author h4 span {
  color: var(--clr-text-1);
  font-weight: var(--bd-fw-normal);
}
.about__description-text p {
  margin-bottom: 20px;
}

.about__contact__item {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid rgb(240, 240, 240);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .about__contact__item {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.about__contact__item.style-2 {
  border-top: 0;
  padding-top: 20px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgb(240, 240, 240);
}
.about__contact-icon {
  width: 60px;
  height: 60px;
  background: var(--clr-common-white);
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  min-width: 60px;
}
.about__contact-content h4 a {
  font-size: 18px;
  text-transform: uppercase;
}
.about__contact-content h4 a:hover {
  color: var(--clr-theme-1);
}
.about-content span {
  font-size: 14px;
  color: var(--clr-text-2);
  text-transform: capitalize;
}
.about__features-wrapper {
  margin-left: 70px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .about__features-wrapper {
    margin-left: 30px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .about__features-wrapper {
    margin-left: 0;
  }
}
@media (max-width: 575px) {
  .about__features-thumb {
    padding-top: 0;
  }
}
.about__features-shape {
  position: absolute;
  z-index: -1;
  top: -27px;
  left: -49px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about__features-shape {
    left: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .about__features-shape {
    top: 0;
  }
}
@media (max-width: 575px) {
  .about__features-shape {
    display: none;
  }
}

.about__wrapper-3 {
  margin-left: 70px;
  margin-right: 40px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .about__wrapper-3 {
    margin-left: 25px;
    margin-right: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about__wrapper-3 {
    margin-left: 30px;
    margin-right: 0;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .about__wrapper-3 {
    margin-left: 0px;
    margin-right: 0;
  }
}
.about__author-info {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 20px;
  padding-top: 30px;
  flex-wrap: wrap;
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .about__author-info {
    justify-content: start;
  }
}
@media (max-width: 575px) {
  .about__author-info {
    justify-content: start;
    gap: 15px 20px;
  }
}
.about__author-content {
  text-align: right;
}
.about__author-content h4 {
  font-size: 18px;
}
.about__author-content span {
  font-size: 14px;
  color: var(--clr-text-2);
}

.bd-ud-about3-img img {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-ud-about3-wrapper.mr--35 {
    margin-right: 0;
  }
}
.bd-ud-about3-pl {
  padding-right: 80px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-ud-about3-pl {
    padding-right: 0;
  }
}
.bd-ud-about3-icon {
  top: -70px;
  left: -70px;
  z-index: -1;
  animation: UpDown 7s linear infinite;
}
.bd-ud-about3-icon.bottom {
  bottom: -50px;
  top: auto;
}
.bd-ud-about3-experience {
  left: 63px;
  bottom: 90px;
  background: var(--clr-common-white);
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  overflow: hidden;
  min-width: 197px;
}
.bd-ud-about3-experience-num {
  background: var(--clr-theme-1);
  overflow: hidden;
  padding: 25px 0 21px 23px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.bd-ud-about3-experience-num h3 {
  font-size: 46px;
  color: var(--clr-common-white);
  font-weight: var(--bd-fw-sbold);
  line-height: 1;
}
.bd-ud-about3-experience-text {
  padding: 20px 25px;
}
.bd-ud-about3-experience-text h4 {
  font-size: 20px;
  font-weight: var(--bd-fw-sbold);
  color: var(--clr-text-14);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-ud-about3-content-wrapper.pl-70 {
    padding-left: 0;
  }
}
.bd-ud-about3-content-ml {
  margin-left: -45px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-ud-about3-content-ml {
    margin-left: 0;
  }
}
.bd-ud-about3-contact {
  padding-top: 10px;
  padding-bottom: 30px;
}

.bd-ud-app-check-list li {
  position: relative;
  padding-left: 42px;
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 16px;
  color: var(--clr-text-14);
}
.bd-ud-app-check-list li:last-child {
  margin-bottom: 0;
}
.bd-ud-app-check-list li::before {
  content: "\f00c";
  font-family: var(--bd-ff-fontawesome);
  width: 22px;
  height: 22px;
  left: 0;
  top: 50%;
  background: var(--clr-theme-1);
  border-radius: 2px;
  color: var(--clr-common-white);
  display: inline-block;
  text-align: center;
  margin: auto;
  font-weight: var(--bd-fw-black);
  line-height: 22px;
  position: absolute;
  font-size: 13px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.about4-area::before, .about4-area::after {
  content: "";
  position: absolute;
  filter: blur(217px);
  border-radius: 50%;
}
.about4-area::before {
  width: 530px;
  height: 530px;
  left: -100px;
  top: 80px;
  background: linear-gradient(180deg, #F3FAFF 0%, #6FBEFD 100%);
  opacity: 0.6;
}
.about4-area::after {
  width: 608px;
  height: 608px;
  right: -165px;
  bottom: 40px;
  background: linear-gradient(180deg, rgba(243, 250, 255, 0.5) 0%, rgba(239, 61, 30, 0.5) 100%);
  opacity: 0.5;
}
.about4-shapebox .shape1, .about4-shapebox .shape2, .about4-shapebox .shape3 {
  position: absolute;
}
.about4-shapebox .shape1 {
  left: 0;
  top: 100px;
  animation: UpDown 3s linear infinite;
}
.about4-shapebox .shape2 {
  right: 0;
  bottom: 100px;
  animation: UpDown 3s linear infinite;
}
.about4-shapebox .shape3 {
  left: 70px;
  bottom: 100px;
  animation: zoomInOut 3s ease-in-out infinite;
}
.about4-video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.about4-video-btn a {
  display: block;
  width: 130px;
  height: 130px;
  line-height: 130px;
  text-align: center;
  background-color: var(--clr-common-white);
  color: var(--clr-theme-1);
  font-size: 25px;
  border-radius: 50%;
  opacity: 0.6;
}
.about4-video-btn a:hover {
  color: var(--clr-common-white);
  background-color: var(--clr-theme-1);
}
.about4-right .blue-btn a::after {
  background-color: var(--clr-common-white);
}
.about4-right .blue-btn a:hover {
  color: var(--clr-text-11);
}
.about4-counter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .about4-counter {
    display: flex;
    flex-direction: column;
  }
}
.about4-counter-item {
  padding: 33px 30px;
  border: 1px solid #6E728D;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .about4-counter-item {
    padding: 20px;
  }
}
.about4-counter-title {
  text-transform: uppercase;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 18px;
  color: var(--clr-common-white);
  margin-left: 15px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .about4-counter-title {
    font-size: 16px;
  }
}
.about4-counter-number {
  text-transform: uppercase;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 60px;
  line-height: 1;
  color: var(--clr-common-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .about4-counter-number {
    font-size: 40px;
  }
}
.about4-counter-box {
  display: flex;
  align-items: center;
  margin-right: 15px;
}
.about4-counter-box span {
  font-weight: 600;
  font-size: 60px;
  line-height: 1;
  color: var(--clr-common-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .about4-counter-box span {
    font-size: 40px;
  }
}

/* =========================
   ABOUT SECTION — MOBILE CENTER
========================= */
@media (max-width: 768px) {

  .bd-ud-about3-content-wrapper {
    text-align: center !important;
    padding-left: 0 !important;
  }

  .bd-ud-section-title-area,
  .bd-ud-section-title,
  .bd-ud-section-subtitle {
    text-align: center !important;
  }

  .bd-ud-about3-content-inner p {
    text-align: center !important;
  }

  /* checklist center */
  .bd-ud-app-check-list ul {
    display: inline-block;
    text-align: left;   /* keeps check + text readable */
  }

  .bd-ud-app-check-list {
    text-align: center;
  }

  /* button center */
  .bd-ud-about3-btn {
    text-align: center !important;
  }

}


@keyframes zoomInOut {
  0% {
    transform: rotate(0deg) scale(0.7);
    opacity: 0;
  }
  50% {
    transform: rotate(-180deg) scale(1);
    opacity: 1;
  }
  100% {
    transform: rotate(-360deg) scale(0.7);
    opacity: 0;
  }
}
/*----------------------------------------*/
/*  14. COUNTER CSS START
/*----------------------------------------*/
.counter__bg-area {
  position: relative;
  border-radius: 10px;
  z-index: 5;
}
.counter__bg-area::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.902;
  background-image: linear-gradient(to right, #141f2b, #141f2b, var(--clr-theme-1), var(--clr-theme-3));
  background-position: 100% 100%;
  background-size: 300% 100%;
  border-radius: 10px;
}
.counter__item {
  position: relative;
  z-index: 9;
}
.counter__item-two {
  position: relative;
  z-index: 2;
}
.counter__item-two h2 {
  font-size: 80px;
  line-height: 1;
  margin-bottom: 0;
  display: inline-block;
  position: relative;
  background: linear-gradient(to bottom, var(--clr-common-white), rgba(255, 255, 255, 0));
  background-clip: border-box;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}
.counter__item-two i {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  text-align: center;
  line-height: 40px;
  background: var(--clr-common-white);
  color: var(--clr-body-heading);
  margin-bottom: 20px;
}
.counter__item-two p {
  margin-top: -20px;
  color: var(--clr-common-white);
  font-size: 14px;
  font-weight: 500;
  line-height: 26px;
}
.counter__item-number h2 {
  font-size: 80px;
  color: var(--clr-common-white);
  line-height: 1.2;
  margin-bottom: 0;
  display: inline-block;
}
@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: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .counter__item-number h2 {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .counter__item-number h2 {
    font-size: 50px;
  }
}
.counter__item-number p {
  color: var(--clr-common-white);
  font-size: 14px;
  line-height: 1.2;
  font-weight: var(--bd-fw-sbold);
}
.counter__item-number span {
  display: inline-block;
  font-size: 80px;
  color: var(--clr-common-white);
  font-weight: 700;
  position: absolute;
  top: 30px;
}
@media (max-width: 575px) {
  .counter__item-number span {
    font-size: 58px;
    top: 15px;
  }
}
.counter__item-three {
  position: relative;
}
.counter__item-three span {
  color: var(--clr-common-white);
  font-size: 80px;
  position: relative;
  background: linear-gradient(to bottom, var(--clr-common-white), rgba(255, 255, 255, 0));
  background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  font-weight: 700;
  position: absolute;
  top: -25px;
}

.counter__overlay {
  position: relative;
  z-index: 5;
}
.counter__overlay:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: linear-gradient(0deg, var(--clr-theme-1) 0%, var(--clr-theme-3) 100%);
  top: 0;
  left: 0;
  opacity: 0.902;
  z-index: -1;
}
.counter__main-wrapper {
  border-radius: 10px;
  overflow: hidden;
  padding-top: 60px;
}
.counter-icon button {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  text-align: center;
  line-height: 40px;
  background: var(--clr-common-white);
  color: var(--clr-common-heading);
  margin-bottom: 20px;
}
.counter__number {
  position: relative;
}
.counter__number h2 {
  font-size: 80px;
  line-height: 1;
  margin-bottom: 0;
  display: inline-block;
  position: relative;
  background: linear-gradient(to bottom, var(--clr-common-white), rgba(255, 255, 255, 0));
  background-clip: border-box;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px) {
  .counter__number h2 {
    font-size: 65px;
  }
}
.counter__title p {
  color: var(--clr-common-white);
  font-size: 14px;
  font-weight: var(--bd-fw-sbold);
  margin-bottom: 0;
  transform: translateY(-22px);
}

.counter__item-2 .counter__number {
  margin-bottom: 30px;
  margin-bottom: 30px;
}

/*----------------------------------------*/
/*  15. CTA CSS START
/*----------------------------------------*/
.cta__title-wrapper {
  max-width: 615px;
  line-height: 1;
}
.cta__paragraph {
  color: var(--clr-text-9);
  margin-bottom: 0;
}
.cta__contact-inner {
  padding: 60px 0px 52px 0px;
  background-color: var(--clr-common-white);
  text-align: center;
  border-radius: 10px 10px 0px 0px;
}
.cta__contact-icon {
  margin-bottom: 35px;
}
.cta__contact-icon figure {
  position: relative;
}
.cta__contact-icon figure:before {
  position: absolute;
  content: "";
  width: 100px;
  height: 100px;
  border: 1px solid #f3f3f3;
  border-radius: 50px;
  left: 50%;
  transform: translate(-50%, -15px);
  z-index: 2;
}
.cta__contact-icon i {
  position: relative;
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50px;
  color: var(--clr-common-white);
  font-size: 22px;
  background-image: linear-gradient(to right, #141f2b, #141f2b, var(--clr-theme-1), var(--clr-theme-3));
  background-position: 100% 100%;
  background-size: 300% 100%;
  box-shadow: 0px 16px 32px 0px rgba(69, 129, 206, 0.3);
  z-index: 2;
}
.cta__contact-content span {
  font-size: 14px;
}
.cta__contact-content h3 a {
  font-size: 24px;
}
.cta__contact-content h3 a:hover {
  color: var(--clr-theme-1);
}

.bd-ud-cta-technology-item {
  max-width: 100%;
}
.bd-ud-cta-technology-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@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: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-ud-cta-technology-wrapper {
    gap: 25px;
  }
}
.bd-ud-cta-padding {
  padding-top: 120px;
  padding-bottom: 230px;
}
.bd-ud-cta-action-img img {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
}
.bd-ud-cta-action-content {
  position: relative;
}
.bd-ud-cta-action-content::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--clr-bg-1);
  opacity: 0.25;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
}
.bd-ud-cta-action-overlay {
  position: absolute;
  right: 0;
  text-align: center;
  left: 0;
  bottom: 0;
}
.bd-ud-cta-action-phone {
  background: linear-gradient(180deg, var(--clr-theme-1) 0%, var(--clr-theme-4) 100%);
  box-shadow: 0px 0px 0px 12px rgba(255, 255, 255, 0.25);
  width: 92px;
  height: 92px;
  line-height: 92px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  margin-bottom: 90px;
  margin: auto;
  margin-bottom: 90px;
}
@media (max-width: 575px) {
  .bd-ud-cta-action-phone {
    margin-bottom: 50px;
  }
}
@media (max-width: 450px) {
  .bd-ud-cta-action-phone {
    margin-bottom: 20px;
    width: 70px;
    height: 70px;
    line-height: 70px;
  }
}
@media (max-width: 450px) {
  .bd-ud-cta-action-text {
    margin-bottom: 25px;
  }
}
.bd-ud-cta-action-text span {
  font-size: 18px;
  text-transform: uppercase;
  color: var(--clr-common-white);
  font-weight: var(--bd-fw-sbold);
  display: block;
  margin-bottom: 18px;
}
@media (max-width: 450px) {
  .bd-ud-cta-action-text span {
    margin-bottom: 5px;
  }
}
.bd-ud-cta-action-text a {
  font-size: 35px;
  color: var(--clr-common-white);
  font-weight: var(--bd-fw-sbold);
}
@media (max-width: 450px) {
  .bd-ud-cta-action-text a {
    font-size: 20px;
  }
}
.bd-ud-cta-touch {
  background: var(--clr-common-white);
  border-radius: 0px 0px 10px 10px;
  height: 87px;
  line-height: 87px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.bd-ud-cta-touch a {
  background: linear-gradient(180deg, var(--clr-theme-1) 0%, var(--clr-theme-4) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  font-size: 18px;
}
.bd-ud-cta-touch a i {
  margin-left: 10px;
  font-size: 14px;
}
.bd-ud-cta-touch:hover {
  background: var(--clr-theme-1);
}
.bd-ud-cta-touch:hover a {
  background: linear-gradient(180deg, var(--clr-common-white) 0%, var(--clr-common-white) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bd-ud-cta-content p {
  color: var(--clr-text-20);
}

.cta4-wrapper {
  background-color: #161A33;
  padding-left: 20px;
  padding-right: 20px;
}
.cta4-shape1, .cta4-shape2 {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.cta4-content {
  position: relative;
  z-index: 5;
}
.cta4-content .blue-btn a {
  font-size: 25px;
  border-radius: 45px;
}
.cta4-content .blue-btn a i {
  margin-left: 0;
}
.cta4-content .blue-btn a::after {
  background-color: var(--clr-common-white);
}
.cta4-content .blue-btn a:hover {
  color: var(--clr-theme-1);
}

.cta4-shapebox div img {
  width: 100%;
}

.cta5_area {
  border-radius: 10px;
}

.cta5_title {
  font-size: 55px;
  line-height: 1.2;
  color: #161A33;
  font-weight: 500;
  text-transform: capitalize;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .cta5_title {
    font-size: 50px;
  }
  .cta5_title br {
    display: none;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), 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: 768px) and (max-width: 991px) {
  .cta5_title {
    font-size: 40px;
  }
  .cta5_title br {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cta5_title {
    font-size: 30px;
  }
  .cta5_title br {
    display: none;
  }
}

.cta5_icon a {
  height: 70px;
  width: 100px;
  border-radius: 20px;
  background: var(--clr-theme-1);
  display: inline-block;
  text-align: center;
  line-height: 70px;
  transition: 0.3s;
}
.cta5_icon a:hover {
  background: #161A33;
}

.cta5_area-wrapper {
  padding-left: 130px;
  padding-right: 135px;
  position: relative;
  border-radius: 10px;
}
@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: 768px) and (max-width: 991px) {
  .cta5_area-wrapper {
    padding-left: 80px;
    padding-right: 83px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cta5_area-wrapper {
    padding-left: 40px;
    padding-right: 43px;
  }
}
.cta5_area-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #F4F4F4;
  box-shadow: 0px 4px 80px 10px rgba(14, 132, 225, 0.06);
  border-radius: 10px;
  z-index: -1;
}

.dark .cta5_area-wrapper::before {
  background: #090C1C;
}
.dark .cta5_title {
  color: var(--clr-common-white);
}

/*----------------------------------------*/
/*  28. SERVICCE CSS START
/*----------------------------------------*/
.speed__input {
  position: relative;
  display: block;
}
.speed__input-item {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0px 20px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .speed__input-item {
    display: block;
  }
}
.speed__input input {
  position: relative;
  height: 60px;
  background-color: var(--clr-common-white);
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
  border: none;
  padding-left: 50px;
  padding-right: 25px;
  border-radius: 6px;
  width: 100%;
}
.speed__input i {
  position: absolute;
  top: 22px;
  left: 20px;
  color: var(--clr-common-heading);
}

.pt-250 {
  padding-top: 250px;
}

.service__area-one {
  position: relative;
  margin-top: -130px;
}

.service__item-thumb img {
  margin-bottom: 35px;
  border-radius: 15px;
}

.service__item-content h3 {
  color: var(--clr-common-white);
  font-size: 24px;
  margin-bottom: 20px;
  display: block;
}
@media (max-width: 575px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .service__item-content h3 {
    font-size: 20px;
  }
}
.service__item-content h3:hover {
  color: var(--clr-theme-1);
}

.service__item-wrapper {
  background: #262c35;
  position: relative;
  z-index: 1;
  padding: 50px 49px 45px 49px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
}
@media (max-width: 575px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .service__item-wrapper {
    padding: 50px 25px;
  }
}

@media (max-width: 575px) {
  
.service__area-one {
  display: flex;
  justify-content: center;
}
}
.service__item-content p {
  color: #8f96a0;
  margin-bottom: 25px;
  font-size: 14px;
}

.service__item-one {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  position: relative;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  z-index: 1;
  padding: 2px;
}
.service__item-one::after {
  content: "";
  position: absolute;
  content: "";
  left: -1px;
  top: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  background: #262c35;
  background: linear-gradient(90deg, var(--clr-theme-1) 0%, var(--clr-theme-3) 100%);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  opacity: 0;
  visibility: hidden;
}
.service__item-one:hover::after {
  opacity: 1;
  visibility: visible;
}

.service__btn {
  color: #535b66;
}
.service__btn:hover {
  color: var(--clr-theme-1);
}

.service__features-item {
  position: relative;
}
.service__features-item:hover .service__circle {
  opacity: 1;
  visibility: visible;
}

.service__features-main {
  position: relative;
  z-index: 5;
  margin-top: -70px;
  top: 20px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .service__features-main {
    margin-top: 0;
    padding-top: 50px;
  }
}
.service__features-main::before {
  position: absolute;
  content: "";
  height: calc(100% - 70px);
  width: 100%;
  background: var(--clr-common-white);
  -webkit-border-radius: 0px 0px 10px 10px;
  -moz-border-radius: 0px 0px 10px 10px;
  -o-border-radius: 0px 0px 10px 10px;
  -ms-border-radius: 0px 0px 10px 10px;
  border-radius: 0px 0px 10px 10px;
  top: 49px;
  z-index: -1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .service__features-main::before {
    height: calc(100% - 69px);
    top: 70px;
  }
}

.service__features-icon {
  background: var(--clr-common-white);
  width: 100px;
  height: 100px;
  text-align: center;
  line-height: 100px;
  display: inline-block;
  border-radius: 50%;
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
  position: relative;
  margin-bottom: 45px;
}

.service__circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}

.service__features-content h3 a {
  font-size: 22px;
  margin-bottom: 20px;
  display: block;
}
.service__features-content h3 a:hover {
  color: var(--clr-theme-1);
}

.service__features-content p {
  margin-bottom: 28px;
}

.service__features-btn a {
  color: var(--clr-text-1);
  font-weight: var(--bd-fw-sbold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #bdbdbd;
  -webkit-text-fill-color: transparent;
  position: relative;
  background-image: -webkit-linear-gradient(0deg, #bdbdbd 0%, #bdbdbd 100%);
}
.service__features-btn a:hover {
  background-image: -webkit-linear-gradient(0deg, var(--clr-theme-1) 0%, var(--clr-theme-3) 100%);
  -webkit-text-fill-color: transparent;
}

.service__features-item::after {
  position: absolute;
  content: "";
  height: 200px;
  width: 1px;
  right: 0;
  top: 67%;
  transform: translate(-50%, -50%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #eee 30.04%, #eee 70.04%, rgba(0, 0, 0, 0) 100%);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .service__features-item::after {
    right: -15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .service__features-item::after {
    right: -4%;
    top: 50%;
  }
}

.row [class*=col-]:last-child .service__features-item::after {
  display: none;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .row [class*=col-]:nth-child(2) .service__features-item::after {
    display: none;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .row [class*=col-] .service__features-item::after {
    display: none;
  }
}

.pt-235 {
  padding-top: 235px;
}

.services__sapcing {
  margin-top: -120px;
  position: relative;
}

.services__slider-item {
  border-radius: 6px;
  padding-top: 40px;
  padding-bottom: 35px;
  padding-left: 77px;
  padding-right: 40px;
  background-color: var(--clr-bg-charcoal);
  position: relative;
}
@media (max-width: 575px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .services__slider-item {
    padding-left: 70px;
    padding-right: 20px;
  }
}

.services__slider-thumb {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
}

.services__slider-content h3 a {
  font-size: 24px;
  color: var(--clr-common-white);
  margin-bottom: 10px;
  display: block;
  letter-spacing: -0.3px;
}
.services__slider-content h3 a:hover {
  color: var(--clr-theme-1);
}
@media (max-width: 575px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) and (max-width: 1600px) {
  .services__slider-content h3 a {
    font-size: 20px;
  }
}
.services__slider-content p {
  color: var(--clr-text-7);
  margin-bottom: 0;
}

.services__area .services__slider-active {
  overflow: visible;
}

@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .skill__item-right {
    margin-top: 0;
  }
}

.company__service-wrapper {
  position: relative;
}
.company__service-wrapper::before {
  position: absolute;
  content: "";
  background-image: linear-gradient(90deg, var(--clr-theme-1) 0%, var(--clr-theme-3) 100%);
  border-radius: 6px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  right: -1px;
  top: -1px;
  opacity: 0;
}
.company__service-wrapper:hover::before {
  opacity: 1;
}

.company__service-item {
  background: var(--clr-common-white);
  position: relative;
  z-index: 1;
  padding: 50px 30px 40px 30px;
  border-radius: 6px;
  border: 1px solid var(--clr-border-9);
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .company__service-item {
    padding: 50px 20px 40px 20px;
  }
}

.company__service-icon img {
  margin-bottom: 25px;
}

.company__service-title h3 a {
  font-size: 24px;
}
.company__service-title h3 a:hover {
  color: var(--clr-theme-1);
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .company__service-title h3 a {
    font-size: 20px;
  }
}

.service__details-main {
  padding-right: 20px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .service__details-main {
    padding-right: 0;
  }
}
.service__details-main > h3 {
  font-size: 36px;
  text-transform: capitalize;
}

.service__details-thumb img {
  border-radius: 6px;
}

.service__features {
  background: var(--clr-common-body-text);
  border-radius: 10px;
  padding: 45px 50px 50px;
}
@media (max-width: 575px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .service__features {
    padding: 45px 20px 50px;
  }
}
.service__features h4 {
  font-size: 24px;
  color: var(--clr-common-white);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.service__sub-image img {
  border-radius: 6px;
  width: 100%;
}

.service__feature-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 30px;
  row-gap: 20px;
}
.service__feature-list span {
  font-size: 15px;
  font-weight: 500;
  color: var(--clr-common-white);
  background: var(--clr-bg-footer);
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  border-radius: 10px;
  display: inline-block;
  position: relative;
  width: calc((100% - 60px) / 3);
  white-space: nowrap;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .service__feature-list span {
    width: calc((100% - 30px) / 2);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .service__feature-list span {
    width: calc((100% - 0px) / 1);
  }
}
.service__feature-list span:after {
  position: absolute;
  content: "\f00c";
  font-family: var(--bd-ff-fontawesome);
  font-size: 14px;
  font-weight: 300;
  color: #aab3bd;
  right: 20px;
}

.sidebar__service-list a {
  font-size: 14px;
  color: var(--clr-common-heading);
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  padding-left: 34px;
  display: inline-flex;
  align-items: center;
}
.sidebar__service-list a:before {
  position: absolute;
  content: "\f178";
  left: 0;
  font-family: var(--bd-ff-fontawesome);
  font-weight: 400;
  color: #afafaf;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.sidebar__service-list a:hover {
  color: var(--clr-theme-1);
}
.sidebar__service-list a:hover:before {
  color: var(--clr-theme-1);
}
.sidebar__service-list li {
  border-bottom: 1px solid var(--clr-border-10);
  padding-bottom: 14px;
  margin-bottom: 14px;
}
.sidebar__service-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.sidebar__materials-list a {
  height: 60px;
  display: inline-block;
  border: 2px solid var(--clr-common-heading);
  border-radius: 10px;
  padding: 0 25px;
  line-height: 56px;
  width: 100%;
  color: var(--clr-common-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .sidebar__materials-list a {
    padding: 0 13px;
    padding-right: 13px;
    padding-right: 45px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
.sidebar__materials-list a i {
  margin-right: 15px;
  font-size: 18px;
}
.sidebar__materials-list a:after {
  position: absolute;
  content: "\f019";
  font-family: var(--bd-ff-fontawesome);
  font-weight: 900;
  font-size: 16px;
  color: #c6c6c6;
  right: 20px;
}
.sidebar__materials-list a:hover:after {
  color: var(--clr-theme-1);
}
.sidebar__materials-list ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidber__adv-thumb {
  position: relative;
}
.sidber__adv-thumb img {
  width: 100%;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
}
.sidber__adv-thumb:before {
  position: absolute;
  content: "300 * 400";
  width: 150px;
  height: 60px;
  background-image: -webkit-linear-gradient(0deg, var(--clr-theme-1) 0%, var(--clr-theme-3) 100%);
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--clr-common-white);
  border-radius: 6px 6px 0px 0px;
}

.bd-ud-service-img img {
  border-radius: 6px;
}
.bd-ud-services3--7 {
  margin-left: -7px;
}
.bd-ud-services3-top-space {
  margin-top: -142px;
  padding-top: 255px;
  padding-bottom: 78px;
}
.bd-ud-services3-content {
  position: relative;
  z-index: 2;
}
.bd-ud-services3-item {
  background: var(--clr-bg-2);
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  padding: 32px 36px;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  overflow: hidden;
  z-index: 1;
}
.bd-ud-services3-item-wrapper.margin--130 .bd-ud-services3-item {
  margin-top: -250px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
}
.bd-ud-services3-item-wrapper.margin--130 .bd-ud-services3-item::after {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
}
@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: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-ud-services3-item-wrapper.margin--130 .bd-ud-services3-item {
    margin-top: 0;
  }
}
@media (max-width: 450px) {
  .bd-ud-services3-item {
    padding: 32px 20px;
  }
}
.bd-ud-services3-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  z-index: -1;
  background: linear-gradient(180deg, var(--clr-theme-1) 0%, var(--clr-theme-4) 100%);
}
.bd-ud-services3-item:hover .bd-ud-services3-image-overlay {
  opacity: 1;
  visibility: visible;
}
.bd-ud-services3-item:hover .bd-ud-services3-btn a {
  color: var(--clr-common-white);
}
.bd-ud-services3-item:hover .bd-ud-services3-text {
  color: var(--clr-common-white);
}
.bd-ud-services3-item:hover .bd-ud-services3-icon-overlay {
  opacity: 0.1;
  visibility: visible;
}
.bd-ud-services3-item:hover .bd-ud-services3-title.t2 {
  color: var(--clr-common-white);
}
.bd-ud-services3-item:hover .bd-ud-services3-svg-1 .shape1, .bd-ud-services3-item:hover .bd-ud-services3-svg-1 .shape2 {
  fill: var(--clr-common-white);
}
.bd-ud-services3-item:hover .bd-ud-services3-svg-1 .shape3, .bd-ud-services3-item:hover .bd-ud-services3-svg-1 .shape4 {
  fill: var(--clr-theme-1);
}
.bd-ud-services3-item:hover .bd-ud-services3-svg-1 .shape5 {
  stroke: var(--clr-common-white);
}
.bd-ud-services3-item:hover .bd-ud-services3-svg-2 .shape1, .bd-ud-services3-item:hover .bd-ud-services3-svg-2 .shape7, .bd-ud-services3-item:hover .bd-ud-services3-svg-2 .shape6, .bd-ud-services3-item:hover .bd-ud-services3-svg-2 .shape8 {
  fill: var(--clr-common-white);
}
.bd-ud-services3-item:hover .bd-ud-services3-svg-3 .shape1 {
  fill: var(--clr-common-white);
}
.bd-ud-services3-item:hover .bd-ud-services3-svg-3 .shape3, .bd-ud-services3-item:hover .bd-ud-services3-svg-3 .shape4 {
  fill: var(--clr-theme-1);
}
.bd-ud-services3-item:hover::after {
  height: 100%;
}
.bd-ud-services3-item.style-2 {
  background: var(--clr-common-white);
  box-shadow: 0px 4px 69px 12px rgba(14, 132, 225, 0.1);
  border-radius: 8px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .bd-ud-services3-item.style-2 {
    padding: 32px 25px;
  }
}
.bd-ud-services3-item.style-2 p {
  color: #3F3F3F;
}
.bd-ud-services3-view span {
  color: var(--clr-common-white);
  text-transform: uppercase;
  font-size: 16px;
  font-weight: var(--bd-fw-sbold);
}
.bd-ud-services3-view span a {
  color: var(--clr-theme-1);
}
.bd-ud-services3-icon-overlay {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  margin: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.bd-ud-services3-title {
  font-size: 24px;
  font-weight: var(--bd-fw-sbold);
  color: var(--clr-common-white);
  margin-bottom: 23px;
}
.bd-ud-services3-title.t2 {
  color: var(--clr-text-11);
}
.bd-ud-services3-text {
  color: var(--clr-text-15);
  color: #D9D9D9;
  margin-bottom: 42px;
}
.bd-ud-services3-btn a {
  color: var(--clr-theme-1);
  font-weight: var(--bd-fw-sbold);
  text-transform: uppercase;
  font-size: 16px;
}
.bd-ud-services3-svg-1 path {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.bd-ud-services3-svg-1 .shape1 {
  fill: var(--clr-theme-1);
}
.bd-ud-services3-svg-1 .shape2, .bd-ud-services3-svg-1 .shape3, .bd-ud-services3-svg-1 .shape4 {
  fill: var(--clr-common-white);
}
.bd-ud-services3-svg-1 .shape5, .bd-ud-services3-svg-1 .shape6 {
  stroke: var(--clr-common-white);
}
.bd-ud-services3-svg-2 path {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.bd-ud-services3-svg-2 .shape1, .bd-ud-services3-svg-2 .shape6, .bd-ud-services3-svg-2 .shape7, .bd-ud-services3-svg-2 .shape8 {
  fill: var(--clr-theme-1);
}
.bd-ud-services3-svg-2 .shape2, .bd-ud-services3-svg-2 .shape3, .bd-ud-services3-svg-2 .shape4, .bd-ud-services3-svg-2 .shape5 {
  stroke: var(--clr-common-white);
}
.bd-ud-services3-svg-3 path {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.bd-ud-services3-svg-3 .shape1 {
  fill: var(--clr-theme-1);
}
.bd-ud-services3-svg-3 .shape2, .bd-ud-services3-svg-3 .shape5 {
  stroke: var(--clr-common-white);
}
.bd-ud-services3-svg-3 .shape3, .bd-ud-services3-svg-3 .shape4 {
  fill: var(--clr-common-white);
}
.bd-ud-services3-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  bottom: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.bd-ud-services3-image-overlay img {
  width: 100%;
  height: 100%;
}
.bd-ud-details-check-list {
  display: flex;
  gap: 45px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-ud-details-check-list {
    gap: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-ud-details-check-list {
    flex-direction: column;
  }
}
.bd-ud-details-check-list li {
  color: var(--clr-bg-2);
}
.bd-ud-service-title {
  font-weight: var(--bd-fw-sbold);
  font-size: 36px;
  text-align: center;
}
.bd-ud-service-subtitle {
  font-weight: var(--bd-fw-sbold);
  font-size: 20px;
  color: var(--clr-text-22);
  text-align: center;
}
.bd-ud-service-text {
  color: var(--clr-bg-2);
  text-align: center;
}
.bd-ud-service-img-content {
  display: flex;
  gap: 45px;
  margin-bottom: 40px;
  align-items: center;
}
@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: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-ud-service-img-content {
    flex-wrap: wrap;
  }
}
.bd-ud-service-tab-wrapper .nav {
  padding: 15px 0;
  border-top: 1px solid var(--clr-border-17);
  border-bottom: 1px solid var(--clr-border-17);
  margin-bottom: 60px;
}
.bd-ud-service-tab-wrapper .nav li {
  padding-right: 62px;
  position: relative;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-ud-service-tab-wrapper .nav li {
    padding-right: 25px;
  }
}
.bd-ud-service-tab-wrapper .nav li:last-child {
  padding-right: 0;
}
.bd-ud-service-tab-wrapper .nav li::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 12px;
  background: var(--clr-text-14);
  top: 50%;
  transform: translateY(-50%);
  left: 85%;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-ud-service-tab-wrapper .nav li::before {
    left: 93%;
  }
}
.bd-ud-service-tab-wrapper .nav li:last-child::before {
  display: none;
}
.bd-ud-service-tab-wrapper .nav .nav-link {
  text-transform: uppercase;
  color: var(--clr-common-black);
  font-weight: var(--bd-fw-sbold);
  border: 0;
}
.bd-ud-service-tab-wrapper .nav .nav-link.active {
  color: var(--clr-theme-1);
  position: relative;
}
.bd-ud-service-tab-wrapper .nav .nav-link.active::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 8px 0 8px;
  border-color: var(--clr-theme-1) transparent transparent transparent;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
.bd-ud-service-tab-img {
  min-width: 450px;
}
.bd-ud-service-tab-img img {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
}
@media (max-width: 575px) {
  .bd-ud-service-tab-img {
    min-width: auto;
  }
}
.bd-ud-service-tab-content h3 {
  font-weight: 600;
  font-size: 36px;
  margin-bottom: 30px;
}
.bd-ud-service-tab-content li {
  color: var(--clr-bg-2);
}
.bd-ud-service-tab-content p {
  color: var(--clr-bg-2);
  margin-bottom: 30px;
}
.bd-ud-service-list li {
  margin-bottom: 20px;
}
.bd-ud-service-list li:last-child {
  margin-bottom: 0;
}
.bd-ud-service-list li a {
  border-radius: 6px;
  display: block;
  padding: 25px 30px;
  font-weight: 600;
  font-size: 20px;
  color: var(--clr-text-11);
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  background-size: 300% 100%;
  background-image: linear-gradient(to right, var(--clr-bg-6), var(--clr-bg-6), var(--clr-theme-1), var(--clr-theme-4));
}
.bd-ud-service-list li a::before {
  content: "\f054";
  position: absolute;
  font-family: var(--bd-ff-fontawesome);
  right: 30px;
}
.bd-ud-service-list li a:hover {
  color: var(--clr-common-white);
  background-position: 100% 0;
}
.bd-ud-service-details-cta {
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  flex-wrap: wrap;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-ud-service-details-cta {
    padding: 0;
  }
}
.bd-ud-service-download {
  border-radius: 6px;
  overflow: hidden;
  padding: 35px 40px 40px 40px;
  position: relative;
  z-index: 1;
}
.bd-ud-service-download::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--clr-bg-1);
  z-index: -1;
  opacity: 0.84;
}
.bd-ud-service-download h3 {
  font-weight: 600;
  font-size: 24px;
  color: var(--clr-common-white);
  border-bottom: 1px solid var(--clr-border-18);
  padding-bottom: 17px;
  margin-bottom: 50px;
}
.bd-ud-service-download-link li {
  margin-bottom: 30px;
}
.bd-ud-service-download-link li:last-child {
  margin-bottom: 0;
}
.bd-ud-service-download-link li a {
  font-weight: 600;
  font-size: 17px;
  color: var(--clr-common-white);
  text-transform: capitalize;
  border: 1px solid var(--clr-common-white);
  border-radius: 6px;
  padding: 10px;
  display: block;
  padding: 17px 30px;
  position: relative;
  padding-right: 65px;
}
.bd-ud-service-download-link li a::before {
  content: "\f33d";
  right: 30px;
  position: absolute;
  font-family: var(--bd-ff-fontawesome);
  border: 2px solid var(--clr-common-white);
  height: 28px;
  width: 28px;
  text-align: center;
  border-radius: 6px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.bd-ud-counter-title {
  font-size: 16px;
  text-align: center;
}
.bd-ud-counter-item-wrapper {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .bd-ud-counter-item-wrapper {
    gap: 10px 20px;
  }
}
@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: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .bd-ud-counter-item-wrapper {
    justify-content: start;
    gap: 20px 150px;
  }
}
.bd-ud-cta {
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 575px) {
  .bd-ud-cta {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.bd-ud-cta-shape {
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  right: 0;
}
.bd-ud-cta-shape img {
  width: 100%;
}

.bd-ud-counter-item-wrapper .counter_item .counter_canvas {
  position: relative;
  margin-bottom: 15px;
  text-align: center;
}
.bd-ud-counter-item-wrapper .counter_item .counter_canvas canvas {
  -webkit-transform: rotate(110deg);
  -moz-transform: rotate(110deg);
  -ms-transform: rotate(110deg);
  -o-transform: rotate(110deg);
  transform: rotate(110deg);
}
.bd-ud-counter-item-wrapper .counter_item .counter_percentage {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 16px;
  color: var(--clr-text-21);
  font-weight: 700;
  width: 62px;
  height: 62px;
  background: rgba(14, 132, 225, 0.1);
  border-radius: 50%;
  line-height: 62px;
  -webkit-transform: translate(-50%, -55%);
  -moz-transform: translate(-50%, -55%);
  -ms-transform: translate(-50%, -55%);
  -o-transform: translate(-50%, -55%);
  transform: translate(-50%, -55%);
}
.bd-ud-counter-item-wrapper .counter_item:last-child .counter_canvas canvas {
  -webkit-transform: rotate(30deg);
  -moz-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  -o-transform: rotate(30deg);
  transform: rotate(30deg);
}

.service4-wrapper {
  border-bottom: 1px dashed #E7DFD7;
}
.service4-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(180deg, #EF3D1E 0%, #6FBEFD 100%);
  opacity: 0.2;
  filter: blur(217px);
  width: 800px;
  height: 600px;
  z-index: -1;
}
.service4-feature {
  display: flex;
  align-items: end;
  justify-content: space-between;
  border-bottom: 1px solid #DFDFDF;
}
@media (max-width: 450px) {
  .service4-feature {
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }
}
.service4-feature:last-child {
  padding-bottom: 0;
  border: none;
}
.service4-title {
  font-weight: 400;
  font-size: 30px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--clr-text-11);
  margin-bottom: 20px;
}
@media (max-width: 450px) {
  .service4-title {
    font-size: 24px;
  }
}
.service4-title:hover {
  color: var(--clr-theme-1);
}
.service4-desc {
  margin-bottom: 0;
  color: #4B423E;
}
.service4-imagebox {
  display: flex;
  gap: 20px;
}
@media (max-width: 575px) {
  .service4-imagebox {
    flex-direction: column;
    flex-wrap: wrap;
  }
}
.service4-imagebox .img img {
  max-width: 100%;
}
.service4-imagebox .img img:hover {
  transform: scale(1.125);
}
.service4-shape {
  position: absolute;
  bottom: 50px;
  right: -135px;
  z-index: -1;
  animation: UpDown 3s linear infinite;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .service4-rightbox.pl-75 {
    padding-left: 0;
  }
}

.service5_title {
  font-size: 55px;
  font-weight: 500;
  color: var(--clr-text-11);
  line-height: 1.2;
  text-transform: capitalize;
}

.service5-content {
  padding-right: 50px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .service5-content {
    padding-right: 0;
  }
}
.service5-content p {
  color: var(--clr-text-11);
  font-size: 16px;
  line-height: 1.8;
}

.service5-btn {
  font-size: 17px;
  line-height: 1;
  color: var(--clr-text-11);
  position: relative;
}
.service5-btn::before {
  position: absolute;
  content: "";
  width: 100px;
  height: 2px;
  background: var(--clr-text-11);
  left: 0;
  bottom: 0px;
  transition: all 300ms ease;
}
.service5-btn:hover {
  color: var(--clr-theme-1);
}
.service5-btn:hover::before {
  width: 100%;
  background: var(--clr-theme-1);
}

.service5-list {
  padding: 45px 0px;
  border-bottom: 1px solid #D2D2D2;
}
@media (max-width: 450px) {
  .service5-list {
    flex-direction: column;
    row-gap: 30px;
    align-items: start !important;
  }
}
.service5-list .service5-list-thumb {
  padding-right: 50px;
}
@media (max-width: 450px) {
  .service5-list .service5-list-thumb {
    padding-right: 0px;
  }
}
.service5-list .service5-list-content h4 {
  font-size: 24px;
  line-height: 40px;
  color: #000000;
  font-weight: 500;
  margin-bottom: 15px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .service5-list .service5-list-content h4 {
    line-height: 33px;
  }
}
.service5-list .service5-list-content h4:hover {
  color: var(--clr-theme-1);
}
.service5-list .service5-list-content p {
  color: #606060;
  font-weight: 400;
  font-size: 17px;
  line-height: 24px;
}

.dark .service5_title {
  color: var(--clr-common-white);
}
.dark .service5-content p {
  color: var(--clr-common-white);
}
.dark .service5-btn {
  color: var(--clr-common-white);
}
.dark .service5-btn::before {
  background: var(--clr-common-white);
}
.dark .service5-list {
  border-bottom: 1px solid #50567A;
}
.dark .service5-list .service5-list-content h4 {
  color: var(--clr-common-white);
}
.dark .service5-list .service5-list-content h4:hover {
  color: var(--clr-theme-1);
}
.dark .service5-list .service5-list-content p {
  color: var(--clr-common-white);
}

/* =========================
   SERVICES — CENTER ON TABLET & MOBILE
========================= */

/* ---------- Tablet ---------- */
@media (max-width: 991px) {

  /* section heading */
  .section__title-one {
    text-align: center;
  }

  /* top right CTA button */
  .service__btn {
    text-align: center !important;
    margin-top: 20px;
  }

  /* card wrapper */
  .service__item-wrapper {
    text-align: center;
    padding: 40px 28px;
  }

  /* icon */
  .service__item-thumb {
    display: flex;
    justify-content: center;
  }

  /* title + text */
  .service__item-content h3,
  .service__item-content p {
    text-align: center;
  }

  /* read more button */
  .service__item-btn {
    display: flex;
    justify-content: center;
  }
}


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

  .service__area-one {
  
  }

  .section__title-one span,
  .section__title-one h2 {
    text-align: center;
  }

  .service__item-wrapper {
    padding: 30px 20px;
  }

  .service__item-thumb img,
  .service__item-thumb i {
    margin: 0 auto 20px;
    display: block;
  }

  .service__item-content h3 {
    font-size: 18px;
  }

  .service__item-content p {
    font-size: 14px;
  }

}


/*----------------------------------------*/
/*  29. SKILL CSS START
/*----------------------------------------*/
.skill__bg {
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .skill__image {
    padding-left: 0;
  }
}
.skill-thumb {
  margin-left: 80px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .skill-thumb {
    margin-left: 0;
  }
}
.skill-progress {
  padding-right: 45px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .skill-progress {
    padding-right: 0;
  }
}
.skill-title h3 {
  font-size: 26px;
}
.skill__video-btn {
  width: 120px;
  height: 120px;
  background-color: var(--clr-common-white);
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
  -moz-box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
  -ms-box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
  -o-box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
  position: absolute;
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
}
.skill__video-btn:hover {
  background-color: var(--clr-theme-1);
  color: var(--clr-common-white);
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .skill__video-btn {
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    transform: translate(-50%, -50%);
  }
}

.progress-skill-item {
  position: relative;
  margin-bottom: 26px;
}
.progress-skill-item:last-child {
  margin-bottom: 0;
}
.progress-skill-item h4 {
  font-size: 16px;
  text-transform: capitalize;
  margin-bottom: 18px;
}
.progress-skill-item .progress-count {
  position: absolute;
  top: 0px;
  right: 0;
  font-weight: var(--bd-fw-bold);
  font-family: var(--bd-ff-heading);
  color: var(--clr-common-heading);
}
.progress-skill-item .progress {
  height: 14px;
  background-color: transparent;
  border-radius: 0;
  overflow: visible;
  position: relative;
  z-index: 1;
  border-bottom: 2px solid #ececec;
  padding-bottom: 4px;
}
.progress-skill-item .progress-bar {
  background-image: -moz-linear-gradient(0deg, var(--clr-theme-1) 0%, var(--clr-theme-3) 100%);
  background-image: -webkit-linear-gradient(0deg, var(--clr-theme-1) 0%, var(--clr-theme-3) 100%);
  background-image: -ms-linear-gradient(0deg, var(--clr-theme-1) 0%, var(--clr-theme-3) 100%);
  overflow: visible;
}

.skill__progress-wrapper {
  margin-left: 50px;
  margin-right: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .skill__progress-wrapper {
    margin-right: 0;
    margin-left: 30px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .skill__progress-wrapper {
    margin-left: 0;
    margin-right: 0;
  }
}
.skill__singel-item {
  position: relative;
  border-radius: 10px;
  background: var(--clr-common-white);
  padding: 30px 37px 35px 37px;
}
@media (max-width: 575px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .skill__singel-item {
    padding: 30px 20px 35px 20px;
  }
}
.skill__singel-item:hover .skill__item-arrow i {
  color: var(--clr-theme-1);
}
.skill__singel-content h2 {
  font-size: 100px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  background-image: linear-gradient(to right, var(--clr-theme-1) 0%, var(--clr-theme-3) 45%);
  line-height: 1;
  margin-bottom: 20px;
}
@media (max-width: 575px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .skill__singel-content h2 {
    font-size: 80px;
  }
}
.skill__singel-content p {
  margin-bottom: 0;
}
.skill__singel-content h4 {
  margin-bottom: 10px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .skill__singel-content h4 {
    font-size: 18px;
  }
}
.skill__item-arrow {
  position: absolute;
  right: 24px;
  top: 20px;
}
.skill__item-arrow i {
  position: relative;
  transform: rotate(45deg);
  font-size: 20px;
  color: var(--clr-text-6);
}
.skill__info-icon {
  width: 140px;
  display: flex;
  align-items: center;
}
.skill__info-icon img {
  margin-right: -50px;
  align-items: center;
}
.skill__info-title h4 {
  font-size: 18px;
  line-height: 28px;
  margin-top: 10px;
}
.skill__info-content {
  display: flex;
  gap: 50px;
}
@media (max-width: 575px) {
  .skill__info-content {
    gap: 0px;
    flex-wrap: wrap;
  }
}

.bd-skill__thumb {
  padding-left: 80px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .bd-skill__thumb {
    padding-left: 30px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .bd-skill__thumb {
    padding-left: 0;
  }
}
.bd-skill__thumb img {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
}

/*----------------------------------------*/
/*  26. PORTFOLIO CSS START
/*----------------------------------------*/
.portfolio__area .case-study-active {
  overflow: visible;
}

.case__study-thumb {
  position: relative;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
}
.case__study-thumb::before {
  position: absolute;
  height: 0%;
  width: 100%;
  content: "";
  background: linear-gradient(rgba(32, 37, 45, 0) 0%, #1f242c 100%);
  opacity: 0.85;
  left: 0px;
  bottom: 0px;
  z-index: 1;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.case__study-thumb:hover::before {
  height: 100%;
}
.case__study-thumb:hover .case__study-content {
  opacity: 1;
  visibility: visible;
  z-index: 5;
}
.case__study-thumb img {
  width: 100%;
}

.case__study-content {
  position: absolute;
  bottom: 35px;
  padding: 0px 35px;
  opacity: 0;
  visibility: hidden;
  z-index: 9;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .case__study-content {
    padding: 0 20px;
  }
}
.case__study-content h3 a {
  font-size: 20px;
  color: var(--clr-common-white);
  display: block;
  margin-bottom: 10px;
}
.case__study-content h3 a:hover {
  color: var(--clr-theme-1);
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .case__study-content h3 a {
    font-size: 20px;
  }
}
.case__study-content p {
  color: var(--clr-common-white);
  margin-bottom: 15px;
  opacity: 60%;
}

.case__study-btn {
  color: var(--clr-common-white);
  font-weight: var(--bd-fw-sbold);
  font-size: 14px;
}
.case__study-btn:hover {
  color: var(--clr-theme-1);
}

.case-study-item:nth-child(2n+1) {
  margin-top: 40px;
}

.case__study-item {
  border-radius: 6px;
  overflow: hidden;
}

.portfolio__tab-wrapper {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 35px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .portfolio__tab-wrapper {
    gap: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .portfolio__tab-wrapper {
    justify-content: start;
  }
}

.porfolio__tab .nav-tabs {
  border-bottom: 0;
  display: flex;
  gap: 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .porfolio__tab .nav-tabs {
    gap: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .porfolio__tab .nav-tabs {
    gap: 13px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .porfolio__tab .nav-tabs {
    gap: 5px;
  }
}
.porfolio__tab .nav-tabs .nav-link {
  margin-bottom: 0;
  border: 0;
  font-size: 16px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .porfolio__tab .nav-tabs .nav-link {
    font-size: 14px;
  }
}
.porfolio__tab .nav-tabs .nav-link.active {
  background: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: -webkit-linear-gradient(0deg, var(--clr-theme-1) 0%, var(--clr-theme-3) 100%);
}
.porfolio__tab .nav-tabs button {
  font-size: 16px;
  font-weight: var(--bd-fw-bold);
  color: var(--clr-common-heading);
  text-transform: uppercase;
  font-family: var(--bd-ff-heading);
}
.porfolio__tab .nav-link {
  padding: 5px;
}

.porfolio__tab .nav-link:focus, .nav-link:hover {
  color: var(--clr-common-heading);
}

.portfolio__area .swiper-container {
  overflow: visible;
}

.portfolio__bg {
  position: relative;
  z-index: 5;
}

.portfolio__bg::before {
  position: absolute;
  content: "";
  height: 485px;
  width: 100%;
  background-color: var(--clr-bg-grey-1);
  top: 0;
  left: 0;
  z-index: -1;
}

.portfolio__button a {
  width: 50px;
  height: 50px;
  background: var(--clr-bg-grey-3);
  background-image: none;
  display: block;
  border-radius: 50px;
  text-align: center;
  line-height: 50px;
  color: var(--clr-common-heading);
  font-size: 20px;
  position: relative;
  z-index: 2;
}
.portfolio__button a::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-image: -webkit-linear-gradient(0deg, var(--clr-theme-1) 0%, var(--clr-theme-3) 100%);
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -o-border-radius: 50px;
  -ms-border-radius: 50px;
  border-radius: 50px;
}
.portfolio__button a:hover {
  color: var(--clr-common-white);
}
.portfolio__button a:hover::after {
  opacity: 1;
}

.portfolio__slider-item {
  position: relative;
}
.portfolio__slider-item:hover .portfolio__slider-action {
  opacity: 1;
  visibility: visible;
  bottom: -50px;
}

.portfolio__slider-action {
  position: absolute;
  bottom: 0px;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
  padding: 24px 30px 29px 30px;
  left: 40px;
  right: 40px;
  bottom: -100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px) {
  .portfolio__slider-action {
    padding: 24px 20px 29px 20px;
  }
}

.portfolio__slider-content {
  padding-right: 10px;
}
.portfolio__slider-content span {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  background-image: -webkit-linear-gradient(0deg, var(--clr-theme-1) 0%, var(--clr-theme-3) 100%);
  font-weight: var(--bd-fw-sbold);
  display: block;
  font-size: 14px;
}
.portfolio__slider-content h3 a {
  font-size: 24px;
}
.portfolio__slider-content h3 a:hover {
  color: var(--clr-theme-1);
}
@media (max-width: 575px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .portfolio__slider-content h3 a {
    font-size: 20px;
  }
}

.portfolio__slider-thumb img {
  width: 100%;
  border-radius: 10px;
}

.portfolio__pagination .swiper-pagination-bullet {
  width: 25px;
  height: 4px;
  border-radius: 6px;
  margin: 0px 5px;
  background: #e7e7e7;
  opacity: 1;
  transition: 0.5s;
}
.portfolio__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: linear-gradient(0deg, var(--clr-theme-1) 0%, var(--clr-theme-3) 100%);
  width: 35px;
}

.case__filter-button {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  gap: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .case__filter-button {
    gap: 45px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .case__filter-button {
    flex-wrap: wrap;
    gap: 15px 20px;
  }
}
.case__filter-button button {
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  border: none;
  background: none;
  font-size: 16px;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: -webkit-linear-gradient(0deg, #1f242c 0%, #1f242c 100%);
}
.case__filter-button button::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 15px;
  background: #dbdfe4;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .case__filter-button button::after {
    display: none;
    gap: 20px;
  }
}
.case__filter-button button:last-child::after {
  display: none;
}
.case__filter-button .active {
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: -webkit-linear-gradient(0deg, var(--clr-theme-1) 0%, var(--clr-theme-3) 100%);
}

.case__filter-button button::after:last-child {
  display: none;
}

.case__filter-wrapper {
  position: relative;
  z-index: 5;
  overflow: hidden;
  border-radius: 10px;
}
.case__filter-wrapper:hover .case__filter-content {
  overflow: visible;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.case__filter-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  text-align: center;
  padding: 0 30px;
  transform: scale(0.8);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  justify-content: center;
}
@media (max-width: 575px) {
  .case__filter-content {
    padding: 0 15px;
  }
}
.case__filter-content h3 {
  margin-top: 10px;
  margin-bottom: 10px;
  line-height: 1.3;
  font-size: 24px;
  color: var(--clr-common-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .case__filter-content h3 {
    font-size: 22px;
  }
}
@media (max-width: 575px), only screen and (min-width: 768px) and (max-width: 991px) {
  .case__filter-content h3 {
    font-size: 20px;
  }
}
.case__filter-content p {
  color: var(--clr-common-white);
}

.case__filter-overlay {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, var(--clr-theme-1) 0%, var(--clr-theme-3) 100%);
  opacity: 0.9;
  z-index: -1;
  top: 0;
  left: 0;
}

.case__filter-btn {
  width: 55px;
  height: 55px;
  text-align: center;
  line-height: 55px;
  font-size: 20px;
  display: inline-block;
  background: var(--clr-common-white);
  border-radius: 50%;
  color: var(--clr-theme-1);
}
.case__filter-btn:hover {
  background-color: var(--clr-theme-1);
  color: var(--clr-common-white);
}

.case__details-thumb img {
  border-radius: 6px;
  width: 100%;
}

.case__details-wrapper p span {
  font-weight: 700;
  color: var(--clr-theme-1);
}

.case__details-wrapper p {
  line-height: 28px;
}

.case__details-wrapper p a {
  color: var(--clr-theme-1);
}

.case__details-wrapper p span {
  font-weight: 700;
  color: var(--clr-theme-1);
}

.case__sub-image {
  margin-top: 50px;
  margin-bottom: 30px;
}

.case__sub-image img {
  border-radius: 10px;
  width: 100%;
}

.case__meta-wrapper {
  background: var(--clr-common-white);
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  margin: -60px 40px 50px 40px;
  padding: 30px 40px 30px;
  z-index: 5;
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .case__meta-wrapper {
    padding: 30px 30px 30px;
  }
}
@media (max-width: 575px) {
  .case__meta-wrapper {
    margin: -60px 0px 50px 0px;
    padding: 30px 20px 30px;
  }
}

.case__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.case__meta .case__list {
  display: flex;
  gap: 75px;
  flex-wrap: wrap;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .case__meta .case__list {
    gap: 25px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .case__meta .case__list {
    gap: 10px;
    justify-content: space-between;
    flex-grow: 1;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .case__meta .case__list {
    gap: 20px;
  }
}
.case__meta .meta__item {
  display: block;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .case__meta .meta__item {
    width: calc((100% - 20px) / 2);
  }
}
.case__meta .meta__item span {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.case__meta .meta__item p {
  font-size: 14px;
  margin-bottom: 0;
}

.case__quote {
  background: #f6f6f6;
  padding: 40px 50px 40px;
  display: flex;
  gap: 30px;
  align-items: center;
  border-radius: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .case__quote {
    padding: 40px 30px 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .case__quote {
    padding: 40px 20px 40px;
    flex-direction: column;
    align-items: flex-start;
  }
}
.case__quote .quote__icon {
  idth: 120px;
  height: 120px;
  background: var(--clr-common-white);
  border-radius: 50%;
  min-width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  color: var(--clr-theme-1);
}
.case__quote .quote__content p {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 15px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .case__quote .quote__content p {
    font-size: 22px;
  }
}
.case__quote .quote__content .author-name {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}
.case__quote .quote__content .author-name span {
  color: var(--clr-theme-2);
  font-size: 16px;
}

.case__faq-wrapper h4 {
  font-size: 30px;
  text-transform: uppercase;
  margin-bottom: 17px;
}

.case__faq-wrapper {
  margin-bottom: 20px;
  margin-top: 50px;
}

.case__nav-wrapper {
  border-top: 1px solid #f0f0f0;
  padding-top: 30px;
  padding-bottom: 30px;
}

.case__nav-items {
  gap: 30px;
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .case__nav-items {
    flex-direction: column;
  }
}
.case__nav-items .case__thumb {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
}
.case__nav-items .case__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case__nav-items .case__single {
  display: flex;
  align-items: center;
  gap: 14px;
}
.case__nav-items .case__single:last-child {
  flex-direction: row-reverse;
  text-align: right;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .case__nav-items .case__single:last-child {
    flex-direction: row;
    text-align: left;
  }
}
.case__nav-items .case__content span {
  font-size: 14px;
  line-height: 1;
}
.case__nav-items .case__title {
  font-size: 24px;
  margin-bottom: 0;
  text-transform: uppercase;
}
.case__nav-items .case__title:hover {
  color: var(--clr-theme-1);
}
.case__nav-items .dot__icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .case__nav-items .dot__icon {
    display: none;
  }
}
.case__nav-items .dot__icon i {
  color: var(--clr-theme-1);
  font-size: 40px;
  position: relative;
  top: 5px;
}

.bd-ud-portfolio-wrapper {
  display: flex;
  flex-wrap: wrap;
  column-gap: 66px;
  justify-content: center;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .bd-ud-portfolio-wrapper {
    column-gap: 45px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .bd-ud-portfolio-wrapper {
    column-gap: 30px;
  }
}
.bd-ud-portfolio-wrapper .bd-ud-portfolio-item:nth-child(1) {
  background: var(--clr-theme-5);
  box-shadow: 0px 4px 60px rgba(14, 132, 225, 0.2);
}
.bd-ud-portfolio-wrapper .bd-ud-portfolio-item:nth-child(1) a {
  background: var(--clr-theme-1);
}
.bd-ud-portfolio-wrapper .bd-ud-portfolio-item:nth-child(2) {
  background: var(--clr-bg-7);
}
.bd-ud-portfolio-wrapper .bd-ud-portfolio-item:nth-child(2) a {
  background: var(--clr-bg-7);
}
.bd-ud-portfolio-wrapper .bd-ud-portfolio-item:nth-child(3) {
  background: var(--clr-bg-8);
}
.bd-ud-portfolio-wrapper .bd-ud-portfolio-item:nth-child(3) a {
  background: var(--clr-bg-8);
}
.bd-ud-portfolio-wrapper .bd-ud-portfolio-item:nth-child(4) {
  background: var(--clr-bg-9);
}
.bd-ud-portfolio-wrapper .bd-ud-portfolio-item:nth-child(4) a {
  background: var(--clr-bg-9);
}
.bd-ud-portfolio-wrapper .bd-ud-portfolio-item:nth-child(5) {
  background: var(--clr-bg-10);
}
.bd-ud-portfolio-wrapper .bd-ud-portfolio-item:nth-child(5) a {
  background: var(--clr-bg-10);
}
.bd-ud-portfolio-wrapper .bd-ud-portfolio-item:nth-child(6) {
  background: var(--clr-theme-5);
}
.bd-ud-portfolio-wrapper .bd-ud-portfolio-item:nth-child(6) a {
  background: var(--clr-theme-5);
}
.bd-ud-portfolio-wrapper .bd-ud-portfolio-item:nth-child(2n+1) {
  -webkit-transform: translateY(-106px);
  -moz-transform: translateY(-106px);
  -ms-transform: translateY(-106px);
  -o-transform: translateY(-106px);
  transform: translateY(-106px);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-ud-portfolio-wrapper .bd-ud-portfolio-item:nth-child(2n+1) {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
}
.bd-ud-portfolio.padding {
  padding-top: 225px;
  padding-bottom: 120px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-ud-portfolio.padding {
    padding-top: 120px;
  }
}
.bd-ud-portfolio-item {
  padding: 60px;
  padding-top: 55px;
  width: calc((100% - 66px) / 2);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .bd-ud-portfolio-item {
    padding: 40px;
    padding-top: 35px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .bd-ud-portfolio-item {
    padding: 30px;
    padding-top: 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-ud-portfolio-item {
    width: calc((100% - 0px) / 1);
    padding: 40px;
  }
}
.bd-ud-portfolio-item h4 {
  font-weight: 700;
  font-size: 24px;
  color: var(--clr-common-white);
  margin-bottom: 58px;
  text-transform: capitalize;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .bd-ud-portfolio-item h4 {
    margin-bottom: 30px;
  }
}
.bd-ud-portfolio-item:hover .bd-ud-portfolio-img img {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}
.bd-ud-portfolio-item:hover .bd-ud-portfolio-img a {
  opacity: 1;
  visibility: visible;
  top: 50%;
}
.bd-ud-portfolio-item:hover .bd-ud-portfolio-img::before {
  opacity: 0.8;
  visibility: visible;
}
.bd-ud-portfolio-img {
  overflow: hidden;
  z-index: 2;
}
.bd-ud-portfolio-img a {
  position: absolute;
  display: inline-block;
  width: 124px;
  height: 124px;
  text-align: center;
  font-size: 60px;
  color: var(--clr-common-white);
  line-height: 124px;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  z-index: 3;
}
.bd-ud-portfolio-img a i {
  -webkit-transform: rotate(49deg);
  -moz-transform: rotate(49deg);
  -ms-transform: rotate(49deg);
  -o-transform: rotate(49deg);
  transform: rotate(49deg);
}
.bd-ud-portfolio-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #161A33;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
}
@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: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-ud-portfolio3-text.pl-90 {
    padding-left: 0;
  }
}
.bd-ud-portfolio3-active {
  overflow: visible;
}
.bd-ud-portfolio3-img {
  position: relative;
}
.bd-ud-portfolio3-img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(14, 132, 225, 0) 0%, var(--clr-theme-1) 100%);
  opacity: 0;
  visibility: visible;
}
.bd-ud-portfolio3-img .popup-image {
  width: 71px;
  height: 71px;
  background: var(--clr-theme-1);
  display: inline-block;
  position: absolute;
  top: 40px;
  z-index: 1;
  right: 40px;
  text-align: center;
  font-size: 24px;
  padding-top: 22px;
  color: var(--clr-common-white);
  opacity: 0;
  visibility: visible;
}
.bd-ud-portfolio3-img i {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.bd-ud-portfolio3-img h4 {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  text-align: center;
  color: var(--clr-common-white);
  font-weight: 700;
  font-size: 24px;
  opacity: 0;
  visibility: hidden;
}
.bd-ud-portfolio3-img:hover h4 {
  opacity: 1;
  visibility: visible;
  bottom: 50px;
}
.bd-ud-portfolio3-img:hover::before {
  opacity: 1;
  visibility: visible;
}
.bd-ud-portfolio3-img:hover a {
  opacity: 1;
  visibility: visible;
}
.bd-ud-portfolio3-navigation {
  position: absolute;
  top: 50%;
  right: 330px;
  background: var(--clr-bg-1);
  z-index: 3;
  color: var(--clr-common-white);
  width: 76px;
  height: 76px;
  display: flex;
  line-height: 81px;
  text-align: center;
  border-radius: 50%;
  justify-content: center;
  gap: 14px;
  -webkit-transform: translate(-100%, -50%);
  -moz-transform: translate(-100%, -50%);
  -ms-transform: translate(-100%, -50%);
  -o-transform: translate(-100%, -50%);
  transform: translate(-100%, -50%);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .bd-ud-portfolio3-navigation {
    right: 160px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-ud-portfolio3-navigation {
    left: 0;
    right: 0;
    margin: auto;
    -webkit-transform: translate(0%, -50%);
    -moz-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    -o-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
  }
}
@media (max-width: 450px) {
  .bd-ud-portfolio3-navigation {
    width: 60px;
    height: 60px;
    gap: 8px;
    line-height: 67px;
  }
}

.et-portfolio4-view-btn a {
  color: var(--clr-theme-1);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 18px;
}
.et-portfolio4-view-btn a:hover {
  color: var(--clr-common-heading);
}

.et-portfolio5-item {
  padding: 60px;
  margin-right: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .et-portfolio5-item {
    margin-right: 0;
  }
}
@media (max-width: 575px) {
  .et-portfolio5-item {
    padding: 30px;
  }
}
.et-portfolio5-item h4 {
  font-weight: 700;
  font-size: 24px;
  color: var(--clr-common-white);
  margin-bottom: 58px;
  text-transform: capitalize;
}
@media (max-width: 575px) {
  .et-portfolio5-item h4 {
    margin-bottom: 35px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .et-portfolio5-item.mb-100 {
    margin-bottom: 70px;
  }
}
.et-portfolio5-item:hover .et-portfolio5-img a {
  opacity: 1;
  visibility: visible;
  top: 50%;
}
.et-portfolio5-item:hover .et-portfolio5-img::before {
  opacity: 0.8;
  visibility: visible;
}
.et-portfolio5-img a {
  position: absolute;
  display: inline-block;
  width: 124px;
  height: 124px;
  text-align: center;
  font-size: 60px;
  color: var(--clr-common-white);
  line-height: 124px;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  z-index: 3;
  background: var(--clr-theme-1);
}
.et-portfolio5-img a i {
  -webkit-transform: rotate(49deg);
  -moz-transform: rotate(49deg);
  -ms-transform: rotate(49deg);
  -o-transform: rotate(49deg);
  transform: rotate(49deg);
}
.et-portfolio5-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #161A33;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .et-portfolio5-right-wrap {
    margin-left: 0;
  }
}
.et-portfolio5-right-wrap .et-portfolio5-item {
  background: #1EEFD6;
}
.et-portfolio5-right-wrap .et-portfolio5-item .popup-image:hover {
  background: #1EEFD6;
}
.et-portfolio5-title {
  margin-top: 115px;
  margin-bottom: 165px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .et-portfolio5-title {
    margin-top: -10px;
    margin-bottom: 70px;
  }
}

.et-portfolio5-wrapper .et-portfolio5-item:nth-child(1) {
  background: var(--clr-theme-3);
}
.et-portfolio5-wrapper .et-portfolio5-item:nth-child(1) a {
  background: var(--clr-theme-1);
}
.et-portfolio5-wrapper .et-portfolio5-item:nth-child(1) a:hover {
  background: var(--clr-theme-3);
}
.et-portfolio5-wrapper .et-portfolio5-item:nth-child(2) {
  background: #FD6FA2;
}
.et-portfolio5-wrapper .et-portfolio5-item:nth-child(2) a {
  background: var(--clr-theme-1);
}
.et-portfolio5-wrapper .et-portfolio5-item:nth-child(2) a:hover {
  background: #FD6FA2;
}

/*----------------------------------------*/
/*  31. TESTIMONIAL CSS START
/*----------------------------------------*/
.testimonial-author-img {
  margin-right: 20px;
}
.testimonial-author-img img {
  width: 60px;
  height: 60px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}

.testimonial__item-one-content {
  background-color: rgb(255, 255, 255);
  -webkit-box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
  -moz-box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
  -ms-box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
  -o-box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  position: relative;
  padding: 30px 40px 30px 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px), only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial__item-one-content {
    padding: 30px 20px 30px 20px;
  }
}
.testimonial__item-one-content::before {
  position: absolute;
  width: 60px;
  height: 35px;
  background: var(--clr-common-white);
  bottom: -20px;
  left: 100px;
  content: "";
  clip-path: polygon(0 31%, 0% 100%, 100% 33%);
}
.testimonial__item-one-content p {
  font-size: 20px;
  line-height: 34px;
  margin-bottom: 0;
}
@media (max-width: 575px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial__item-one-content p {
    font-size: 18px;
  }
}

.testimonial-author {
  margin-left: 40px;
  margin-top: 40px;
}

.testimonial-author-content h4 {
  font-size: 20px;
}
@media (max-width: 575px) {
  .testimonial-author-content h4 {
    font-size: 18px;
  }
}
.testimonial-author-content span {
  font-size: 14px;
  text-transform: capitalize;
}

.testimonial__item {
  background: #14171d;
  padding: 45px 50px 50px 50px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  overflow: hidden;
  position: relative;
  z-index: 5;
}
@media (max-width: 575px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .testimonial__item {
    padding: 30px 20px 35px 20px;
  }
}
.testimonial__item::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  z-index: -1;
  background-image: -moz-linear-gradient(0deg, var(--clr-theme-1) 0%, var(--clr-theme-3) 100%);
  background-image: -webkit-linear-gradient(0deg, var(--clr-theme-1) 0%, var(--clr-theme-3) 100%);
  background-image: -ms-linear-gradient(0deg, var(--clr-theme-1) 0%, var(--clr-theme-3) 100%);
  opacity: 0;
}
.testimonial__rating {
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(13deg, var(--clr-theme-1), var(--clr-theme-3), var(--clr-theme-3), var(--clr-theme-1));
  margin-bottom: 15px;
  font-size: 14px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.testimonial__text p {
  font-size: 20px;
  color: #888e9a;
  line-height: 34px;
  margin-bottom: 30px;
}
.testimonial__avater-info h4 {
  color: var(--clr-common-white);
}
@media (max-width: 575px) {
  .testimonial__avater-info h4 {
    font-size: 18px;
  }
}
.testimonial__avater-info span {
  font-size: 14px;
  color: var(--clr-text-7);
  text-transform: capitalize;
}
.testimonial__avater-thumb img {
  width: 60px;
  height: 60px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.testimonial__quote-icon img {
  position: absolute;
  bottom: 20px;
  right: 20px;
  opacity: 0;
}

.testimonial__active .swiper-slide-active .testimonial__item::before {
  opacity: 1;
}

.testimonial__active .swiper-slide-active .testimonial__text p {
  color: var(--clr-common-white);
}

.testimonial__active .swiper-slide-active .testimonial__rating {
  background-image: linear-gradient(13deg, var(--clr-common-white), var(--clr-common-white), var(--clr-common-white), var(--clr-common-white));
}

.testimonial__active .swiper-slide-active .testimonial__avater-info span {
  color: var(--clr-common-white);
}

.testimonial__active .swiper-slide-active .testimonial__avater-info span {
  color: var(--clr-common-white);
}

.testimonial__active .swiper-slide-active .testimonial__quote-icon img {
  opacity: 1;
}

.testimonial__main-wrapper {
  border-radius: 10px;
  padding: 65px 80px 105px 80px;
  background: var(--clr-common-white);
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
  margin-top: -140px;
  position: relative;
}
@media (max-width: 575px) {
  .testimonial__main-wrapper {
    padding: 65px 40px 105px 40px;
  }
}

.testimonial__text-2 p {
  font-size: 20px;
  line-height: 34px;
  margin-bottom: 33px;
  max-width: 325px;
}
@media (max-width: 575px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial__text-2 p {
    font-size: 18px;
  }
}

.testimonial__item-2 .testimonial__avater-info h4 {
  color: var(--clr-common-heading);
}

.bd-ud-testimonial-shape {
  top: 15px;
  bottom: 15px;
}
.bd-ud-testimonial-shape img {
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-ud-testimonial-img {
    margin-bottom: 40px;
  }
}
.bd-ud-testimonial--170 {
  margin-top: -170px;
}
.bd-ud-testimonial-wrapper {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
}
.bd-ud-testimonial-item {
  padding: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .bd-ud-testimonial-item {
    padding: 35px 30px;
  }
}
@media (max-width: 575px) {
  .bd-ud-testimonial-item {
    padding: 40px 25px;
  }
}
.bd-ud-testimonial-bg {
  background: linear-gradient(95.09deg, var(--clr-theme-4) -1.37%, var(--clr-theme-1) 100%);
  box-shadow: 0px 4px 105px rgba(14, 132, 225, 0.12);
  border-radius: 10px;
}
.bd-ud-testimonial-content {
  position: relative;
  margin-left: 64px;
  margin-right: 25px;
}
@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: 768px) and (max-width: 991px) {
  .bd-ud-testimonial-content {
    margin-left: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-ud-testimonial-content {
    margin: 0;
  }
}
.bd-ud-testimonial-content h4 {
  font-size: 24px;
  color: var(--clr-common-white);
  font-weight: var(--bd-fw-sbold);
  margin-bottom: 34px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 450px) {
  .bd-ud-testimonial-content h4 {
    margin-bottom: 20px;
  }
}
.bd-ud-testimonial-content p {
  color: var(--clr-common-white);
  font-size: 18px;
  font-weight: var(--bd-fw-medium);
  margin-bottom: 30px;
  line-height: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-ud-testimonial-content p {
    font-size: 16px;
    line-height: 28px;
  }
}
.bd-ud-testimonial-content > span {
  font-size: 16px;
  color: var(--clr-common-white);
  font-weight: var(--bd-fw-normal);
}
.bd-ud-testimonial-rating {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--clr-bg-1);
  border-radius: 100px;
  padding: 12px 20px;
  line-height: 1;
  display: inline-block;
}
.bd-ud-testimonial-rating span {
  color: var(--clr-common-white);
  font-weight: var(--bd-fw-sbold);
  font-size: 14px;
}
.bd-ud-testimonial-rating i {
  color: var(--clr-common-orange);
  font-weight: var(--bd-fw-sbold);
  transform: translateY(3px);
  display: inline-block;
  margin-left: 6px;
}
@media (max-width: 450px) {
  .bd-ud-testimonial-rating {
    position: inherit;
    margin-bottom: 20px;
  }
}
.bd-ud-testimonial2 {
  background: var(--clr-bg-5);
}
.bd-ud-testimonial2-auth {
  height: 570px;
  width: 570px;
}
.bd-ud-testimonial2-auth > img {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-ud-testimonial2-auth {
    width: auto;
    height: auto;
  }
}
.bd-ud-testimonial2-item {
  display: flex;
  gap: 0 20px;
  padding: 30px 90px 12px 0px;
  border-bottom: 2px solid transparent;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .bd-ud-testimonial2-item {
    padding: 30px 20px 12px 0px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-ud-testimonial2-item {
    border-bottom: 0;
  }
}
@media (max-width: 450px) {
  .bd-ud-testimonial2-item {
    padding: 30px 10px 12px 0px;
    flex-wrap: wrap;
  }
}
.bd-ud-testimonial2-img {
  min-width: 75px;
  height: 75px;
}
.bd-ud-testimonial2-img img {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.bd-ud-testimonial2-content {
  margin-top: 30px;
}
.bd-ud-testimonial2-content h3 {
  color: #110804;
  font-size: 20px;
  font-weight: var(--bd-fw-medium);
  margin-bottom: 4px;
}
.bd-ud-testimonial2-content p {
  color: #4B423E;
  font-size: 20px;
  line-height: 30px;
}
.bd-ud-testimonial2-rating {
  margin-bottom: 20px;
}
.bd-ud-testimonial2-rating i {
  color: #F9C304;
  font-size: 13px;
}
.bd-ud-testimonial2-active .slick-arrow {
  position: absolute;
  bottom: -70px;
  height: 52px;
  width: 52px;
  display: inline-block;
  border-radius: 50%;
  border: 1px solid #BCBCBC;
  line-height: 52px;
  z-index: 1;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.bd-ud-testimonial2-active .slick-arrow:hover {
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
  border-color: var(--clr-theme-1);
}
.bd-ud-testimonial2-active .slick-next.slick-arrow {
  left: 73px;
}
.bd-ud-testimonial2-active .slick-current .bd-ud-testimonial2-item {
  border-bottom-color: var(--clr-border-16);
}
.bd-ud-testimonial2-auth img {
  max-width: 100%;
}
.bd-ud-testimonial2 .bd-ud-quate {
  width: 164px;
  height: 164px;
  background: var(--clr-common-white);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  line-height: 164px;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .bd-ud-testimonial2 .bd-ud-quate {
    width: 120px;
    height: 120px;
    line-height: 120px;
  }
  .bd-ud-testimonial2 .bd-ud-quate img {
    width: 80px;
  }
}
@media (max-width: 575px) {
  .bd-ud-testimonial2 .bd-ud-quate {
    width: 100px;
    height: 100px;
    line-height: 100px;
  }
  .bd-ud-testimonial2 .bd-ud-quate img {
    width: 50px;
  }
}

.bd-ud-testimonial-active button {
  width: 52px;
  height: 52px;
  background: transparent;
  border: 1px solid var(--clr-border-13);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  line-height: 52px;
  color: var(--clr-border-13);
  -webkit-transform: rotate(-90deg) translateX(-40%);
  -moz-transform: rotate(-90deg) translateX(-40%);
  -ms-transform: rotate(-90deg) translateX(-40%);
  -o-transform: rotate(-90deg) translateX(-40%);
  transform: rotate(-90deg) translateX(-40%);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  top: 27%;
  right: 60px;
  position: absolute;
  z-index: 1;
}
@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: 768px) and (max-width: 991px) {
  .bd-ud-testimonial-active button {
    top: 22%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .bd-ud-testimonial-active button {
    right: 30px;
  }
}
.bd-ud-testimonial-active button.slick-next {
  top: auto;
  bottom: 38%;
}
@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: 768px) and (max-width: 991px) {
  .bd-ud-testimonial-active button.slick-next {
    bottom: 37%;
  }
}
.bd-ud-testimonial-active button:hover {
  background: var(--clr-common-white);
  color: var(--clr-theme-1);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-ud-testimonial-active button {
    opacity: 0;
    visibility: hidden;
  }
}

.et-testimonial2-shape::before {
  content: "";
  background: linear-gradient(180deg, #F3FAFF 0%, #6FBEFD 100%);
  filter: blur(217px);
  position: absolute;
  width: 728px;
  height: 728px;
  border-radius: 50%;
  overflow: hidden;
  opacity: 0.3;
  left: -138px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .et-testimonial2-shape::before {
    display: none;
  }
}

.dark .bd-ud-testimonial2 {
  background: transparent;
}
.dark .bd-ud-testimonial2-content h3 {
  color: var(--clr-common-white);
}
.dark .bd-ud-testimonial2-content p {
  color: var(--clr-common-white);
}
.dark .bd-ud-testimonial2-active .slick-arrow {
  border: 1px solid var(--clr-common-white);
  color: var(--clr-common-white);
}

/*----------------------------------------*/
/*  25. NEWSLETTTER CSS START
/*----------------------------------------*/
.newslatter__wrapper {
  background-color: var(--clr-common-white);
  -webkit-box-shadow: 0px -16px 32px 0px rgba(0, 0, 0, 0.04);
  -moz-box-shadow: 0px -16px 32px 0px rgba(0, 0, 0, 0.04);
  -ms-box-shadow: 0px -16px 32px 0px rgba(0, 0, 0, 0.04);
  -o-box-shadow: 0px -16px 32px 0px rgba(0, 0, 0, 0.04);
  box-shadow: 0px -16px 32px 0px rgba(0, 0, 0, 0.04);
  padding: 60px 60px 60px 60px;
  position: relative;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .newslatter__wrapper {
    padding: 55px 20px 50px 20px;
  }
}
.newslatter__wrapper:before {
  position: absolute;
  content: "";
  width: calc(100% - 20px);
  height: 20px;
  left: 50%;
  bottom: -10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  z-index: -1;
  background-image: -moz-linear-gradient(0deg, var(--clr-theme-1) 0%, var(--clr-theme-3) 100%);
  background-image: -webkit-linear-gradient(0deg, var(--clr-theme-1) 0%, var(--clr-theme-3) 100%);
  background-image: -ms-linear-gradient(0deg, var(--clr-theme-1) 0%, var(--clr-theme-3) 100%);
  padding: 0px 20px;
  -webkit-transform: translatex(-50%);
  -moz-transform: translatex(-50%);
  -ms-transform: translatex(-50%);
  -o-transform: translatex(-50%);
  transform: translatex(-50%);
}
.newslatter__area {
  position: relative;
  margin-bottom: -95px;
  z-index: 55;
}
.newslatter__form-wrapper {
  padding-left: 60px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .newslatter__form-wrapper {
    padding-left: 0px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .newslatter__form-wrapper {
    margin-top: 30px;
  }
}
.newslatter__input {
  position: relative;
}
.newslatter__input i {
  position: absolute;
  top: 22px;
  left: 20px;
  color: var(--bd-ff-heading);
}
.newslatter__input button {
  padding: 0px 35px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 0px 6px 6px 0px;
  -moz-border-radius: 0px 6px 6px 0px;
  -o-border-radius: 0px 6px 6px 0px;
  -ms-border-radius: 0px 6px 6px 0px;
  border-radius: 0px 6px 6px 0px;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  text-transform: uppercase;
  font-size: 16px;
  font-weight: var(--bd-fw-sbold);
  color: var(--clr-common-white);
  background-image: linear-gradient(to right, var(--clr-theme-3), var(--clr-theme-1), var(--clr-theme-1), var(--clr-theme-3));
  background-position: 100% 100%;
  background-size: 300% 100%;
}
.newslatter__input button:hover {
  background-position: 0% 100%;
  color: var(--clr-common-white);
}
@media (max-width: 575px) {
  .newslatter__input button {
    position: static;
    margin-top: 45px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -o-border-radius: 6px;
    -ms-border-radius: 6px;
    border-radius: 6px;
  }
}
.newslatter__input input {
  border: 2px solid var(--clr-border-3);
  height: 60px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  width: 100%;
  position: relative;
  padding-left: 42px;
  padding-right: 180px;
}
@media (max-width: 575px) {
  .newslatter__input input {
    padding-right: 20px;
  }
}

/*----------------------------------------*/
/*  24. NEWS CSS START
/*----------------------------------------*/
.news__singel-item:hover .news__item-thumb img {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}
.news__item-thumb {
  position: relative;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  overflow: hidden;
}
.news__item-thumb img {
  width: 100%;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.news__item-meta ul li {
  list-style: none;
  display: inline-block;
  margin-right: 25px;
  font-size: 14px;
}
.news__item-meta ul li i {
  margin-right: 5px;
}
.news__item-meta li span {
  color: var(--clr-text-4);
  text-transform: capitalize;
}
.news__item-meta li a {
  color: var(--clr-text-4);
  text-transform: capitalize;
  line-height: 28px;
}
.news__item-meta li a:hover {
  color: var(--clr-theme-1);
}
.news__title a {
  font-size: 24px;
  line-height: 1.4;
}
@media (max-width: 575px), only screen and (min-width: 768px) and (max-width: 991px) {
  .news__title a {
    font-size: 20px;
  }
}
.news__title a:hover {
  color: var(--clr-theme-1);
}
.news__tag {
  position: absolute;
  top: 30px;
  left: 30px;
  background-image: linear-gradient(to right, var(--clr-theme-3), var(--clr-theme-1), var(--clr-theme-1), var(--clr-theme-3));
  background-position: 100% 100%;
  background-size: 300% 100%;
  color: var(--clr-common-white);
  padding: 2px 12px;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
}
.news__tag:hover {
  background-position: 0% 100%;
  color: var(--clr-common-white);
}

.news__item-2 {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.news__item-2:hover .news__content-2 {
  border-left: 2px solid var(--clr-common-white);
  border-right: 2px solid var(--clr-common-white);
  border-bottom: 2px solid var(--clr-common-white);
  -webkit-box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
  -moz-box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
  -ms-box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
  -o-box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
}
.news__item-2:hover .news__thumb-2 img {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}
.news__meta {
  display: flex;
  background: linear-gradient(0deg, var(--clr-theme-1) 0%, var(--clr-theme-3) 100%);
  border-radius: 50px;
  padding: 7px 20px;
  width: calc(100% - 76px);
  position: absolute;
  top: -20px;
  left: 50%;
  flex-wrap: wrap;
  transform: translateX(-50%);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .news__meta {
    width: calc(100% - 30px);
  }
}
@media (max-width: 575px), only screen and (min-width: 768px) and (max-width: 991px) {
  .news__meta {
    width: calc(100% - 15px);
  }
}
.news__meta span {
  color: var(--clr-common-white);
  position: relative;
  padding-right: 20px;
  margin-right: 20px;
  font-size: 14px;
  font-weight: var(--bd-fw-sbold);
  text-transform: uppercase;
}
@media (max-width: 575px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .news__meta span {
    padding-right: 10px;
    margin-right: 10px;
  }
}
.news__meta span i {
  margin-right: 8px;
}
.news__meta span:last-child {
  margin-right: 0;
  padding-right: 0;
}
.news__meta span:not(:last-child)::before {
  position: absolute;
  content: "";
  height: 16px;
  width: 1px;
  background-color: var(--clr-border-8);
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.news__content-2 {
  position: relative;
  border-radius: 0px 0px 10px 10px;
  padding: 55px 40px 35px 40px;
  border-left: 2px solid var(--clr-border-5);
  border-right: 2px solid var(--clr-border-5);
  border-bottom: 2px solid var(--clr-border-5);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media (max-width: 575px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .news__content-2 {
    padding: 55px 20px 35px 20px;
  }
}
.news__content-2 h3 a {
  margin-bottom: 10px;
  display: block;
}
.news__content-2 h3 a:hover {
  color: var(--clr-theme-1);
}
@media (max-width: 575px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px) {
  .news__content-2 h3 a {
    font-size: 20px;
  }
}
.news__content-2 p {
  margin-bottom: 0;
}
.news__thumb-2 {
  overflow: hidden;
  -webkit-border-radius: 10px 10px 0px 0px;
  -moz-border-radius: 10px 10px 0px 0px;
  -o-border-radius: 10px 10px 0px 0px;
  -ms-border-radius: 10px 10px 0px 0px;
  border-radius: 10px 10px 0px 0px;
}
.news__thumb-2 img {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.news__btn {
  font-size: 16px;
  font-weight: var(--bd-fw-sbold);
  text-transform: uppercase;
  background-image: -webkit-linear-gradient(0deg, #c8c8c8 0%, #c8c8c8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 1s ease-in-out;
}
.news__btn:hover {
  background-image: -webkit-linear-gradient(0deg, var(--clr-theme-1) 0%, var(--clr-theme-3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 1s ease-in-out;
}

.news__style-3 .news__tag {
  right: 30px;
  left: auto;
  top: -50px;
}

.news__item-content {
  position: relative;
}

.blog-grid > div {
  transition: all .3s ease;
}

.blog__main-wrapper {
  margin-right: 60px;
  position: relative;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog__main-wrapper {
    margin-right: 0px;
  }
}
.blog__main-wrapper:after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background: var(--clr-border-10);
  right: -45px;
  top: 0px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog__main-wrapper:after {
    display: none;
  }
}
.blog__item {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0px 30px 40px 0px rgba(1, 11, 60, 0.1);
  -moz-box-shadow: 0px 30px 40px 0px rgba(1, 11, 60, 0.1);
  -ms-box-shadow: 0px 30px 40px 0px rgba(1, 11, 60, 0.1);
  -o-box-shadow: 0px 30px 40px 0px rgba(1, 11, 60, 0.1);
  box-shadow: 0px 30px 40px 0px rgba(1, 11, 60, 0.1);
}
.blog__item:hover .blog__thumb img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.blog__content {
  padding: 30px;
  padding-bottom: 35px;
}
.blog__tag {
  margin-bottom: 13px;
}
.blog__tag-2 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}
.blog__tag-2 a {
  padding: 2px 13px;
  font-size: 15px;
  color: var(--clr-text-4);
  background: var(--clr-common-white);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  text-transform: capitalize;
  text-transform: capitalize;
  border: 1px solid #EFEFEF;
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.blog__tag-2 a::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  background-image: linear-gradient(to right, var(--clr-theme-3), var(--clr-theme-1), var(--clr-theme-1), var(--clr-theme-3));
  background-position: 100% 100%;
  background-size: 300% 100%;
  opacity: 0;
  visibility: hidden;
}
.blog__tag-2 a:hover {
  color: var(--clr-common-white);
  background: var(--clr-theme-1);
}
.blog__tag-2 a:hover:after {
  opacity: 1;
  visibility: visible;
}
.blog__author-thumb img {
  width: 35px;
  height: 35px;
  border: 2px solid var(--clr-common-white);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0px 10px 14px 0px rgba(1, 11, 60, 0.1);
  -moz-box-shadow: 0px 10px 14px 0px rgba(1, 11, 60, 0.1);
  -ms-box-shadow: 0px 10px 14px 0px rgba(1, 11, 60, 0.1);
  -o-box-shadow: 0px 10px 14px 0px rgba(1, 11, 60, 0.1);
  box-shadow: 0px 10px 14px 0px rgba(1, 11, 60, 0.1);
}
.blog__author-thumb-3 img {
  width: 50px;
  height: 50px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.blog__author-3 {
  padding: 30px;
  padding-bottom: 35px;
  padding-right: 60px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
}
@media (max-width: 575px) {
  .blog__author-3 {
    padding-right: 30px;
  }
}
@media (max-width: 575px) {
  .blog__author-content {
    margin-top: 25px;
  }
}
.blog__author-content h4 {
  font-size: 16px;
  margin-bottom: 0;
}
.blog__author-content span {
  display: inline-block;
  margin-bottom: 10px;
}
.blog__author-content p {
  font-size: 20px;
  line-height: 1.2;
  color: var(--clr-common-black);
  margin-bottom: 0;
}
.blog__text h3 {
  font-size: 30px;
  margin-bottom: 12px;
}
.blog__text p {
  font-size: 18px;
  line-height: 28px;
  color: var(--clr-text-4);
  margin-bottom: 27px;
}
.blog__quote {
  padding: 40px 50px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
}
@media (max-width: 575px) {
  .blog__quote {
    padding: 20px 30px;
  }
}
.blog__quote blockquote {
  margin-bottom: 0;
}
.blog__quote p {
  font-size: 24px;
  color: var(--clr-common-black);
  line-height: 1.3;
  margin-bottom: 25px;
}
.blog__quote h4 {
  font-size: 20px;
  padding-left: 30px;
  position: relative;
  margin-bottom: 0;
}
.blog__quote h4::after {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 19px;
  height: 2px;
  background: var(--clr-common-black);
}
.blog__quote img.quote {
  position: absolute;
  bottom: -34px;
  right: 50px;
}
.blog__link p {
  font-size: 26px;
  line-height: 1.4;
  font-weight: 500;
  color: var(--clr-common-black);
}
@media (max-width: 575px) {
  .blog__link p {
    font-size: 24px;
  }
}
.blog__link p a {
  color: var(--clr-theme-1);
}
.blog__img img {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
}
.blog__social h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0px;
  margin-right: 10px;
}
.blog__social ul li {
  display: inline-block;
  margin-left: 5px;
}
.blog__social ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  text-align: center;
  font-size: 16px;
  color: var(--clr-common-black);
  background: var(--clr-bg-grey-1);
  color: var(--clr-common-black);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  z-index: 5;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.blog__social ul li a:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, var(--clr-theme-3), var(--clr-theme-1), var(--clr-theme-1), var(--clr-theme-3));
  background-position: 100% 100%;
  background-size: 300% 100%;
  z-index: -1;
  opacity: 0;
}
.blog__social ul li a:hover {
  color: var(--clr-common-white);
}
.blog__social ul li a:hover::after {
  opacity: 1;
}
.blog__line {
  margin-bottom: 28px;
  width: 100%;
  height: 1px;
  background: var(--clr-border-10);
}
.blog__comment h3 {
  font-size: 26px;
  margin-bottom: 35px;
}
.blog__comment-input input, .blog__comment-input textarea {
  width: 100%;
  height: 56px;
  line-height: 56px;
  border: 2px solid var(--clr-bg-grey-2);
  background: var(--clr-bg-grey-2);
  color: var(--clr-common-black);
  font-size: 15px;
  outline: none;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  margin-bottom: 20px;
  padding: 0 24px;
  border: 1px solid transparent;
}
.blog__comment-input input::placeholder, .blog__comment-input textarea::placeholder {
  font-size: 15px;
  color: var(--clr-text-4);
}
.blog__comment-input input:focus, .blog__comment-input textarea:focus {
  border: double 1px transparent;
  background-image: linear-gradient(#f9f9f9, #f9f9f9), linear-gradient(to right, var(--clr-theme-1), var(--clr-theme-3));
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
.blog__comment-input textarea {
  height: 180px;
  resize: none;
  line-height: 1.2;
  padding: 23px;
  padding-top: 19px;
  border: 1px solid transparent;
  margin-bottom: 13px;
}
.blog__comment-input textarea:focus {
  border: double 1px transparent;
  background-image: linear-gradient(#f9f9f9, #f9f9f9), linear-gradient(to right, var(--clr-theme-1), var(--clr-theme-3));
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
.blog__comment-agree {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.blog__comment-agree input {
  margin: 0;
  appearance: none;
  -moz-appearance: none;
  display: block;
  width: 18px;
  height: 18px;
  background: var(--clr-common-white);
  border: 1px solid #b9bac1;
  outline: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}
.blog__comment-agree input:checked {
  position: relative;
  background-color: var(--clr-theme-1);
  border-color: transparent;
}
.blog__comment-agree input:checked::after {
  box-sizing: border-box;
  content: "\f00c";
  position: absolute;
  font-family: var(--bd-ff-fontawesome);
  font-size: 14px;
  color: var(--clr-common-white);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.blog__comment-agree input:hover {
  cursor: pointer;
}
.blog__comment-agree label {
  color: var(--clr-text-4);
}
.blog__comment-agree label a {
  color: var(--clr-common-black);
  font-weight: 600;
  padding-left: 4px;
}
.blog__comment-agree label a:hover {
  color: var(--clr-theme-1);
}
.blog__comment-agree label:hover {
  cursor: pointer;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog__sidebar {
    padding-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog__sidebar {
    padding-left: 0;
    margin-top: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog__sidebar {
    padding-left: 0;
    margin-top: 50px;
  }
}
@media (max-width: 575px) {
  .blog__sidebar {
    padding-left: 0;
    margin-top: 50px;
  }
}
.blog__meta-3 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.sidebar__widget-title {
  font-size: 20px;
  padding-bottom: 16px;
  position: relative;
}
.sidebar__widget-title::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: var(--clr-border-10);
  left: 0;
  bottom: 0;
}
.sidebar__widget-title::after {
  position: absolute;
  content: "";
  width: 60px;
  height: 1px;
  background: var(--clr-theme-1);
  left: 0;
  bottom: 0;
  background-image: linear-gradient(to right, var(--clr-theme-3), var(--clr-theme-1), var(--clr-theme-1), var(--clr-theme-3));
  background-position: 100% 100%;
  background-size: 300% 100%;
}
.sidebar__search input {
  width: 100%;
  height: 60px;
  line-height: 56px;
  background: var(--clr-bg-grey-2);
  border: 0;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  padding-left: 20px;
  padding-right: 72px;
}
.sidebar__search input::placeholder {
  color: var(--clr-text-4);
}
.sidebar__search button {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 0px 6px 6px 0px;
  -moz-border-radius: 0px 6px 6px 0px;
  -o-border-radius: 0px 6px 6px 0px;
  -ms-border-radius: 0px 6px 6px 0px;
  border-radius: 0px 6px 6px 0px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  text-transform: uppercase;
  font-size: 16px;
  font-weight: var(--bd-fw-sbold);
  font-size: 14px;
  background-image: linear-gradient(to right, var(--clr-theme-3), var(--clr-theme-1), var(--clr-theme-1), var(--clr-theme-3));
  border: none;
  color: var(--clr-common-white);
  background-position: 100% 100%;
  background-size: 300% 100%;
}
.sidebar__search button:hover {
  color: var(--clr-common-white);
}
.sidebar__category ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.sidebar__category ul li a {
  font-size: 16px;
  color: var(--clr-text-4);
  padding-left: 20px;
  position: relative;
}
.sidebar__category ul li a::after {
  position: absolute;
  content: "\f054";
  font-family: var(--bd-ff-fontawesome);
  left: 0;
  top: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.sidebar__category ul li a:hover {
  color: var(--clr-theme-1);
}
.sidebar__category ul li a:hover::after {
  left: 5px;
}
.sidebar__tag {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px 10px;
}
.sidebar__tag a {
  display: inline-block;
  padding: 3px 13px;
  font-size: 15px;
  color: var(--clr-text-4);
  background: var(--clr-common-white);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  border: 1px solid #EFEFEF;
  margin-bottom: 10px;
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.sidebar__tag a::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  background-image: linear-gradient(to right, var(--clr-theme-3), var(--clr-theme-1), var(--clr-theme-1), var(--clr-theme-3));
  background-position: 100% 100%;
  background-size: 300% 100%;
  opacity: 0;
  visibility: hidden;
}
.sidebar__tag a:hover {
  color: var(--clr-common-white);
  background: var(--clr-theme-1);
}
.sidebar__tag a:hover:after {
  opacity: 1;
  visibility: visible;
}

.rc__post:not(:last-child) {
  margin-bottom: 30px;
}
.rc__meta span {
  color: var(--clr-text-4);
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  display: inline-block;
  margin-bottom: 10px;
}
.rc__thumb img {
  width: 80px;
  height: 80px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
}
.rc__title {
  font-size: 16px;
  color: var(--clr-common-black);
  margin-bottom: 0px;
  font-weight: 600;
}
.rc__title a:hover {
  color: var(--clr-theme-1);
}

.latest__comments h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 35px;
}
.latest__comments ul li {
  margin-bottom: 15px;
}
.latest__comments ul li .children {
  margin-left: 100px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .latest__comments ul li .children {
    margin-left: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .latest__comments ul li .children {
    margin-left: 50px;
  }
}
.latest__comments ul li .children-2 {
  margin-left: 100px;
  margin-top: 10px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .latest__comments ul li .children-2 {
    margin-left: 0px;
  }
}

.comments__box {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  padding: 30px 30px;
}

.comments__avatar img {
  width: 50px;
  height: 50px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}

@media (max-width: 575px) {
  .comments__text {
    margin-left: 0;
    margin-top: 15px;
  }
}
.comments__text p {
  font-size: 16px;
  color: var(--clr-text-4);
  margin-bottom: 15px;
}

.comments__replay {
  margin-top: 10px;
}
.comments__replay a {
  color: var(--clr-theme-1);
  height: 25px;
  padding: 0 8px;
  font-weight: 500;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
}
.comments__replay a:hover {
  color: var(--clr-common-white);
  background: var(--clr-theme-1);
}

.avatar__name {
  margin-bottom: 5px;
}
.avatar__name h5 {
  font-size: 16px;
  line-height: 1;
  margin-bottom: 0;
}
.avatar__name span {
  font-size: 14px;
  color: var(--clr-text-4);
}

.blue-link-btn a {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  text-transform: uppercase;
  color: var(--clr-theme-1);
}
.blue-link-btn a:hover {
  color: var(--clr-text-11);
}

.blog4-item {
  display: grid;
  grid-template-columns: max-content auto;
  gap: 25px;
}
.blog4-item a {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}
.blog4-item:not(:first-child) {
  padding-top: 35px;
  border-top: 1px solid #D2D2D2;
}
.blog4-item:not(:last-child) {
  margin-bottom: 40px;
}
.blog4-date {
  padding-top: 10px;
  text-align: center;
}
.blog4-date span {
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 26px;
  line-height: 24px;
  color: var(--clr-text-11);
}
.blog4-date p {
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  color: #7C7C7C;
}
.blog4-content h3 {
  margin-bottom: 25px;
}
.blog4-content h3 a {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 26px;
  line-height: 1.53;
  text-transform: capitalize;
  color: var(--clr-text-11);
}
@media (max-width: 450px) {
  .blog4-content h3 a {
    font-size: 20px;
    line-height: 1;
  }
}
.blog4-content h3 a:hover {
  color: var(--clr-theme-1);
}
.blog4-content h3 p {
  margin-bottom: 25px;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: var(--clr-text-11);
}

.blog5_bg {
  background-position: top left;
  z-index: 1;
  position: relative;
  height: 100%;
}
.blog5_bg::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: var(--clr-text-11);
  opacity: 0.75;
  z-index: -1;
}
.blog5_bg.fix.bg-css .row {
  height: 100%;
}
.blog5-bg {
  background: var(--clr-theme-1);
}
.blog5_box {
  padding: 50px 40px 30px 40px;
  height: 100%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .blog5-title-wrapper {
    padding: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog5-title-wrapper.pt-200.pb-165 {
    padding-top: 60px;
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .blog5-title-wrapper.pt-200.pb-165 {
    padding-top: 120px;
    padding-bottom: 60px;
  }
}
.blog5-title-wrapper .blog5_title {
  font-size: 55px;
  line-height: 1.1;
  color: var(--clr-common-white);
  text-transform: capitalize;
  font-weight: 500;
  transform: rotate(-90deg);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .blog5-title-wrapper .blog5_title {
    transform: rotate(0deg);
    margin-left: 25px;
    font-size: 40px;
  }
  .blog5-title-wrapper .blog5_title br {
    display: none;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog5-title-wrapper .blog5_title {
    transform: translateY(56px);
  }
}
@media (max-width: 575px) {
  .blog5-title-wrapper .blog5_title {
    font-size: 35px;
  }
}
.blog5-content p {
  color: #606060;
  text-transform: capitalize;
}
.blog5-content-title {
  font-size: 26px;
  line-height: 1.56;
  color: var(--clr-text-11);
  font-weight: 500;
  text-transform: capitalize;
  transition: 0.3s;
  display: inline-block;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .blog5-content-title {
    font-size: 22px;
  }
}
.blog5-content-title:hover {
  color: var(--clr-theme-1);
}
.blog5-content.white h4, .blog5-content.white p, .blog5-content.white .blg-btn a {
  color: var(--clr-common-white);
}
.blog5-meta a {
  font-size: 14px;
  color: var(--clr-theme-1);
  padding: 10px 18px;
  border: 2px solid var(--clr-theme-1);
  text-transform: uppercase;
  font-weight: var(--bd-fw-medium);
}
.blog5-meta a:hover {
  background: var(--clr-common-white);
  color: var(--clr-common-black);
}
.blog5-meta.white a {
  color: var(--clr-common-white);
  border-color: var(--clr-common-white);
}
.blog5-meta.white a:hover {
  background: var(--clr-common-white);
  color: var(--clr-theme-1);
}
.blog5_btn .blg-btn {
  color: var(--clr-theme-1);
}
.blog5_btn .blg-btn i {
  transform: translate(2px, 2px);
  transition: 0.3s;
}
.blog5_btn .blg-btn:hover i {
  transform: translate(5px, 2px);
}
.blog5_btn.white .blg-btn {
  color: var(--clr-common-white);
}
.blog5-thumb {
  height: 100%;
}
.blog5-thumb img {
  width: 100%;
  height: 100%;
}

.blog5_box {
  position: relative;
}
.blog5_box::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  transform: rotate(-45deg);
  left: -15px;
  background: #F4F4F4;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .blog5_box::before {
    display: none;
  }
}

.et-triangle-blue::before {
  background: var(--clr-theme-1);
}
.et-triangle-right::before {
  left: auto;
  right: -15px;
}

.dark .blog5_box.et-gray-bg {
  background: #090C1C;
}
.dark .blog5_box::before {
  background: #090C1C;
}
.dark .blog5-content p {
  color: var(--clr-common-white);
}
.dark .blog5-content-title {
  color: var(--clr-common-white);
}
.dark .blog5-content-title:hover {
  color: var(--clr-theme-1);
}
.dark .blog5-content.white h4:hover {
  color: var(--clr-common-white);
}
.dark .et-triangle-blue::before {
  background: var(--clr-theme-1);
}

.et-news2-item {
  padding: 30px;
  background: #F8F8F8;
}
@media (max-width: 450px) {
  .et-news2-item {
    padding: 25px 20px;
  }
}
.et-news2-item:hover .et-news2-img img {
  -webkit-transform: scale(1.06);
  -moz-transform: scale(1.06);
  -ms-transform: scale(1.06);
  -o-transform: scale(1.06);
  transform: scale(1.06);
}
.et-news2-img {
  overflow: hidden;
}
.et-news2-title {
  font-weight: 600;
  font-size: 24px;
  text-transform: capitalize;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 450px) {
  .et-news2-title {
    font-size: 20px;
  }
}
.et-news2-title:hover {
  color: var(--clr-theme-1);
}
.et-news2-meta ul {
  display: flex;
  column-gap: 30px;
}
@media (max-width: 450px) {
  .et-news2-meta ul {
    row-gap: 7px;
    flex-direction: column;
  }
}
.et-news2-meta ul li a {
  font-weight: 500;
  font-size: 14px;
  color: #7C7C7C;
}
.et-news2-meta ul li a i {
  font-size: 20px;
  margin-right: 7px;
}
.et-news2-meta ul li a:hover {
  color: var(--clr-theme-1);
}
.et-news2-category a {
  display: inline-block;
  font-weight: 500;
  font-size: 14px;
  text-transform: capitalize;
  color: var(--clr-theme-1);
  border: 1px solid var(--clr-theme-1);
  padding: 0 14px;
  line-height: 1;
  height: 30px;
  line-height: 30px;
}
.et-news2-category a:hover {
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
}

.et-news3-item {
  background: var(--clr-bg-5);
  border-radius: 6px;
  padding: 30px;
  display: grid;
  grid-template-columns: 45% auto;
  grid-gap: 25px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .et-news3-item {
    grid-template-columns: 100%;
  }
}
.et-news3-item:hover .et-news3-img img {
  -webkit-transform: scale(1.06);
  -moz-transform: scale(1.06);
  -ms-transform: scale(1.06);
  -o-transform: scale(1.06);
  transform: scale(1.06);
}
.et-news3-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.5;
  text-transform: capitalize;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 450px) {
  .et-news3-title {
    font-size: 20px;
  }
}
.et-news3-title:hover {
  color: var(--clr-theme-1);
}
.et-news3-category a {
  font-weight: 500;
  font-size: 14px;
  text-transform: capitalize;
  color: #8E8E8E;
  border: 1px solid #8E8E8E;
  border-radius: 5px;
  display: inline-block;
  height: 32px;
  line-height: 32px;
  padding: 0 14px;
}
.et-news3-category a:hover {
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
  border-color: transparent;
}
.et-news3-content p {
  color: #606060;
  margin-bottom: 30px;
}
.et-news3-meta ul {
  display: flex;
  gap: 6px 40px;
  flex-wrap: wrap;
}
.et-news3-meta ul li a {
  font-weight: 500;
  font-size: 14px;
  color: #7C7C7C;
}
.et-news3-meta ul li a i {
  margin-right: 5px;
}
.et-news3-meta ul li a b {
  color: var(--clr-text-11) 9E;
}
.et-news3-meta ul li a:hover {
  color: var(--clr-theme-1);
}
.et-news3-date {
  top: 20px;
  left: 20px;
  background: var(--clr-theme-1);
  border-radius: 6px;
}
.et-news3-date a {
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  color: var(--clr-common-white);
  display: inline-block;
  padding: 15px 10px;
  text-align: center;
}
.et-news3-date a b {
  color: var(--clr-text-11);
}
.et-news3-img {
  overflow: hidden;
}

.et-news3-widget {
  background: var(--clr-bg-5);
  border-radius: 6px;
  padding: 40px;
}
@media (max-width: 450px) {
  .et-news3-widget {
    padding: 30px 25px;
  }
}

.et-news3-w-title {
  font-weight: 600;
  font-size: 20px;
  color: var(--clr-text-11);
  text-transform: capitalize;
  margin-bottom: 40px;
}
.et-news3-w-search {
  position: relative;
}
.et-news3-w-search input {
  border: 0;
  border-bottom: 1px solid #D5D5D5;
  display: block;
  width: 100%;
  height: 60px;
  padding-left: 10px;
  padding-right: 30px;
  background: transparent;
}
.et-news3-w-search i {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--clr-theme-1);
}
.et-news3-w-category ul li {
  line-height: 1;
  border-bottom: 1px solid #D5D5D5;
  margin-bottom: 25px;
  padding-bottom: 25px;
}
.et-news3-w-category ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.et-news3-w-category ul li a {
  font-weight: 400;
  font-size: 16px;
  color: var(--clr-text-11);
  display: block;
}
.et-news3-w-category ul li a span {
  float: right;
}
.et-news3-w-category ul li a:hover {
  color: var(--clr-theme-1);
  padding-left: 10px;
}
.et-news3-w-post-item {
  display: grid;
  grid-template-columns: 23% auto;
  grid-gap: 20px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #D5D5D5;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), (max-width: 450px) {
  .et-news3-w-post-item {
    grid-gap: 15px;
  }
}
.et-news3-w-post-item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
.et-news3-w-post-item:hover .et-news3-w-post-img img {
  -webkit-transform: scale(1.06);
  -moz-transform: scale(1.06);
  -ms-transform: scale(1.06);
  -o-transform: scale(1.06);
  transform: scale(1.06);
}
.et-news3-w-post-img {
  overflow: hidden;
}
.et-news3-w-post-text h5 {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  text-transform: capitalize;
  margin-bottom: 7px;
}
.et-news3-w-post-text h5:hover {
  color: var(--clr-theme-1);
}
.et-news3-w-post-meta ul {
  display: flex;
  gap: 0 40px;
  flex-wrap: wrap;
}
.et-news3-w-post-meta ul li a {
  font-weight: 500;
  font-size: 14px;
  color: #7C7C7C;
}
.et-news3-w-post-meta ul li a b {
  color: rgba(22, 26, 51, 0.6196078431);
}
.et-news3-w-post-meta ul li a i {
  margin-right: 5px;
}
.et-news3-w-post-meta ul li a:hover {
  color: var(--clr-theme-1);
}
.et-news3-w-tag {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.et-news3-w-tag a {
  display: inline-block;
  font-weight: 400;
  font-size: 14px;
  text-transform: capitalize;
  color: #979797;
  border: 1px solid #D9D9D9;
  border-radius: 2px;
  padding: 3px 8px;
}
.et-news3-w-tag a:hover {
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
  border-color: transparent;
}
.et-news3-w-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 10px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .et-news3-w-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .et-news3-w-gallery {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .et-news3-w-gallery {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (max-width: 450px) {
  .et-news3-w-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
.et-news3-w-gallery a {
  position: relative;
  overflow: hidden;
}
.et-news3-w-gallery a img {
  width: 100%;
}
.et-news3-w-gallery a::before {
  content: "\f16d";
  font-family: "Font Awesome 5 Brands";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--clr-common-white);
  z-index: 1;
  font-size: 20px;
  opacity: 0;
  visibility: hidden;
}
.et-news3-w-gallery a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, var(--clr-theme-1) 0%, var(--clr-theme-4) 100%);
  opacity: 0;
  visibility: hidden;
}
.et-news3-w-gallery a:hover::after {
  opacity: 0.6;
  visibility: visible;
}
.et-news3-w-gallery a:hover::before {
  opacity: 1;
  visibility: visible;
}
.et-news3-w-gallery a:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.et-news2-d-auth-meta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.et-news2-d-auth-meta.border-bottom {
  border-bottom: 1px solid #D4D4D4;
}
.et-news2-d-meta {
  display: flex;
  gap: 15px 40px;
  align-items: center;
  flex-wrap: wrap;
}
.et-news2-d-meta a {
  font-weight: 500;
  font-size: 14px;
  color: #7C7C7C;
  text-transform: capitalize;
}
.et-news2-d-meta a i {
  font-size: 20px;
  margin-right: 6px;
}
.et-news2-d-meta a b {
  color: var(--clr-text-11);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.et-news2-d-meta a:hover {
  color: var(--clr-theme-1);
}
.et-news2-d-meta a:hover b {
  color: var(--clr-theme-1);
}
.et-news2-d-cat {
  border: 1px solid #8E8E8E;
  border-radius: 5px;
  height: 30px;
  padding: 0 15px;
  line-height: 28px;
  display: inline-block;
}
.et-news2-d-cat:hover {
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
  border: 1px solid transparent;
}
.et-news2-d-social ul {
  display: flex;
  gap: 5px 13px;
  flex-wrap: wrap;
}
.et-news2-d-social ul li a {
  width: 26px;
  height: 26px;
  border: 1px solid #E8E8E8;
  display: inline-block;
  text-align: center;
  font-size: 14px;
  line-height: 26px;
  color: #7C7C7C;
}
.et-news2-d-social ul li a:hover {
  border-color: var(--clr-theme-1);
  color: var(--clr-theme-1);
}
.et-news2-d-social ul li:first-child a {
  border-color: transparent;
}
.et-news2-d-date {
  position: absolute;
  top: 40px;
  left: 40px;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  background: var(--clr-theme-1);
  border-radius: 6px;
  color: var(--clr-common-white);
  display: inline-block;
  padding: 15px 10px;
  text-align: center;
}
.et-news2-d-title {
  font-size: 38px;
  color: var(--clr-text-11);
}
@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: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .et-news2-d-title {
    font-size: 32px;
  }
}
.et-news2-d-subtitle {
  font-size: 32px;
  color: var(--clr-text-11);
}
@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: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .et-news2-d-subtitle {
    font-size: 26px;
  }
}
.et-news2-d-text {
  line-height: 29px;
  text-transform: capitalize;
  color: var(--clr-text-17);
}
.et-news2-d-blockquote {
  background: #F3F3F3;
  border: 1px solid #E6E6E6;
  border-radius: 10px;
  padding: 45px 80px 35px 80px;
  position: relative;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .et-news2-d-blockquote {
    padding: 35px 50px 30px 50px;
  }
}
@media (max-width: 450px) {
  .et-news2-d-blockquote {
    padding: 35px 30px 30px 30px;
  }
}
.et-news2-d-blockquote::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  background: var(--clr-theme-1);
  border-radius: 0px 10px 10px 0px;
  width: 5px;
  height: 219px;
  transform: translateY(-50%);
}
.et-news2-d-blockquote-text {
  font-size: 20px;
  line-height: 30px;
  text-transform: capitalize;
  color: var(--clr-text-11);
  margin-bottom: 25px;
}
.et-news2-d-blockquote blockquote {
  margin: 0;
}
.et-news2-d-blockquote-icon {
  margin-bottom: 15px;
}
.et-news2-d-blockquote-name {
  position: relative;
  padding-left: 185px;
  text-transform: capitalize;
  color: var(--clr-text-11);
  font-size: 14px;
}
@media (max-width: 450px) {
  .et-news2-d-blockquote-name {
    padding-left: 100px;
  }
}
.et-news2-d-blockquote-name::before {
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 165px;
  height: 1px;
  background: #A0A0A0;
  position: absolute;
}
@media (max-width: 450px) {
  .et-news2-d-blockquote-name::before {
    width: 80px;
  }
}
.et-news2-d-tag {
  display: flex;
  gap: 5px 20px;
  align-items: center;
}
.et-news2-d-tag-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 0;
}
.et-news2-d-tag-wrap.border-top-bottom {
  border-top: 1px solid var(--clr-border-21);
  border-bottom: 1px solid var(--clr-border-21);
  padding: 30px 0;
}
.et-news2-d-tag ul {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.et-news2-d-tag ul li a {
  font-size: 14px;
  text-transform: capitalize;
  background: var(--clr-bg-11);
  border-radius: 2px;
  display: inline-block;
  height: 33px;
  padding: 0 20px;
  line-height: 34px;
}
.et-news2-d-tag ul li a:hover {
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
}
.et-news2-d-writer {
  border: 1px solid var(--clr-border-20);
  border-radius: 10px;
  padding: 33px 43px;
  display: flex;
  gap: 20px 50px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .et-news2-d-writer {
    flex-wrap: wrap;
    flex-direction: column;
    padding: 30px 20px;
  }
}
.et-news2-d-writer-name {
  font-weight: 600;
  font-size: 24px;
  text-transform: capitalize;
  color: var(--clr-text-11);
  margin-bottom: 10px;
}
.et-news2-d-writer-text {
  text-transform: capitalize;
  color: var(--clr-text-17);
  line-height: 29px;
  margin-bottom: 0;
}
.et-news2-d-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.et-news2-d-nav-dot {
  width: 66px;
  height: 66px;
  background: var(--clr-theme-1);
  line-height: 66px;
  text-align: center;
  border-radius: 50%;
}
.et-news2-d-nav-item a {
  display: flex;
  align-items: center;
  gap: 0 20px;
}
@media (max-width: 450px) {
  .et-news2-d-nav-item a {
    gap: 0 10px;
  }
}
.et-news2-d-nav-item a i {
  width: 52px;
  height: 52px;
  line-height: 52px;
  border: 1px solid var(--clr-border-19);
  text-align: center;
  border-radius: 50%;
  font-size: 20px;
  color: #7C7C7C;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media (max-width: 450px) {
  .et-news2-d-nav-item a i {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 16px;
  }
}
.et-news2-d-nav-item a:hover {
  color: var(--clr-theme-1);
}
.et-news2-d-nav-item a:hover i {
  border-color: var(--clr-theme-1);
  color: var(--clr-theme-1);
}
@media (max-width: 450px) {
  .et-news2-d-nav-item:nth-child(2) {
    display: none;
  }
}
.et-news2-d-related-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px 0;
  flex-wrap: wrap;
}
.et-news2-d-related-navigation {
  display: flex;
  gap: 5px 15px;
}
.et-news2-d-related-navigation button {
  height: 38px;
  width: 38px;
  display: inline-block;
  border-radius: 50%;
  border: 1px solid var(--clr-border-13);
  line-height: 38px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  color: var(--clr-border-13);
}
.et-news2-d-related-navigation button:hover {
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
  border-color: transparent;
}
.et-news2-d-related-title {
  font-weight: 600;
  font-size: 30px;
  text-transform: capitalize;
  color: var(--clr-text-11);
}
@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: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .et-news2-d-related-title {
    font-size: 30px;
  }
}

.et-news2-comment {
  background: var(--clr-bg-5);
  border-radius: 10px;
  padding: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .et-news2-comment {
    padding: 45px;
  }
}
@media (max-width: 450px) {
  .et-news2-comment {
    padding: 20px;
  }
}

.et-news2-d-img img {
  border-radius: 6px;
}

.et-news2-comment-title {
  font-weight: 600;
  font-size: 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: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .et-news2-comment-title {
    font-size: 30px;
  }
}

/*----------------------------------------*/
/*  18. FEATURES CSS START
/*----------------------------------------*/
.features__thunb-warpper {
  position: relative;
  z-index: 5;
}
.features__thunb-warpper img {
  margin-left: -310px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .features__thunb-warpper img {
    margin-left: 0;
    width: 100%;
  }
}

.custom__container {
  max-width: 1530px;
}

.features__thunb-1 {
  position: relative;
  z-index: 5;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .features__thunb-1 {
    width: 100%;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .features__thunb-1 {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
  }
}

.features__thunb-2 {
  position: absolute;
  left: 0px;
  z-index: -1;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .features__thunb-2 {
    position: static;
    margin-top: -120px;
    transform: translate(0);
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .features__thunb-2 {
    width: 100%;
  }
}

.features__content-wrapper {
  margin-right: 80px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .features__content-wrapper {
    margin-right: 0px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .feature5_wrapper.ml-100 {
    margin-left: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .feature5_wrapper.ml-100 {
    margin-left: 0;
  }
}
.feature5_wrapper .feature5_title {
  color: #000000;
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
}
.feature5_wrapper .feature5_list ul li {
  list-style: none;
  font-size: 17px;
  color: #606060;
  font-weight: 400;
  padding-left: 15px;
  position: relative;
  margin-bottom: 10px;
}
.feature5_wrapper .feature5_list ul li:last-child {
  margin-bottom: 0;
}
.feature5_wrapper .feature5_list ul li a {
  display: inline-flex;
}
@media (max-width: 575px) {
  .feature5_wrapper .feature5_list ul li {
    line-height: 25px;
    margin-bottom: 15px;
  }
  .feature5_wrapper .feature5_list ul li:last-child {
    margin-bottom: 0;
  }
}
.feature5_wrapper .feature5_list ul li::before {
  position: absolute;
  content: "\f105";
  font-family: "Font Awesome 5 Pro";
  font-size: 17px;
  left: 0;
  top: 0;
  color: var(--clr-theme-1);
  transition: all 300ms ease;
}
.feature5_wrapper .feature5_list ul li:hover a {
  color: var(--clr-theme-1);
  padding-left: 5px;
}
.feature5_wrapper .feature5_list ul li:hover::before {
  left: 3px;
}

.feature5-item_wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .feature5-item_wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .feature5-item_wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.dark .feature5_wrapper .feature5_title {
  color: var(--clr-common-white);
}
.dark .feature5_wrapper .feature5_list ul li {
  color: var(--clr-common-white);
}

/*----------------------------------------*/
/*  11. ACCORDIONG CSS START
/*----------------------------------------*/
.custom-gx-5 {
  --bs-gutter-x: 50px;
}
@media (max-width: 575px) {
  .custom-gx-5 {
    --bs-gutter-x: 0px;
  }
}

.bd-faq__accordion .accordion-button {
  font-size: 18px;
  font-weight: var(--bd-fw-bold);
  padding-right: 55px;
  height: 60px;
  padding-left: 30px;
  background: var(--clr-common-white);
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
}
@media (max-width: 575px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .bd-faq__accordion .accordion-button {
    padding-left: 20px;
    font-size: 16px;
  }
}
.bd-faq__accordion .accordion-button:focus {
  z-index: 3;
  border: none;
  outline: 0;
  box-shadow: none;
}
.bd-faq__accordion .accordion-button:not(.collapsed) {
  content: "\f067";
  box-shadow: none;
  border: 0;
  background: linear-gradient(0deg, var(--clr-theme-1) 0%, var(--clr-theme-3) 100%);
  color: var(--clr-common-white);
}
.bd-faq__accordion .accordion-button:not(.collapsed)::after {
  background: none;
  transform: rotate(180deg);
  content: "\f068";
  position: absolute;
  right: 10px;
  top: 50%;
  height: 40px;
  width: 40px;
  background-color: var(--clr-common-white);
  color: var(--clr-common-heading);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: var(--bd-ff-fontawesome);
}
@media (max-width: 575px) {
  .bd-faq__accordion .accordion-button:not(.collapsed)::after {
    right: 15px;
  }
}
.bd-faq__accordion .accordion-button::after {
  background: none;
  color: var(--clr-common-white);
  content: "+";
  position: absolute;
  right: 10px;
  top: 50%;
  height: 40px;
  width: 40px;
  background-color: var(--clr-common-heading);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: var(--bd-ff-fontawesome);
  font-weight: 400;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
@media (max-width: 575px) {
  .bd-faq__accordion .accordion-button::after {
    right: 15px;
  }
}
.bd-faq__accordion .accordion-item {
  margin-bottom: 20px;
  border: 0;
}
.bd-faq__accordion .accordion-item:first-of-type .accordion-button {
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
  -webkit-box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.04);
  -moz-box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.04);
  -ms-box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.04);
  -o-box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.04);
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.04);
}
.bd-faq__accordion .accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
}
.bd-faq__accordion .accordion-collapse {
  border: 0;
}
.bd-faq__accordion .accordion-body {
  padding: 20px 30px 5px 30px;
}
@media (max-width: 575px) {
  .bd-faq__accordion .accordion-body {
    padding: 20px 15px 5px 15px;
  }
}
.bd-faq__accordion .accordion-body p {
  margin-bottom: 0;
  margin-top: 3px;
}

/*----------------------------------------*/
/*  22. HISTORY CSS START
/*----------------------------------------*/
.history__thunb img {
  border-radius: 10px;
}

.history__tab .nav-tabs {
  border-bottom: 0;
  border-bottom: 0;
  justify-content: center;
  gap: 155px;
  display: inline-flex;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .history__tab .nav-tabs {
    gap: 100px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .history__tab .nav-tabs {
    gap: 70px;
  }
}
@media (max-width: 575px) {
  .history__tab .nav-tabs {
    gap: 45px 60px;
  }
}
.history__tab .nav-tabs .nav-link {
  margin-bottom: 0;
  border: 0;
  font-size: 16px;
  font-weight: var(--bd-fw-bold);
}
.history__tab .nav-tabs::before {
  position: absolute;
  content: "";
  width: calc(100% - 35px);
  height: 2px;
  background: #f3f3f3;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 575px) {
  .history__tab .nav-tabs::before {
    width: calc(90% - 35px);
  }
}
@media (max-width: 575px) {
  .history__tab .nav-tabs::before {
    gap: 60px;
  }
}
.history__tab .nav-link {
  position: relative;
  color: #cdcecf;
  padding: 0;
  border: none;
  font-weight: 500;
}
.history__tab .nav-link::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: 50%;
  transform: translateX(-50%);
  top: -23px;
  background: linear-gradient(var(--clr-common-white), var(--clr-common-white)) padding-box, linear-gradient(90deg, #1f242c, #1f242c) border-box;
  border: 2px solid transparent;
  border-radius: 50px;
}
.history__tab .nav-link.active::after {
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, var(--clr-theme-1), var(--clr-theme-3)) border-box;
  border: 2px solid transparent;
  border-radius: 50px;
}

.history__content-wrapper {
  margin-right: 80px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .history__content-wrapper {
    margin-right: 0px;
  }
}
.history__content h2 {
  font-size: 40px;
  margin-bottom: 15px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .history__content h2 br {
    display: none;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .history__content h2 {
    font-size: 36px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .history__content h2 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .history__content h2 {
    font-size: 26px;
  }
}
.history__content p {
  max-width: 550px;
  margin-bottom: 35px;
}
.history__thunb {
  position: relative;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .history__thunb-wrapper {
    margin-right: 0;
  }
}

.play__btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.play__btn a {
  width: 100px;
  height: 100px;
  background-color: var(--clr-common-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite;
  font-size: 20px;
  border-radius: 50%;
  color: var(--clr-common-heading);
}
.play__btn a:hover {
  background-color: var(--clr-theme-1);
  color: var(--clr-common-white);
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-ud-history-wrapper {
    margin-left: 10px;
  }
}
.bd-ud-history-padd {
  /* padding-top: 40px; */
  /* padding-bottom: 120px; */
}
@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: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-ud-history-padd {
    /* padding-bottom: 65px; */
  }
}
.bd-ud-history-content {
  background: var(--clr-common-white);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  padding: 50px 40px 30px 40px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .bd-ud-history-content.mr-75 {
    margin-right: 55px;
  }
}
@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: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-ud-history-content.mr-75 {
    margin-right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-ud-history-content.ml-40 {
    margin-left: 0;
  }
}
@media (max-width: 450px) {
  .bd-ud-history-content {
    padding: 30px 20px 10px 20px;
  }
}
.bd-ud-history-img {
  max-width: 614px;
  max-height: 614px;
}
.bd-ud-history-img img {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-ud-history-img.ml-40 {
    margin-left: 0;
  }
}
.bd-ud-history-time {
  position: absolute;
  background: var(--clr-common-white);
  display: inline-block;
  height: 32px;
  padding: 0 14px;
  background: var(--clr-common-white);
  box-shadow: 0px 4px 63px rgba(14, 132, 225, 0.12);
  border-radius: 6px;
  font-size: 18px;
  font-weight: var(--bd-fw-sbold);
  color: var(--clr-theme-1);
  line-height: 34px;
  top: 87px;
  right: -38px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .bd-ud-history-time {
    right: -5px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-ud-history-time {
    right: auto;
    left: -25px;
    top: 40px;
  }
}
.bd-ud-history-time.left {
  right: auto;
  left: -38px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .bd-ud-history-time.left {
    left: -5px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-ud-history-time.left {
    left: -25px;
  }
}
.bd-ud-history-title {
  font-size: 36px;
  margin-bottom: 22px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-ud-history-title {
    font-size: 30px;
  }
}
@media (max-width: 450px) {
  .bd-ud-history-title {
    font-size: 25px;
  }
}
.bd-ud-history-text {
  color: var(--clr-text-19);
}
.bd-ud-history-item {
  position: relative;
}
.bd-ud-history-item::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  top: 84px;
  background: var(--clr-common-white);
  left: 49%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .bd-ud-history-item::before {
    left: 52%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-ud-history-item::before {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    left: -70px;
  }
}
@media (max-width: 450px) {
  .bd-ud-history-item::before {
    width: 30px;
    height: 30px;
    left: -35px;
  }
}
.bd-ud-history-item::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 96px;
  background: var(--clr-theme-1);
  left: 49%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .bd-ud-history-item::after {
    left: 52%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-ud-history-item::after {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    left: -58px;
  }
}
@media (max-width: 450px) {
  .bd-ud-history-item::after {
    left: -28px;
    top: 91px;
  }
}
.bd-ud-history-item-wrapper {
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-ud-history-item-wrapper {
    padding-left: 50px;
  }
}
@media (max-width: 450px) {
  .bd-ud-history-item-wrapper {
    padding-left: 20px;
  }
}
.bd-ud-history-item-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 49%;
  border-left: 1px dashed var(--clr-border-15);
  width: 1px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 100%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .bd-ud-history-item-wrapper::before {
    left: 52%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-ud-history-item-wrapper::before {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    left: 0;
  }
}

/*----------------------------------------*/
/*  27. PRICING CSS START
/*----------------------------------------*/
.pricing-tab .nav-tabs {
  border: none;
}
.pricing-tab .nav-tabs .nav-link {
  margin-bottom: 0;
  border: 0;
}
.pricing-tab .nav .nav-item {
  padding-left: 0px;
}
.pricing-tab .nav .nav-item .nav-link {
  padding: 7px 60px;
  background: transparent;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  font-weight: 600;
  text-transform: capitalize;
  color: rgba(255, 0, 0, 0);
  position: relative;
  outline: none;
  font-size: 16px;
  border: none;
  z-index: 2;
  color: var(--clr-common-heading);
}
.pricing-tab .nav .nav-item .nav-link.active {
  color: var(--clr-theme-1);
}
.pricing-tab .nav .nav-item .nav-link.active::after {
  right: 10px;
}
.pricing-tab .nav .nav-item .nav-link::after {
  position: absolute;
  content: "";
  right: -32px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-image: linear-gradient(to right, var(--clr-theme-3), var(--clr-theme-1), var(--clr-theme-1), var(--clr-theme-3));
  background-position: 100% 100%;
  background-size: 300% 100%;
  z-index: 1;
}
.pricing-tab .nav .nav-item .nav-link::before {
  position: absolute;
  content: "";
  right: 0px;
  top: 50%;
  transform: translateY(-50%) translateX(50%);
  background: var(--clr-border-2);
  width: 80px;
  height: 40px;
  -webkit-border-radius: 11px;
  -moz-border-radius: 11px;
  border-radius: 20px;
  border: 1px solid var(--clr-theme-1);
}
.pricing-tab .nav .nav-item:last-child .nav-link {
  padding-right: 0;
}
.pricing-tab .nav .nav-item:last-child .nav-link::after {
  display: none;
}
.pricing-tab .nav .nav-item:last-child .nav-link::before {
  display: none;
}
.pricing-tab .nav .nav-item:first-child .nav-link {
  padding-left: 0;
}

.membership__box {
  padding: 40px 40px;
  box-shadow: 0px 10px 40px rgba(12, 29, 74, 0.08);
  border-radius: 8px;
  background: var(--clr-common-white);
  border: 1px solid #ddd;
  overflow: hidden;
  position: relative;
  height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), (max-width: 575px) {
  .membership__box {
    padding: 40px 30px;
  }
}
.membership__tittle p {
  color: rgba(255, 0, 0, 0);
  margin-bottom: 50px;
}
.membership__info h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}
.membership__info span {
  font-size: 28px;
  font-weight: 900;
  color: var(--clr-theme-1);
}
.membership__price p {
  font-size: 15px;
  color: rgba(255, 0, 0, 0);
}
.membership__list {
  padding: 15px 0;
}
.membership__list ul li {
  margin-bottom: 5px;
}
.membership__list ul li i {
  color: var(--clr-theme-1);
  margin-right: 15px;
}

.Popular__plan {
  position: absolute;
  background: var(--clr-theme-1)-2;
  top: -30px;
  right: -84px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 0, 0, 0);
  text-align: center;
  padding: 62px 72px 6px;
  transform: rotate(48deg);
}
.Popular__plan span {
  width: 70px;
  display: inline-block;
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
  font-family: "Raleway", sans-serif;
}

.bd-pricing {
  background: var(--clr-common-white);
  padding: 45px 50px 50px 50px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px) {
  .bd-pricing {
    padding: 45px 25px 50px 25px;
  }
}
.bd-pricing-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: var(--clr-common-heading);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  text-transform: uppercase;
}
.bd-pricing-price {
  font-size: 60px;
  line-height: 1.16;
  color: var(--clr-theme-1);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media (max-width: 575px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .bd-pricing-price {
    font-size: 50px;
  }
}
.bd-pricing-price span {
  font-size: 24px;
  font-weight: 500;
  color: var(--clr-common-heading);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.bd-pricing ul li {
  font-size: 16px;
  line-height: 1;
  list-style: none;
  margin-bottom: 20px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.bd-pricing ul li i {
  font-size: 16px;
  color: var(--clr-theme-1);
  margin-right: 13px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.bd-pricing-btn .theme-btn,
.bd-pricing-btn .theme-btn-black {
  width: 100%;
}
.bd-pricing.bd-pricing-active {
  background: var(--clr-theme-1);
}
.bd-pricing.bd-pricing-active .bd-pricing-subtitle,
.bd-pricing.bd-pricing-active .bd-pricing-price,
.bd-pricing.bd-pricing-active .bd-pricing-price span,
.bd-pricing.bd-pricing-active ul li,
.bd-pricing.bd-pricing-active ul li i {
  color: var(--clr-common-white);
}
.bd-pricing.bd-pricing-active .theme-btn {
  background: var(--clr-body-heading);
}

/*----------------------------------------*/
/*  12. BRAND CSS START
/*----------------------------------------*/
.pt-405 {
  padding-top: 405px;
}

.brand__area {
  position: relative;
  margin-top: -290px;
  z-index: 5;
}
.brand__overlay {
  position: relative;
}
.brand__overlay:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  background-color: rgb(31, 36, 44);
  opacity: 0.961;
  top: 0;
  left: 0;
  z-index: -1;
}
.brand__title span {
  color: var(--clr-common-white);
  font-weight: var(--bd-fw-sbold);
  margin-bottom: 45px;
  display: block;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .brand__title span {
    margin-top: 20px;
  }
}

.singel__brand a img {
  opacity: 20%;
}
.singel__brand:hover a img {
  opacity: 100%;
}

.partner__area {
  border-top: 1px solid var(--clr-border-10);
}

.brand__title {
  font-size: 16px;
  line-height: 26px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .brand__title {
    margin-bottom: 30px;
    text-align: center;
  }
}
.brand__item a img {
  opacity: 0.4;
}
.brand__item a img:hover {
  opacity: 1;
}

.bd-ud-brand-space {
  margin-top: 0;
}

.brand4-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand4-slide {
  text-align: center;
}
.brand4-slide img {
  max-width: 100%;
  opacity: 0.5;
}
.brand4-slide:hover img {
  opacity: 1;
}

.brand5-slide {
  text-align: center;
}
@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: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .brand5-slide img {
    max-width: 140px;
  }
}

/*----------------------------------------*/
/*  17. FAQ CSS START
/*----------------------------------------*/
.faq__banner-area {
  min-height: 450px;
  position: relative;
  background: var(--clr-bg-grey-3);
  z-index: 5;
  margin-top: 20px;
}
.faq__banner-thumb {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
@media (max-width: 575px) {
  .faq__banner-thumb {
    display: none;
  }
}
.faq__banner-title h2 {
  font-size: 60px;
  margin-bottom: 50px;
  color: var(--clr-common-black);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .faq__banner-title h2 {
    font-size: 55px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .faq__banner-title h2 {
    font-size: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .faq__banner-title h2 {
    font-size: 45px;
  }
}
@media (max-width: 575px) {
  .faq__banner-title h2 {
    font-size: 36px;
  }
}
.faq__info-warapper {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.faq__search-input {
  position: relative;
}
.faq__search-input input {
  height: 60px;
  width: 100%;
  background: var(--clr-common-white);
  border: 0;
  padding-left: 20px;
  padding-right: 150px;
  position: relative;
  font-size: 16px;
  outline: none;
  text-transform: capitalize;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
}
@media (max-width: 575px) {
  .faq__search-input input {
    padding-right: 20px;
  }
}
.faq__search-input input::placeholder {
  color: var(--clr-text-4);
}
.faq__search-input button {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0px 39px;
  height: 60px;
  -webkit-border-radius: 0px 4px 4px 0px;
  -moz-border-radius: 0px 4px 4px 0px;
  -o-border-radius: 0px 4px 4px 0px;
  -ms-border-radius: 0px 4px 4px 0px;
  border-radius: 0px 4px 4px 0px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: var(--bd-fw-sbold);
  background-image: linear-gradient(to right, var(--clr-theme-3), var(--clr-theme-1), var(--clr-theme-1), var(--clr-theme-3));
  border: none;
  outline: none;
  box-shadow: none;
  color: var(--clr-common-white);
  background-position: 100% 100%;
  background-size: 300% 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.faq__search-input button:hover {
  background-position: 0% 100%;
  color: var(--clr-common-white);
}
@media (max-width: 575px) {
  .faq__search-input button {
    position: static;
    margin-top: 20px;
    -webkit-border-radius: 4px 4px 4px 4px;
    -moz-border-radius: 4px 4px 4px 4px;
    -o-border-radius: 4px 4px 4px 4px;
    -ms-border-radius: 4px 4px 4px 4px;
    border-radius: 4px 4px 4px 4px;
  }
}

.faq__topic-items {
  background: transparent;
  border: 1px solid #edeef2;
  padding: 50px 25px 35px 25px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-box-shadow: 0 30px 60px rgba(10, 25, 87, 0.07);
  -moz-box-shadow: 0 30px 60px rgba(10, 25, 87, 0.07);
  -ms-box-shadow: 0 30px 60px rgba(10, 25, 87, 0.07);
  -o-box-shadow: 0 30px 60px rgba(10, 25, 87, 0.07);
  box-shadow: 0 30px 60px rgba(10, 25, 87, 0.07);
  background-color: var(--clr-common-white);
}
.faq__topic-icon {
  transition: 0.3s;
}
.faq__topic-icon img {
  margin-bottom: 33px;
}
.faq__topic-content h4 a {
  font-size: 24px;
  margin-bottom: 20px;
  display: block;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .faq__topic-content h4 a {
    font-size: 20px;
  }
}
.faq__topic-content h4 a:hover {
  color: var(--clr-theme-1);
}
.faq__topic-content p {
  margin-bottom: 0;
}

.faq4-area .section-title {
  line-height: 1.18;
}

.accordion4-wrapper {
  background-color: var(--clr-common-white);
  padding: 35px 60px 35px 60px;
  border: 1px solid rgba(128, 128, 128, 0.1019607843);
  position: relative;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .accordion4-wrapper {
    padding: 34px 20px 35px 20px;
  }
}
.accordion4-wrapper .accordion-body {
  padding: 0;
}
.accordion4-wrapper .accordion-body p {
  margin-bottom: 30px;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #161A33;
}
.accordion4-wrapper::before {
  content: "";
  position: absolute;
  width: 608px;
  height: 608px;
  left: 50%;
  top: 0;
  background: linear-gradient(180deg, rgba(243, 250, 255, 0.5) 0%, rgba(239, 61, 30, 0.5) 100%);
  filter: blur(217px);
  z-index: -1;
  border-radius: 50%;
  transform: translateX(-50%);
  opacity: 0.5;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .accordion4-wrapper::before {
    display: none;
  }
}
.accordion4-wrapper .accordion-item {
  border: 0;
  background: none;
}
.accordion4-wrapper .accordion-item button {
  box-shadow: none;
  color: #161A33;
  padding: 25px 20px 25px 0;
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  background: none;
}
@media (max-width: 575px) {
  .accordion4-wrapper .accordion-item button {
    font-size: 20px;
  }
}
.accordion4-wrapper .accordion-item button::after {
  font-family: var(--bd-ff-fontawesome);
  content: "\f068";
  background-image: none;
  top: 25px;
  position: absolute;
  right: 0;
}
.accordion4-wrapper .accordion-item button:not(.collapsed)::after {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  font-weight: 400;
}
.accordion4-wrapper .accordion-item button.collapsed::after {
  font-family: var(--bd-ff-fontawesome);
  content: "\f067";
  background-image: none;
  font-weight: 400;
}
.accordion4-wrapper .accordion-item button:not(.collapsed) {
  color: var(--clr-theme-1);
  background: none;
}
.accordion4-wrapper .accordion-item:not(:first-child) {
  border-top: 1px solid #ddd;
}

/*----------------------------------------*/
/*  30. TEAM CSS START
/*----------------------------------------*/
.singel__team-thumb {
  position: relative;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  overflow: hidden;
}
.singel__team-thumb img {
  width: 100%;
}
.singel__team-thumb:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  background-color: transparent;
  background-image: linear-gradient(180deg, var(--clr-theme-3) 35%, var(--clr-theme-1) 100%);
  z-index: 1;
}

.singel__team-content {
  position: absolute;
  content: "";
  bottom: 50%;
  left: 0;
  right: 0;
  max-width: 300px;
  padding: 20px 15px 20px;
  text-align: center;
  margin: auto;
  transform: translateY(50%);
  opacity: 0;
  visibility: visible;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  margin-bottom: -60px;
  z-index: 5;
}

.singel__team-item:hover .singel__team-thumb img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.singel__team-item:hover .singel__team-thumb::before {
  opacity: 0.8;
  visibility: visible;
}
.singel__team-item:hover .singel__team-content {
  opacity: 1;
  visibility: visible;
  margin-bottom: 0;
}

.singel__team-content h3 a {
  color: var(--clr-common-white);
  display: block;
  margin-bottom: 5px;
}
.singel__team-content span {
  color: var(--clr-common-white);
  margin-bottom: 10px;
  display: block;
  text-transform: capitalize;
}

.singel__team-social {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.singel__team-social a {
  color: var(--clr-common-white);
  font-size: 18px;
}
.singel__team-social a:hover {
  color: var(--clr-theme-1);
}

.singel__team-thumb:hover::before {
  opacity: 0.8;
  visibility: visible;
}
.singel__team-thumb:hover .singel__team-content {
  opacity: 1;
  visibility: visible;
  margin-bottom: 0;
}

.founder-sub__title {
  font-size: 14px;
  font-weight: var(--bd-fw-bold);
  color: var(--clr-theme-1);
}

.founder-section__title {
  font-size: 50px;
}

.team__founder-main {
  margin-left: 50px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .team__founder-main {
    margin-left: 0;
  }
}
.team__founder-thumb {
  padding-right: 20px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .team__founder-thumb {
    padding-right: 0;
  }
}
.team__founder-thumb img {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
}
.team__founder-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}
.team__founder-item {
  display: flex;
  gap: 25px;
  align-items: center;
}
.team__founder-item-icon {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: space-evenly;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -o-border-radius: 50px;
  -ms-border-radius: 50px;
  border-radius: 50px;
  overflow: hidden;
  position: relative;
  color: var(--clr-common-white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: -webkit-linear-gradient(0deg, var(--clr-theme-1) 0%, var(--clr-theme-3) 100%);
}
.team__founder-item-icon:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: var(--clr-bg-grey-4);
}
.team__founder-text .contact a {
  font-weight: var(--bd-fw-bold);
  font-size: 20px;
}
.team__founder-text .contact a:hover {
  color: var(--clr-theme-1);
}
.team__founder-text .title {
  font-size: 14px;
  color: var(--clr-text-4);
}

.archivement__box {
  padding-left: 50px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .archivement__box {
    padding-left: 30px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .archivement__box {
    padding-left: 0px;
  }
}
.archivement__title h3 {
  font-size: 26px;
  margin-bottom: 25px;
}
.archivement__title p {
  margin-bottom: 33px;
  font-size: 18px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .archivement__title p {
    font-size: 16px;
  }
}

.bd-ud-team {
  overflow: hidden;
}
.bd-ud-team-item {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  overflow: hidden;
}
.bd-ud-team-img {
  position: relative;
}
.bd-ud-team-img::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(14, 132, 225, 0) 0%, var(--clr-theme-1) 100%);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: bottom;
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  transform: scaleY(0);
}
.bd-ud-team-text {
  bottom: 20px;
  left: 40px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.bd-ud-team-title {
  font-size: 22px;
  font-weight: var(--bd-fw-sbold);
  color: var(--clr-common-white);
  margin-bottom: 5px;
}
.bd-ud-team-subtitle {
  font-weight: var(--bd-fw-medium);
  color: var(--clr-common-white);
}
.bd-ud-team-social {
  top: 30px;
  right: 30px;
}
.bd-ud-team-social-icon {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  transform-origin: top center;
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  transform: scaleY(0);
}
.bd-ud-team-social-icon ul li a {
  width: 30px;
  height: 30px;
  background: var(--clr-bg-1);
  display: inline-block;
  margin-bottom: 10px;
  color: var(--clr-common-white);
  text-align: center;
  line-height: 31px;
}
.bd-ud-team-social-icon ul li a:hover {
  background: var(--clr-theme-1);
}
.bd-ud-team-share {
  width: 30px;
  height: 30px;
  background: var(--clr-common-white);
  display: inline-block;
  margin-bottom: 10px;
  color: var(--clr-theme-1);
  text-align: center;
  line-height: 31px;
  cursor: pointer;
}
.bd-ud-team-item:hover .bd-ud-team-text {
  opacity: 1;
  visibility: visible;
  bottom: 40px;
}
.bd-ud-team-item:hover .bd-ud-team-img::before {
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  transform: scaleY(1);
}
.bd-ud-team-item:hover .bd-ud-team-social-icon {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  transform: scaleY(1);
}
.bd-ud-team-pagination .swiper-pagination-bullet {
  border: 1px solid transparent;
  position: relative;
  margin: 0 10px;
  background: var(--clr-text-18);
  opacity: 1;
}
.bd-ud-team-pagination .swiper-pagination-bullet-active {
  border: 1px solid var(--clr-theme-1);
  background: var(--clr-theme-1);
}
.bd-ud-team-pagination .swiper-pagination-bullet-active::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid var(--clr-theme-1);
  top: -7px;
  left: -7px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  cursor: pointer;
}
.bd-ud-team-view-wrapper {
  display: flex;
  gap: 65px;
  justify-content: end;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-ud-team-view-wrapper {
    justify-content: space-between;
  }
}
@media (max-width: 450px) {
  .bd-ud-team-view-wrapper {
    gap: 25px;
    justify-content: space-between;
  }
}
.bd-ud-team-view span {
  text-transform: uppercase;
  color: var(--clr-text-11);
  font-weight: var(--bd-fw-sbold);
}
.bd-ud-team-view span a {
  color: var(--clr-theme-1);
}
.bd-ud-team-view span i {
  margin-left: 8px;
  font-size: 14px;
  color: var(--clr-theme-1);
}

@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: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .et-team-single-content.ml-35 {
    margin-left: 0;
  }
}
.et-team-single-social {
  top: 90px;
  left: 100px;
}
@media (max-width: 575px) {
  .et-team-single-social {
    top: 30px;
    left: 30px;
  }
}
.et-team-single-social-icon {
  text-align: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  transform: scaleY(0);
  transform-origin: top center;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.et-team-single-social-icon ul li a {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: var(--clr-bg-1);
  margin: 6px auto;
  color: var(--clr-common-white);
  line-height: 50px;
  font-size: 20px;
}
@media (max-width: 450px) {
  .et-team-single-social-icon ul li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
  }
}
.et-team-single-social-icon ul li a:hover {
  background: var(--clr-theme-1);
}
.et-team-single-share > i {
  width: 66px;
  height: 66px;
  background: var(--clr-common-white);
  line-height: 68px;
  font-size: 40px;
  text-align: center;
  color: var(--clr-theme-1);
  margin-bottom: 15px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media (max-width: 450px) {
  .et-team-single-share > i {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 25px;
  }
}
.et-team-single-share:hover > i {
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
}
.et-team-single-share:hover .et-team-single-social-icon {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  transform: scaleY(1);
}
.et-team-single-title {
  font-weight: 600;
  font-size: 36px;
  margin-bottom: 10px;
}
@media (max-width: 575px) {
  .et-team-single-title {
    font-size: 30px;
  }
}
.et-team-single-subtitle {
  font-weight: 500;
  font-size: 18px;
  text-transform: capitalize;
  color: var(--clr-theme-1);
  border-bottom: 1px solid #D5D5D5;
  display: block;
  padding-bottom: 30px;
  margin-bottom: 40px;
}
.et-team-single-text {
  color: #484848;
}
.et-team-single-contact {
  border-top: 1px solid #D5D5D5;
  border-bottom: 1px solid #D5D5D5;
  padding: 30px 0 20px 0;
}
.et-team-single-contact ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.et-team-single-contact ul li a {
  font-weight: 500;
  color: #161A33;
  margin-bottom: 10px;
  display: inline-block;
}
.et-team-single-contact ul li a i {
  margin-right: 10px;
  color: var(--clr-theme-1);
  font-size: 20px;
}
.et-team-single-contact ul li a:hover {
  color: var(--clr-theme-1);
}
.et-team-single-tab-area .nav-tabs {
  border-bottom: 1px solid #B4B4B4;
  margin-bottom: 35px;
  padding-bottom: 22px;
}
.et-team-single-tab-area .nav-tabs button {
  font-weight: 500;
  font-size: 24px;
  line-height: 24px;
  text-transform: capitalize;
  color: #161A33;
  padding: 0;
  margin: 0;
  border: none !important;
  position: relative;
  border-right: 2px solid #8E8E8E !important;
  padding-right: 40px;
  margin-right: 40px;
  border-radius: 0;
  position: relative;
  margin-bottom: 10px;
  text-align: start;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .et-team-single-tab-area .nav-tabs button {
    font-size: 20px;
    margin-right: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 575px) {
  .et-team-single-tab-area .nav-tabs button {
    margin-right: 20px;
    padding-right: 20px;
    font-size: 20px;
  }
}
.et-team-single-tab-area .nav-tabs button:last-child {
  border: none !important;
  padding: 0;
  margin: 0;
}
.et-team-single-tab-area .nav-tabs button.nav-link {
  position: relative;
}
.et-team-single-tab-area .nav-tabs button.nav-link.active {
  color: var(--clr-theme-1);
  border-right: 2px solid #8E8E8E;
  position: relative;
  background: transparent;
}
.et-team-single-tab-bg {
  background: #F3F3F3;
  padding: 60px 57px 25px 57px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .et-team-single-tab-bg {
    padding: 40px 30px 10px 30px;
  }
}
.et-team-single-tab-title {
  font-size: 20px;
  margin-bottom: 10px;
}
.et-team-single-tab-content {
  margin-bottom: 30px;
}
.et-team-single-tab-content h5 {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 10px;
}
.et-team-single-tab-content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 0;
  color: #484848;
}

/*----------------------------------------*/
/*  16. ERROR CSS START
/*----------------------------------------*/
.error__content h2 {
  font-size: 250px;
  font-weight: 700;
  color: var(--clr-theme-1);
  line-height: 1;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: -webkit-linear-gradient(0deg, var(--clr-theme-1) 0%, var(--clr-theme-3) 100%);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .error__content h2 {
    font-size: 200px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .error__content h2 {
    font-size: 150px;
  }
}
@media (max-width: 575px) {
  .error__content h2 {
    font-size: 120px;
  }
}
.error__content h3 {
  font-size: 36px;
}
@media (max-width: 575px) {
  .error__content h3 {
    font-size: 28px;
  }
}
.error__content p {
  font-size: 16px;
  margin-bottom: 33px;
}

/*----------------------------------------*/
/*  13. COUNTER CSS START
/*----------------------------------------*/
.contact__info-wrapper {
  margin-right: 50px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact__info-wrapper {
    margin-right: 0px;
  }
}
.contact__info-item {
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--clr-border-10);
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (max-width: 575px) {
  .contact__info-item {
    flex-wrap: wrap;
    gap: 10px 20px;
  }
}
.contact__info-item:last-child {
  border-bottom: 0;
}
.contact__info-icon {
  height: 60px;
  width: 60px;
  min-width: 60px;
  display: inline-block;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  overflow: hidden;
  font-size: 20px;
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: -webkit-linear-gradient(0deg, var(--clr-theme-1) 0%, var(--clr-theme-3) 100%);
  position: relative;
}
.contact__info-icon::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: var(--clr-bg-grey-4);
}
@media (max-width: 575px) {
  .contact__info-content {
    margin-top: 20px;
  }
}
.contact__info-content span {
  font-size: 16px;
  color: #777a7e;
  font-weight: 500;
  margin-bottom: 5px;
  display: inline-block;
  text-transform: capitalize;
}
.contact__info-content h5 a {
  font-size: 20px;
}
.contact__info-content h5 a:hover {
  color: var(--clr-theme-1);
}
.contact__from-input {
  margin-bottom: 20px;
}
.contact__from-input input {
  height: 60px;
  width: 100%;
  background: var(--clr-bg-grey-4);
  border: none;
  padding: 15px 20px;
  border-radius: 6px;
  border: 1px solid transparent;
  outline: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  color: #777a7e;
}
.contact__from-input input::placeholder {
  color: #777a7e;
}
.contact__from-input input:focus {
  border: double 1px transparent;
  background-image: linear-gradient(#f9f9f9, #f9f9f9), linear-gradient(to right, var(--clr-theme-1), var(--clr-theme-3));
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
.contact__from-input textarea {
  height: 60px;
  width: 100%;
  background: var(--clr-bg-grey-4);
  border: none;
  padding: 15px 20px;
  border-radius: 6px;
  outline: 0;
  min-height: 170px;
  color: #777a7e;
  resize: none;
  border: 1px solid transparent;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.contact__from-input textarea::placeholder {
  color: #777a7e;
}
.contact__from-input textarea:focus {
  border: double 1px transparent;
  background-image: linear-gradient(#f9f9f9, #f9f9f9), linear-gradient(to right, var(--clr-theme-1), var(--clr-theme-3));
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
.contact__select {
  position: relative;
}
.contact__select select {
  height: 60px;
  width: 100%;
  background: var(--clr-bg-grey-4);
  border: none;
  padding: 15px 15px;
  border-radius: 6px;
  outline: 0;
  color: #777a7e;
  position: relative;
  appearance: none;
}

.contact__cta-wrapper {
  padding: 65px 70px 35px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  z-index: 22;
  position: relative;
}
@media (max-width: 575px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .contact__cta-wrapper {
    padding: 65px 30px 35px;
  }
}
.contact__cta-content {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .contact__cta-content {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.cta__description {
  position: relative;
  padding-left: 45px;
  max-width: 450px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .cta__description {
    padding-left: 0;
  }
}
.cta__description p {
  color: var(--clr-common-white);
  font-size: 18px;
  margin-bottom: 0;
}
.cta__description::before {
  height: 70px;
  width: 1px;
  background: var(--clr-common-white);
  opacity: 0.2;
  position: absolute;
  content: "";
  top: -8px;
  left: 0px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .cta__description::before {
    display: none;
  }
}
.cta-contact__info {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 575px) {
  .cta-contact__info {
    flex-wrap: wrap;
  }
}
.cta__number-icon {
  height: 60px;
  width: 60px;
  min-height: 60px;
  display: inline-block;
  line-height: 60px;
  background-color: var(--clr-common-white);
  text-align: center;
  border-radius: 50%;
}
.cta__number-text span {
  color: #8f96a0;
  margin-bottom: 3px;
  display: block;
}
.cta__number-text h3 a {
  color: var(--clr-common-white);
}
.cta__number-text h3 a:hover {
  color: var(--clr-theme-1);
}

.google__map-inner {
  position: relative;
  margin-top: -80px;
}
.google__map-inner iframe {
  min-height: 550px;
  width: 100%;
  margin-bottom: -8px;
}

.et-hero__contact-btn {
  position: absolute;
  top: 50%;
  right: -53px;
  transform: translateY(-50%) rotate(-90deg);
  z-index: 50;
}
.et-hero__contact-btn #open-form {
  height: 55px;
  width: 160px;
  font-size: 16px;
  font-weight: 600;
  Color: var(--clr-common-white);
  border: 2px solid var(--clr-theme-1);
  background-color: var(--clr-theme-1);
  border-radius: 5px 5px 0px 0px;
  text-transform: uppercase;
  outline: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.et-hero__contact-btn #open-form:hover {
  color: var(--clr-theme-1);
  background-color: var(--clr-common-white);
}
.et-hero__contact-wrapper {
  max-width: 725px;
  background-color: var(--clr-common-white);
  padding: 40px;
  border-radius: 5px 0 0 5px;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(150%, -50%);
  z-index: 100;
  -webkit-transition: all 0.7s ease-out 0s;
  -moz-transition: all 0.7s ease-out 0s;
  -ms-transition: all 0.7s ease-out 0s;
  -o-transition: all 0.7s ease-out 0s;
  transition: all 0.7s ease-out 0s;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .et-hero__contact-wrapper {
    max-width: 500px;
  }
}
@media (max-width: 575px) {
  .et-hero__contact-wrapper {
    max-width: 430px;
  }
}
@media (max-width: 450px) {
  .et-hero__contact-wrapper {
    max-width: 274px;
  }
}
.et-hero__contact-wrapper.active {
  transform: translate(0, -50%);
}
.et-hero__contact-wrapper #close-form {
  width: 40px;
  height: 40px;
  font-size: 20px;
  color: var(--clr-text-11);
  cursor: pointer;
  background: var(--clr-common-white);
  border: 1px solid var(--clr-theme-1);
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: absolute;
  top: -25px;
  left: -25px;
}
@media (max-width: 575px) {
  .et-hero__contact-wrapper #close-form {
    top: 60px;
    left: -20;
  }
}

.et-hero__contact-form form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .et-hero__contact-form form {
    grid-template-columns: auto;
  }
}
.et-hero__contact-form .contact-field {
  position: relative;
}
.et-hero__contact-form .contact-field.field::before {
  position: absolute;
  top: 14px;
  left: 20px;
  font-family: "Font Awesome 5 Pro";
  font-size: 18px;
  color: #535353;
}
.et-hero__contact-form .contact-field.field:nth-child(1)::before, .et-hero__contact-form .contact-field.field:nth-child(2)::before {
  content: "\f007";
}
.et-hero__contact-form .contact-field.field:nth-child(3)::before {
  content: "\f879";
}
.et-hero__contact-form .contact-field.field:nth-child(4)::before {
  content: "\f044";
}
.et-hero__contact-form .contact-field input,
.et-hero__contact-form .contact-field textarea {
  padding: 14px 20px;
  width: 100%;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  text-transform: capitalize;
  color: #535353;
  background-color: transparent;
  border: 1px solid #E8E8E8;
}
.et-hero__contact-form .contact-field input::placeholder,
.et-hero__contact-form .contact-field textarea::placeholder {
  font: inherit;
  font-size: 14px;
}
.et-hero__contact-form .contact-field input:focus,
.et-hero__contact-form .contact-field textarea:focus {
  border: 1px solid var(--clr-theme-1);
}
.et-hero__contact-form .contact-field input {
  height: 55px;
  padding-left: 50px;
}
.et-hero__contact-form .contact-field input[type=submit] {
  border: 1px solid var(--clr-theme-1);
  color: var(--clr-theme-1);
  transition: all 0.3s;
  padding-left: 20px;
}
.et-hero__contact-form .contact-field input[type=submit]:hover {
  background-color: var(--clr-theme-1);
  color: var(--clr-common-white);
}
.et-hero__contact-form .contact-field textarea {
  height: 150px;
  resize: none;
  margin-bottom: 10px;
}
.et-hero__contact-form .contact-field.message, .et-hero__contact-form .contact-field.submit {
  grid-column: span 2;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .et-hero__contact-form .contact-field.message, .et-hero__contact-form .contact-field.submit {
    grid-column: inherit;
  }
}

.contact__wrapper {
  padding: 60px;
  background: #FAFAFA;
  position: relative;
  border-radius: 10px;
}
@media (max-width: 450px) {
  .contact__wrapper {
    padding: 20px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px) {
  .contact__wrapper .et-hero__contact-form form {
    grid-template-columns: 1fr;
  }
}
.contact__wrapper .et-hero__contact-form .contact-field.field::before {
  z-index: 5;
}
.contact__wrapper .et-hero__contact-form .contact-field input,
.contact__wrapper .et-hero__contact-form .contact-field textarea {
  background-color: var(--clr-common-white);
  border-radius: 5px;
}
.contact__wrapper .et-hero__contact-form .contact-field textarea {
  height: 175px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px) {
  .contact__wrapper .et-hero__contact-form .contact-field.message, .contact__wrapper .et-hero__contact-form .contact-field.submit {
    grid-column: inherit;
  }
}
.contact__wrapper .contact__button {
  height: 55px;
  width: 193px;
  font-size: 16px;
  font-weight: 500;
  color: var(--clr-common-white);
  background: linear-gradient(90.67deg, var(--clr-theme-1) 0.57%, var(--clr-theme-3) 99.61%);
  border: none;
  border-radius: 6px;
  text-transform: uppercase;
  outline: none;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.contact__wrapper .contact__button i {
  margin-left: 9px;
  font-size: 16px;
}
.contact__wrapper .contact__button:hover {
  background: linear-gradient(90.67deg, var(--clr-theme-3) 0.57%, var(--clr-theme-1) 99.61%);
}
.contact__shape {
  position: absolute;
  top: -60px;
  right: 250px;
}
.contact__title {
  color: var(--clr-text-11);
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  text-transform: capitalize;
}

.bd-ud-contact-form .nice-select {
  height: 60px;
  line-height: 60px;
  width: 100%;
  background: var(--clr-bg-grey-4);
  border: transparent;
}
.bd-ud-contact-form .nice-select::after {
  height: 10px;
  right: 20px;
  top: 50%;
  width: 10px;
  -webkit-transform: transformY(-50%);
  -moz-transform: transformY(-50%);
  -ms-transform: transformY(-50%);
  -o-transform: transformY(-50%);
  transform: transformY(-50%);
}
.bd-ud-contact-form .nice-select .list {
  width: 100%;
}

.et-contact__info {
  background-color: rgba(14, 132, 225, 0.9);
  border-radius: 10px;
  overflow: hidden;
}
.et-contact__info-top {
  padding: 50px 50px 60px 50px;
}
@media (max-width: 450px) {
  .et-contact__info-top {
    padding: 30px 20px 25px 20px;
  }
}
.et-contact__info-box {
  margin-bottom: 25px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--clr-common-white);
}
.et-contact__info-box:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}
.et-contact__info-icon {
  width: 62px;
  height: 62px;
  color: var(--clr-theme-1);
  background-color: var(--clr-common-white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 25px;
}
.et-contact__info-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--clr-common-white);
  margin-bottom: 15px;
}
.et-contact__info-content p {
  color: var(--clr-common-white);
  font-size: 16px;
}
.et-contact__info-bottom {
  padding: 39px 35px;
  background-color: rgba(22, 26, 51, 0.9);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .et-contact__info-bottom {
    padding: 55px 48px;
  }
}
.et-contact__info-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .et-contact__info-list {
    grid-template-columns: 1fr;
  }
}
.et-contact__info-list li {
  display: flex;
  align-items: center;
  gap: 15px;
}
.et-contact__info-list-icon {
  color: var(--clr-common-white);
  font-size: 15px;
}
.et-contact__info-link a {
  color: var(--clr-common-white);
  font-size: 15px;
  font-weight: 500;
}
.et-contact__info-link a:focus, .et-contact__info-link a:hover {
  color: var(--clr-theme-1);
}

.et-contact2-map {
  overflow: hidden;
  position: relative;
  min-height: 680px;
}
.et-contact2-map iframe {
  width: 102%;
  height: 102%;
  position: absolute;
  top: -1%;
  left: -1%;
}

/*----------------------------------------
  33. LOCATION CSS START
----------------------------------------*/
.location-1 {
  top: 39%;
  left: 50%;
}

.location-2 {
  left: 50%;
  top: 20%;
}

.location-3 {
  top: 44%;
  right: 14%;
}
@media (max-width: 575px) {
  .location-3 {
    right: 30%;
  }
}

.location-4 {
  left: 35%;
  bottom: 34%;
}

.location-text span {
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 500;
}

.location-map-bg {
  min-height: 600px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  max-width: 700px;
}

.location-item {
  position: absolute;
  align-items: center;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.location-icon {
  display: inline-block;
  cursor: pointer;
  color: #EF3D1E;
}

.location-item.active .location-content {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0px);
}

.location-counrty {
  width: 58px;
  height: 58px;
  min-width: 58px;
}
.location-counrty img {
  width: 100%;
  border-radius: 50%;
  height: 100%;
}

.location-content {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 15px 15px;
  background: var(--clr-common-white);
  box-shadow: 0px 4px 74px rgba(0, 0, 0, 0.08);
  border-radius: 100px;
  min-width: 200px;
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translate(-50%, 10px);
  opacity: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  visibility: hidden;
  z-index: 55;
}

.loaction-box {
  padding: 40px 35px;
  border: 1px solid var(--clr-common-border-2);
}
@media (max-width: 575px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .loaction-box {
    padding: 40px 30px;
  }
}

.country-tab .nav-tabs {
  border-bottom: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.country-tab .nav-tabs .nav-link {
  border: 0;
  border: 2px solid var(--clr-common-border-2);
  padding: 0 30px;
  height: 60px;
  border-radius: 0;
}
.country-tab .nav-tabs .nav-link:hover {
  border: 2px solid var(--clr-common-border-2);
  color: var(--clr-common-heading);
}
.country-tab .nav-tabs .nav-link.active {
  background-color: var(--clr-common-color-red);
  color: var(--clr-common-white);
  border-color: var(--clr-common-color-red);
}
.country-tab .nav-link {
  font-family: "Oswald", sans-serif !important;
  font-weight: 600;
  padding: 0;
  padding: 0;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--clr-common-heading);
  font-weight: 700;
}
.country-tab .nav-link:hover {
  color: var(--clr-common-red);
}

.laction-county ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.laction-county ul li {
  list-style: none;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  gap: 10px;
}
.laction-county ul li span:hover {
  color: var(--clr-common-color-red);
}

.office-wrapper {
  display: flex;
  gap: 35px;
  padding: 50px 45px 50px;
  background: var(--clr-common-white);
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .office-wrapper {
    margin-left: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .office-wrapper {
    flex-wrap: wrap;
    flex-direction: column;
  }
}

.office-map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 10px;
  z-index: -1;
}

.office-item {
  position: relative;
  padding-right: 37px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .office-item {
    padding-right: 0;
  }
}
.office-item:after {
  position: absolute;
  content: "";
  height: 85%;
  width: 1px;
  border: 1px solid var(--clr-common-border-2);
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .office-item:after {
    display: none;
  }
}
.office-item:last-child {
  padding-right: 0px;
}
.office-item:last-child::after {
  display: none;
}
.office-item h4 {
  font-size: 24px;
  margin-bottom: 25px;
  color: var(--clr-common-heading);
}
@media (max-width: 575px) {
  .office-item h4 {
    font-size: 20px;
  }
}

.office-content .singel-addresss {
  margin-bottom: 10px;
}
.office-content .singel-addresss:last-child {
  margin-bottom: 0;
}
.office-content a {
  display: block;
}
.office-content a:last-child {
  margin-bottom: 0;
}
.office-content a i {
  margin-right: 10px;
}

.singel-addresss {
  display: flex;
  gap: 15px;
}

/*----------------------------------------*/
/*  32. APPROACH CSS START
/*----------------------------------------*/
.approach-area {
  position: relative;
}
.approach-area::before {
  content: "";
  position: absolute;
  top: 41%;
  left: -20%;
  background: linear-gradient(180deg, #F3FAFF 0%, #6FBEFD 100%);
  opacity: 0.25;
  filter: blur(217px);
  width: 488px;
  height: 488px;
  transform: translate(20%, -60%);
  z-index: -1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .approach-area::before {
    display: none;
  }
}
.approach-title h2 {
  font-size: 55px;
  line-height: 1.1;
  font-weight: 500;
  color: #161A33;
}
.approach-img {
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #D2D2D2;
  border-top: 1px solid #D2D2D2;
}

.ap-shape {
  position: absolute;
  top: -600px;
  left: 0;
  z-index: -1;
}

.dark .approach-area::before {
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  left: 0;
  margin: auto;
  background: linear-gradient(180deg, #F3FAFF 0%, #6FBEFD 100%);
  opacity: 0.75;
  filter: blur(217px);
}
.dark .approach-title h2 {
  color: var(--clr-common-white);
}
.dark .approach-img {
  border-bottom: 1px solid #50567A;
  border-top: 1px solid #50567A;
}

/*----------------------------------------*/
/*  33. ARTIFICIAL CSS START
/*----------------------------------------*/
.et-artificial {
  z-index: 1;
}
.et-artificial-wrapper {
  padding-top: 105px;
  padding-bottom: 135px;
}
.et-artificial-img-wrap {
  bottom: 0;
  right: 0;
}
.et-artificial::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--clr-bg-1);
  opacity: 0.7;
  z-index: -1;
}
.et-artificial-content p {
  color: var(--clr-common-white);
  margin-bottom: 100px;
}

.et-artificial-shape {
  z-index: -1;
  top: -50px;
  z-index: -1;
}
.et-artificial-shape img {
  width: 100%;
}

.et-artificial-shape-2 {
  right: -155px;
  animation: et-rotate 7s linear infinite;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px), only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .et-artificial-shape-2 {
    right: 0;
  }
}

.et-artificial-shape-1 {
  left: 80px;
  animation: et-rotate 7s linear infinite reverse;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px), only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .et-artificial-shape-1 {
    left: 0;
  }
}

/*----------------------------------------*/
/*  19. FOOTER CSS START
/*----------------------------------------*/
.pt-205 {
  padding-top: 205px;
}

.footer__overlay {
  position: relative;
  z-index: 5;
}

.footer__overlay:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--clr-common-white);
  opacity: 0.961;
  z-index: -1;
}

.footer-col-2 {
  padding-left: 40px;
}
@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: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-col-2 {
    padding: 0;
  }
}

.footer-col-3 {
  padding-left: 50px;
  margin-right: -20px;
}
@media (max-width: 575px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-col-3 {
    padding-left: 25px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-col-3 {
    padding-left: 0px;
    margin-right: 0px;
  }
}

.footer-col-4 {
  margin-left: -20px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-col-4 {
    margin-left: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-col-6 {
    margin-left: 50px;
  }
}

.footer-col-7 {
  margin-left: 40px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-col-7 {
    margin-left: -76px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-col-7 {
    margin-left: 0;
  }
}

.footer__title h4 {
  font-size: 20px;
  color: var(--clr-common-white);
  margin-bottom: 35px;
}
.footer__content p {
  color: var(--clr-footer-1);
}
.footer__link ul {
  display: grid;
  gap: 0px 30px;
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer__link ul {
    gap: 0px 10px;
  }
}
.footer__link ul li {
  line-height: 1;
  margin-bottom: 29px;
  position: relative;
}
.footer__link ul li a {
  color: var(--clr-footer-1);
}
.footer__link ul li a::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 10px;
  height: 2px;
  background: var(--clr-theme-1);
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
}
.footer__link ul li a:hover {
  color: var(--clr-theme-1);
  padding-left: 15px;
}
.footer__link ul li a:hover::before {
  opacity: 1;
  visibility: visible;
}
.footer__link ul li:after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100px;
  background-color: rgb(34, 38, 46);
  left: 0;
  bottom: -14px;
}
.footer__link-2 ul li {
  line-height: 1;
  margin-bottom: 29px;
  position: relative;
}
.footer__link-2 ul li:last-child {
  margin-bottom: 0;
}
.footer__link-2 ul li:after {
  position: absolute;
  content: "";
  height: 1px;
  width: 160px;
  background-color: rgb(34, 38, 46);
  left: 0;
  bottom: -14px;
}
.footer__link-2 ul li a {
  color: var(--clr-footer-1);
}
.footer__link-2 ul li a::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 10px;
  height: 2px;
  background: var(--clr-theme-1);
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
}
.footer__link-2 ul li a:hover {
  color: var(--clr-theme-1);
  padding-left: 15px;
}
.footer__link-2 ul li a:hover::before {
  opacity: 1;
  visibility: visible;
}
.footer__link-3 ul li {
  display: inline-block;
  margin-left: 50px;
  font-size: 14px;
  font-weight: var(--bd-fw-sbold);
  text-transform: uppercase;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .footer__link-3 ul li {
    margin-left: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer__link-3 ul li {
    margin-left: 40px;
  }
}
.footer__link-3 ul li:first-child {
  margin-left: 0;
}
.footer__link-3 ul li a {
  color: var(--clr-common-white);
}
@media (max-width: 575px) {
  .footer__link-3 {
    text-align: center;
  }
}
.footer__contact-item span {
  color: var(--clr-footer-1);
}
.footer__contact-item p {
  color: var(--clr-common-white);
  font-weight: var(--bd-fw-bold);
  font-family: var(--bd-ff-heading);
  margin-bottom: 16px;
}
.footer__support-inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 20px;
  border-top: 1px solid rgb(34, 38, 46);
  padding-top: 15px;
}
.footer__support-title span {
  display: block;
  color: var(--clr-common-white);
}
.footer__support-title a {
  color: var(--clr-common-white);
  font-weight: var(--bd-fw-bold);
}
.footer__support-title a:hover {
  color: var(--clr-theme-1);
}

li.custom__link::after {
  display: none;
}

.footer__info-area {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  background: linear-gradient(0deg, var(--clr-theme-1) 0%, var(--clr-theme-3) 100%);
  padding: 20px 40px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .footer__info-area {
    padding: 20px 20px;
  }
}
@media (max-width: 575px) {
  .footer__logo {
    text-align: center;
    margin-bottom: 20px;
  }
}

.footer__copyright {
  padding: 22px 0;
}
.footer__copyright.style-2 .copyright__text p a {
  color: var(--clr-common-heading);
}
.footer__copyright.style-2 .copyright__text p a:hover {
  color: var(--clr-theme-1);
}

.copyright__text p {
  text-align: center;
  margin-bottom: 0;
  color: var(--clr-footer-1);
}
.copyright__text p a {
  color: var(--clr-common-white);
  font-weight: var(--bd-fw-sbold);
}
.copyright__text p a:hover {
  color: var(--clr-theme-1);
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: end;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .footer__social {
    margin-top: 25px;
    justify-content: center;
  }
}
.footer__social a {
  width: 50px;
  height: 50px;
  background-color: var(--clr-common-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: var(--clr-common-black);
  font-size: 16px;
}
.footer__social a:hover {
  color: var(--clr-theme-3);
}

.footer__style-2 .footer__title h4 {
  color: var(--clr-common-heading);
}
.footer__style-2 .footer__contact-item p {
  color: var(--clr-common-heading);
}
.footer__style-2 .footer__contact-item span {
  color: var(--clr-text-4);
}
.footer__style-2 .footer__link ul li a {
  color: var(--clr-text-4);
}
.footer__style-2 .footer__link ul li a:hover {
  color: var(--clr-theme-1);
}
.footer__style-2 .footer__link ul li::after {
  background-color: rgba(0, 0, 0, 0.102);
}
.footer__style-2 .footer__link-2 ul li a {
  color: var(--clr-text-4);
}
.footer__style-2 .footer__link-2 ul li a:hover {
  color: var(--clr-theme-1);
}
.footer__style-2 .footer__link-2 ul li::after {
  background-color: rgba(0, 0, 0, 0.102);
}
.footer__style-2 .footer__support-title span {
  color: var(--clr-text-4);
}
.footer__style-2 .footer__support-title a {
  color: var(--clr-common-heading);
}
.footer__style-2 .footer__support-title a:hover {
  color: var(--clr-theme-1);
}
.footer__style-2 .meta__content span {
  font-size: 14px;
  color: var(--clr-text-4);
  margin-bottom: 4px;
  display: block;
}
.footer__style-2 .meta__content span i {
  margin-right: 6px;
}
.footer__style-2 .meta__content h5 a {
  font-size: 16px;
}
.footer__style-2 .meta__content h5 a:hover {
  color: var(--clr-theme-1);
}
@media (max-width: 575px) {
  .footer__style-2 .footer__social {
    justify-content: center;
  }
}
.footer__style-2 .footer__content p {
  color: var(--clr-text-4);
}

.footer__info-area.style-2 {
  transform: translateY(-45px);
  margin-bottom: 50px;
}

.bd-ud-email--120 {
  margin-top: -120px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-ud-email--120 {
    margin-top: 0;
  }
}


.bd-ud-footer__title {
  margin-top: -5px;
}
.bd-ud-footer__title h4 {
  font-size: 18px;
  font-weight: var(--bd-fw-sbold);
  color: var(--clr-common-white);
  padding-bottom: 15px;
  position: relative;
  margin-bottom: 30px;
}
.bd-ud-footer__title h4::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 27px;
  height: 2px;
  background: var(--clr-text-15);
}
.bd-ud-footer__title h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 40px;
  width: 60px;
  height: 2px;
  background: var(--clr-text-15);
}
.bd-ud-footer-link ul {
  line-height: 1;
}
.bd-ud-footer-link ul li {
  margin-bottom: 20px;
}
.bd-ud-footer-link ul li a {
  color: var(--clr-common-white);
  position: relative;
  padding-left: 20px;
  background-image: linear-gradient(87.17deg, var(--clr-theme-1) 4.19%, var(--clr-theme-4) 80.98%);
  -webkit-background-clip: text;
  background-clip: text;
}
.bd-ud-footer-link ul li a::before {
  content: "\f105";
  position: absolute;
  top: 50%;
  left: 0;
  font-family: var(--bd-ff-fontawesome);
  transform: translateY(-50%);
  background: linear-gradient(87.17deg, var(--clr-theme-1) 4.19%, var(--clr-theme-4) 80.98%);
  -webkit-background-clip: text;
  background-clip: text;
}
.bd-ud-footer-link ul li a:hover {
  -webkit-text-fill-color: transparent;
  margin-left: 8px;
}
.bd-ud-footer-link ul li a:hover::before {
  -webkit-text-fill-color: transparent;
}
.bd-ud-footer-content p {
  color: var(--clr-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-ud-footer-content p {
    margin-bottom: 15px;
  }
}
.bd-ud-footer__widget p {
  color: var(--clr-common-white);
}
.bd-ud-email-subscribe {
  padding: 40px;
}
.bd-ud-email-subscribe p {
  color: white;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), (max-width: 450px) {
  .bd-ud-email-subscribe {
    padding: 25px;
  }
}
.bd-ud-subscribe-form .bu-ud-input {
  position: relative;
}
.bd-ud-subscribe-form .bu-ud-input i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  font-size: 22px;
  color: var(--clr-text-14);
}
.bd-ud-subscribe-form input {
  background: var(--clr-bg-3);
  
  border-radius: 6px;
  border: 0;
  height: 58px;
  padding: 0 60px 0px 23px;
  display: block;
  width: 100%;
  margin-bottom: 16px;
}
.bu-ud-input input::placeholder {
  color: black;
  opacity: 1; /* Ensures color is applied fully */
}
.bd-ud-subscribe-form button {
  background-image: linear-gradient(to right, var(--clr-theme-4), var(--clr-theme-1), var(--clr-theme-1), var(--clr-theme-4));
  background-position: 100% 100%;
  background-size: 300% 100%;
  border-radius: 6px;
  display: block;
  width: 100%;
  height: 58px;
  font-size: 18px;
  color: var(--clr-common-white);
  font-weight: var(--bd-fw-sbold);
  margin-bottom: 38px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border: 2px solid white;
}
.bd-ud-subscribe-form button:hover {
  background-position: 0% 100%;
 
}
.bd-ud-footer-social a {
  color: white;
  position: relative;
  display: inline-block;
  padding-right: 12px;
  margin-right: 12px;
}
.bd-ud-footer-social a:last-child {
  padding-right: 0;
  margin-right: 0;
}
.bd-ud-footer-social a:last-child::before {
  display: none;
}
.bd-ud-footer-social a::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  height: 12px;
  width: 2px;
  background: var(--clr-bg-4);
  transform: translateY(-50%);
}
.bd-ud-footer-social a:hover {
  color: var(--clr-theme-1);
}
.bd-ud-footer-contact ul {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
@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: 768px) and (max-width: 991px) {
  .bd-ud-footer-contact ul {
    gap: 10px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-ud-footer-contact ul {
    gap: 20px;
  }
}
.bd-ud-footer-contact ul li a {
  color: var(--clr-common-white);
  background-image: linear-gradient(87.17deg, var(--clr-theme-1) 4.19%, var(--clr-theme-4) 80.98%);
  -webkit-background-clip: text;
  background-clip: text;
}
.bd-ud-footer-contact ul li a i {
  margin-right: 11px;
}
.bd-ud-footer-contact ul li:hover a {
  -webkit-text-fill-color: transparent;
}
.bd-ud-footer-menu ul li {
  display: inline-block;
  margin-right: 43px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-ud-footer-menu ul li {
    margin-right: 20px;
  }
}
.bd-ud-footer-menu ul li a {
  font-size: 14px;
  color: var(--clr-text-16);
}
.bd-ud-footer-menu ul li a:hover {
  color: var(--clr-common-white);
}
.bd-ud-copy-text p {
  color: var(--clr-text-16);
}
.bd-ud-copy-text p a:hover {
  color: var(--clr-common-white);
}
.bd-ud-footer-bottom::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border: 1px dashed var(--clr-border-14);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .bd-ud-footer__widget3 {
    margin-left: -50px;
  }
}

.et-footer4-border {
  border-top: 1px solid #D2D2D2;
  border-bottom: 1px solid #D2D2D2;
}
.et-footer4-social ul {
  display: flex;
  row-gap: 5px;
  column-gap: 25px;
  flex-wrap: wrap;
}
.et-footer4-social ul li a {
  font-weight: 400;
  font-size: 16px;
  color: #4B423E;
}
.et-footer4-social ul li a:hover {
  color: var(--clr-theme-1);
}
.et-footer4-email h5 {
  font-weight: 500;
  font-size: 18px;
  color: #6E728D;
  margin-bottom: 15px;
}
.et-footer4-email a {
  font-weight: 500;
  font-size: 32px;
  color: var(--clr-text-11);
  text-decoration: underline;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .et-footer4-email a {
    font-size: 20px;
  }
}
.et-footer4-email a:hover {
  color: var(--clr-theme-1);
}
.et-footer4-link ul {
  line-height: 1;
}
.et-footer4-link ul li:not(:last-child) {
  margin-bottom: 18px;
}
.et-footer4-link ul li a {
  color: var(--clr-text-11);
}
.et-footer4-link ul li a:hover {
  color: var(--clr-theme-1);
  padding-left: 10px;
}
.et-footer4-widget-title {
  font-weight: 600;
  font-size: 18px;
  color: var(--clr-text-11);
  margin-bottom: 40px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .et-footer4-widget-title {
    margin-bottom: 25px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .et-footer4-widget.ml-30 {
    margin-left: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .et-footer4-widget.ml-65 {
    margin-left: 0;
  }
}
.et-footer4-location {
  margin-top: -7px;
}
.et-footer4-location p a {
  color: var(--clr-text-11);
}
.et-footer4-location p a:hover {
  color: var(--clr-theme-1);
}
.et-footer4-copy p a:hover {
  color: var(--clr-theme-1);
}

.dark .et-footer4-social ul li a {
  color: var(--clr-common-white);
}
.dark .et-footer4-social ul li a:hover {
  color: var(--clr-theme-1);
}
.dark .et-footer4-email h5 {
  color: #F79210;
}
.dark .et-footer4-email a {
  color: var(--clr-common-white);
}
.dark .et-footer4-email a:hover {
  color: var(--clr-theme-1);
}
.dark .et-footer4-link ul li a {
  color: var(--clr-common-white);
}
.dark .et-footer4-link ul li a:hover {
  color: var(--clr-theme-1);
}
.dark .et-footer4-widget-title {
  color: var(--clr-common-white);
}
.dark .et-footer4-location p a {
  color: var(--clr-common-white);
}
.dark .et-footer4-location p a:hover {
  color: var(--clr-theme-1);
}
.dark .et-footer4-copy {
  border-top: 1px solid #484848;
}
.dark .et-footer4-copy p {
  color: #919191;
}
.dark .et-footer4-wrapper {
  position: relative;
  z-index: 1;
}
.dark .et-footer4-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--clr-text-11);
  z-index: -1;
  opacity: 0.8;
}

/*# sourceMappingURL=main.css.map */




	a{
  text-decoration:none;
}
.floating_btn {
  position: fixed;
  bottom: 33px;
  right: 7px;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  z-index: 1000;
}

@keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}

.contact_icon {
  background-color: #42db87;
  color: #fff;
  width: 60px;
  height: 60px;
  font-size:30px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translatey(0px);
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 0 0 #42db87;
  -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;
  transition: all 300ms ease-in-out;
  margin-top: -80px;
  margin-right: 30px;
}

@media (max-width: 767px) and (min-width: 550px) {
  .contact_icon  {
  margin-left: 20px;
  }
}

@media (max-width: 550px) and (min-width: 250px) {
  .contact_icon  {
  margin-left: 66px;
  }
}
.text_icon {
  margin-top: 8px;
  color: #707070;
  font-size: 13px;
}

/*  *//* ================================
   Trust Brand Carousel Section
================================ */
/* =====================================
   TRUST SIGNALS + BRAND CONTINUOUS SLIDER
===================================== */

.trust-signals-area {
  padding: 60px 0;
  /* background: #0E84E1; */
  overflow: hidden;
  background: linear-gradient(to right, var(--clr-theme-1), var(--clr-theme-3), var(--clr-theme-3), var(--clr-theme-1));
}

/* Title */
.trust-title h3 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.trust-title p {
  font-size: 16px;
  color: #f0f0f0;
  margin-bottom: 50px;
}

/* Swiper Container */
.brand__actiive {
  width: 100%;
  overflow: hidden;
}

/* ✅ Smooth Continuous Movement */
.brand__actiive .swiper-wrapper {
  transition-timing-function: linear !important;
}

/* Slide Centering */
/* .brand-item {
  display: flex;
  justify-content: center;
  align-items: center;
} */

/* Logo Styling */
/* .brand-item img {
  max-height: 60px;
  width: auto;
  opacity: 0.8;
  transition: 0.3s;
}
.brand-item {
	width: 180px;
}

.brand-item img {
	max-width: 140px;
	margin: 0 auto;
} */


.brand-item {
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-item img {
  height: 60px;
  width: 160px; 
   object-fit: contain;
  opacity: 0.8;
  transition: 0.3s ease;
}


.swiper-wrapper {
  display: flex;
  align-items: center;
  width: max-content;
}
/* Hover Effect */
.brand-item img:hover {
  opacity: 1;
  transform: scale(1.08);
}

/* ✅ Tablet Responsive */
@media (max-width: 992px) {
  .trust-title h3 {
    font-size: 24px;
  }

  .brand-item img {
    max-height: 50px;
  }
}

/* ✅ Mobile Responsive */
@media (max-width: 576px) {
  .trust-signals-area {
    padding: 50px 0;
  }

  .trust-title h3 {
    font-size: 20px;
  }

  .trust-title p {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .brand-item img {
    max-height: 38px;
  }
}


@media (min-width: 992px) and (max-width: 1400px) {
  /* 1. Drastically reduce logo size */
  .bd-ud-logo img {
      /* width: 250px !important; */
      /* height: 60px !important; */
      object-fit: contain;
      /* padding: 20px; */
      /* display: visible; */
  }
  
  /* 2. Force menu to use ALL available space */
  .bd-ud-main-menu {
      width: 100% !important;
      margin-left: -15px !important;
      margin-right: -15px !important;
  }
  
  /* 3. Make menu items fit no matter what */
  .bd-ud-main-menu #mobile-menu > ul {
      display: flex !important;
      width: 100% !important;
      justify-content: space-between !important;
      margin: 0 !important;
      padding: 0 !important;
  }
  
  .bd-ud-main-menu #mobile-menu > ul > li {
      flex: 1 1 auto !important;
      margin: 0 2px !important;
      min-width: 0 !important;
      text-align: center !important;
  }
  
  /* 4. Ultra-compact menu items */
  .bd-ud-main-menu #mobile-menu > ul > li > a {
      font-size: 12px !important;
      padding: 5px 2px !important;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      display: block;
      line-height: 1.2;
  }
  
  /* 5. Hide "Are you ready to grow up your business?" text */
  .bd-ud-header-middle-info li:first-child span {
      display: none !important;
  }
  
  /* 6. Reduce contact info size */
  .bd-ud-header-middle-info li {
      font-size: 12px !important;
  }
  
  .bd-ud-header-middle-info li a i {
      font-size: 14px !important;
  }
  
  /* 7. If STILL breaking, hide email text */
  .bd-ud-header-middle-info li:nth-child(2) .__cf_email__ {
      display: none !important;
  }
  
  /* 8. If STILL breaking, show only phone icon */
  .bd-ud-header-middle-info li:nth-child(3) a span {
      font-size: 11px !important;
  }
}
/* Ensure smooth continuous movement */
.brand__actiive .swiper-wrapper {
	transition-timing-function: linear !important;
}

/* Prevent any hover interruption */
.brand__actiive:hover .swiper-wrapper {
	transition-timing-function: linear !important;
}

/* Make sure slides don't wrap */
.brand__actiive .swiper-slide {

	flex-shrink: 0;
}

/*  */
.service-icon {
  font-size: 55px;
  background: linear-gradient(90deg, #00f0ff, #7a5cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.service__item-thumb {
  height: 70px;
  display: flex;
  align-items: center;

}

.service-icon {
  font-size: 55px;
  background: linear-gradient(90deg, #00f0ff, #7a5cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* ✅ Service Card Base */
.service__item-one {
  position: relative;
  background: #1e232c;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s ease;
}

/* ✅ Overlay Layer */
.service__item-one::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0, 240, 255, 0.15),
    rgba(122, 92, 255, 0.15)
  );
  opacity: 0;
  transition: 0.4s ease;
  z-index: 0;
}

/* ✅ Hover Overlay Effect */
.service__item-one:hover::before {
  opacity: 1;
}

/* ✅ Lift Up on Hover */
.service__item-one:hover {
  transform: translateY(-10px);
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.4);
}

/* ✅ Keep Content Above Overlay */
.service__item-wrapper {
  position: relative;
  z-index: 2;
}

/* ✅ Fix Icon Size */
.service__item-thumb {
  height: 70px;
  display: flex;
  align-items: center;
}

.service-icon {
  font-size: 55px;
  background: linear-gradient(90deg, #00f0ff, #7a5cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ✅ Read More Button Style */
.service__btn1 {
  display: inline-block;
  padding: 10px 22px;
  background: transparent;
  border: 1px solid rgba(0, 240, 255, 0.6);
  border-radius: 6px;
  font-weight: 600;
  color: #fff;
  transition: 0.3s ease;
  text-decoration: none;
}

/* ✅ Button Hover */
.service__btn1:hover {
  background: linear-gradient(90deg, #00f0ff, #7a5cff);
  color: #000;
  border-color: transparent;
}



/* ===== LOGO SIZE CONTROL — CLEAN ===== */

.bd-ud-logo img.site-logo {
  height: 70px;
  width: auto;
  max-height: none;
  object-fit: contain;
}

/* < 1400 */
@media (max-width: 1399px) {
  .bd-ud-logo img.site-logo {
    height: 65px !important;
  }
}

/* < 1200 */
@media (max-width: 1199px) {
  .bd-ud-logo img.site-logo {
    height: 60px;
  }
}

/* < 992 */
@media (max-width: 991px) {
  .bd-ud-logo img.site-logo {
    height: 52px;
  }
}

/* < 576 */
@media (max-width: 575px) {
  .bd-ud-logo img.site-logo {
    height: 46px;
  }
}

/* prevent grid crush */
.bd-ud-logo {
  min-width: 200px;
}



/*  */



/*  */

.solutions-products-area {
  position: relative;
  overflow: hidden;
}

.solutions-products-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #0E84E1, transparent);
}

/* Solution Items */
.solution__item {
  border-radius: 12px;
  padding: 40px 30px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 2px solid black;
}

.solution__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #0E84E1;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.solution__item:hover {
  transform: translateY(-10px);
  border-color: #0E84E1 !important;
  box-shadow: 0 20px 40px rgba(14, 132, 225, 0.15);
}

.solution__item:hover::before {
  transform: scaleX(1);
}

/* Solution Icons */
.solution__icon-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.solution__icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
}

.solution__number {
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
}

/* Solution Content */
.solution__content h3 {
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 600;
}

.solution__content p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.solution__features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.solution__features li {
  font-size: 14px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.solution__features li i {
  margin-right: 10px;
  font-size: 12px;
}


/* ===== MOBILE CENTER FIX ===== */
@media (max-width: 767px) {

  .solution__item {
    text-align: center;
    padding: 25px 18px;
  }

  /* center icon row */
  .solution__icon-wrapper {
    display: flex;
    justify-content: center !important;
    align-items: center;
  }

  /* center title + paragraph */
  .solution__content h3,
  .solution__content p {
    text-align: center;
  }

  /* center bullet list */
  .solution__features {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .solution__features li {
    justify-content: center;
    text-align: center;
  }

  .solution__features li i {
    margin-right: 6px;
  }

}


/* CTA Buttons */
.solutions-cta {
  margin-top: 50px;
}

.solutions-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-weight: 600;
  font-size: 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  min-width: 180px;
  border: 2px solid;
  text-decoration: none;
}

.solutions-btn-primary {
  color: white;
}

.solutions-btn-primary:hover {
  background: #0c76ca !important;
  border-color: #0c76ca !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(14, 132, 225, 0.2);
  color: white;
}

.solutions-btn-secondary {
  color: #0E84E1;
}

.solutions-btn-secondary:hover {
  background: #0E84E1 !important;
  color: white !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(14, 132, 225, 0.2);
}

.bdevs-btn-icon {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.solutions-btn:hover .bdevs-btn-icon {
  transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 1199px) {
  .solution__item {
      padding: 35px 25px;
  }
  
  .solution__content h3 {
      font-size: 20px;
  }
}

@media (max-width: 991px) {
  .solutions-products-area {
      padding: 80px 0 60px;
  }
  
  .solution__item {
      margin-bottom: 30px;
  }
  
  .solution__content h3 {
      font-size: 22px;
  }
  
  .solutions-btn {
      padding: 14px 28px;
      min-width: 160px;
      font-size: 15px;
  }
}

@media (max-width: 767px) {
  .solutions-btn {
      padding: 12px 24px;
      min-width: 140px;
      font-size: 14px;
  }
  
  .solutions-cta {
      display: flex;
      flex-direction: column;
      gap: 20px;
      align-items: center;
  }
  
  .solutions-btn {
      width: 100%;
      max-width: 280px;
  }
  
  .solutions-btn.mr-20 {
      margin-right: 0 !important;
  }
}

@media (max-width: 575px) {
  .solutions-products-area {
      padding: 60px 0 30px;
  }
  
  .solution__item {
      padding: 25px 20px;
  }
  
  .solution__icon-wrapper {
      margin-bottom: 20px;
      display: flex;
      justify-content: center;
  }
  .solution{
    display: flex;
    justify-content: center;
  }
  
  .solution__content h3 {
      font-size: 18px;
  }
  
  .solution__content p {
      font-size: 14px;
  }
  
  .solution__icon {
      width: 50px;
      height: 50px;
      font-size: 20px;
  }
  
  .solution__number {
      font-size: 50px;
  }
}

/* Hover Effects for Different Solution Types */
.enterprise-solution:hover .solution__icon {
  background: linear-gradient(135deg, #0c76ca 0%, #0E84E1 100%) !important;
}

.digital-solution:hover .solution__icon {
  background: linear-gradient(135deg, #0c76ca 0%, #0E84E1 100%) !important;
}

.industry-solution:hover .solution__icon {
  background: linear-gradient(135deg, #0c76ca 0%, #0E84E1 100%) !important;
}

.platform-solution:hover .solution__icon {
  background: linear-gradient(135deg, #0c76ca 0%, #0E84E1 100%) !important;
}

/* Add subtle animation to section title */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.wow.fadeInUp {
  animation: fadeInUp 0.8s ease-out;
}



/* Industries Card Flip Effect */
.industry__card {
  height: 350px;
  perspective: 1000px;
  margin-bottom: 30px;
  border: 1px solid black;
  border-radius: 17px;
}

.industry__card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  cursor: pointer;
  border-radius: 16px;
  overflow: hidden;
}

/* .industry__card:hover .industry__card-inner {
  transform: rotateY(180deg);
} */

/* Front and Back Faces - Same Structure */
.industry__card-front, .industry__card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 16px;
  padding: 30px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

/* Front Card */
.industry__card-front {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
}

/* Back Card - Full Color Gradient */
.industry__card-back {
  background: linear-gradient(135deg, #0E84E1 0%, #3ba0ff 100%);
  transform: rotateY(180deg);
}

/* Shadow Enhancement on Hover */
.industry__card:hover {
  box-shadow: 0 20px 50px rgba(14, 132, 225, 0.2);
}

/* Icon Styling - Both Front and Back */
.industry__icon-wrapper {
  margin-bottom: 10px;
}

.industry__icon {
  /* width: 70px;
  height: 70px; */

  width: 114px;
    height: 114px;
  border-radius: 16px ;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: white;
  margin: 0 auto;
  transition: all 0.4s ease;
  margin-top: 10px !important;
}

/* Icon Color Change on Hover */
.industry__card:hover .industry__card-front .industry__icon {
  transform: scale(1.1);
}

/* Content Styling - Both Front and Back */
.industry__content {
  text-align: center;
}

.industry__content h3 {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.industry__content p {
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 20px;
  min-height: 72px;
}

/* Features Tags - Both Front and Back */
.industry__features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}

.industry__feature-tag {
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Back Side Button */
.industry__back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: white;
  color: #0E84E1;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border: none;
  transition: all 0.3s ease;
  margin-top: 10px;
  min-width: 150px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.industry__back-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  background: #f8f9fa;
}

.industry__back-btn i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.industry__back-btn:hover i {
  transform: translateX(5px);
}
.industry__card-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Faces */
.industry__card-front,
.industry__card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  transition: transform 0.8s ease;
  gap: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between; 
}

/* Front stays normal */
.industry__card-front {
  transform: rotateY(0deg);
}

/* Back starts hidden */
.industry__card-back {
  transform: rotateY(180deg);
  opacity: 0;
  visibility: hidden;
}

/* Hover flip */
.industry__card:hover .industry__card-front {
  transform: rotateY(-180deg);
}

.industry__card:hover .industry__card-back {
  transform: rotateY(0deg);
  opacity: 1;
  visibility: visible;
}


/* More Industries Special Styling */
.industry__card-front[style*="background: linear-gradient"] .industry__content h3,
.industry__card-front[style*="background: linear-gradient"] .industry__content p,
.industry__card-front[style*="background: linear-gradient"] .industry__feature-tag {
  color: white !important;
}


/* =========================
   MOBILE GAP FIX — INDUSTRY CARDS
========================= */



@media (max-width: 768px) {

  .industry__card-front,
  .industry__card-back {
    justify-content: center !important;
    gap: 6px !important;
  }

  .industry__icon-wrapper {
    margin-bottom: 8px !important;
  }

  .industry__icon {
    margin-top: 0 !important;
  }

  .industry__content h3 {
    margin-bottom: 6px !important;
  }

  .industry__content p {
    min-height: auto !important;
    margin-bottom: 8px !important;
  }

}
/* Industry card paragraph font size between 1200px and 1400px */
@media (min-width: 1200px) and (max-width: 1400px) {
  .industry__content p {
      font-size: 13px !important;
      line-height: 1.3 !important;
  }
}

/* Responsive Styles */
@media (max-width: 1199px) {
  .industry__card {
      height: 320px;
  }
  
  .industry__card-front, .industry__card-back {
      padding: 35px 25px;
  }
  
  .industry__icon {
      width: 65px;
      height: 65px;
      font-size: 28px;
  }
  
  .industry__content h3 {
      font-size: 22px;
  }
}

@media (max-width: 991px) {
  .industry__card {
      height: 300px;
  }
  
  .industry__card-front, .industry__card-back {
      padding: 30px 20px;
  }
  
  .industry__icon {
      width: 60px;
      height: 60px;
      font-size: 26px;
      margin-bottom: 20px;
  }
  
  .industry__content h3 {
      font-size: 20px;
      margin-bottom: 12px;
  }
  
  .industry__content p {
      font-size: 14px;
      min-height: 63px;
      margin-bottom: 15px;
  }
  
  .industry__feature-tag {
      padding: 6px 12px;
      font-size: 11px;
  }
  
  .industry__back-btn {
      padding: 10px 22px;
      font-size: 13px;
      min-width: 130px;
  }
}

@media (max-width: 767px) {
  .industry__card {
      height: 280px;
  }
  
  .industry__content p {
      min-height: auto;
  }
  
  .industry__card-front, .industry__card-back {
      padding: 25px 15px;
  }
  
  .industry__icon {
      width: 55px;
      height: 55px;
      font-size: 24px;
      margin-bottom: 15px;
  }
  
  .industry__content h3 {
      font-size: 18px;
      margin-bottom: 10px;
  }
  
  .industry__content p {
      font-size: 13px;
      margin-bottom: 12px;
  }
  
  .industry__feature-tag {
      padding: 5px 10px;
      font-size: 10px;
  }
  
  .industry__back-btn {
      padding: 8px 18px;
      font-size: 12px;
      min-width: 120px;
  }
}

@media (max-width: 575px) {
  .industry__card {
      height: 320px;
      margin-bottom: 20px;
  }
  
  .industry__card-front, .industry__card-back {
      padding: 30px 20px;
  }
}

/* Touch Device Optimization */
/* @media (hover: none) and (pointer: coarse) {
  .industry__card-inner {
      transform: rotateY(180deg);
  }
  
  .industry__card {
      cursor: default;
  }
} */


/* ✅ Disable Flip Completely on Mobile */
/* @media (max-width: 768px) {

  .industry__card-inner {
    transform: none !important;
  }

  .industry__card-front {
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .industry__card-back {
    display: none !important;
  }

} */


@media (max-width: 768px) {
  /* Keep flip but make it active on tap instead of hover */
  .industry__card-inner {
    transition: transform 0.6s ease;
  }
  
  /* Add active class for tap-to-flip on mobile */
  .industry__card.active .industry__card-inner {
    transform: rotateY(180deg);
  }
  
  /* Adjust card height for better fit */
  .industry__card {
    height: auto;
    min-height: 320px;
  }
  
  /* Ensure back face is visible when flipped */
  .industry__card-back {
    display: flex !important;
  }
}

/* Animation for Smooth Rotation */
@keyframes cardFlip {
  0% {
      transform: rotateY(0deg);
  }
  100% {
      transform: rotateY(180deg);
  }
}

/* Main CTA Button */
.industry-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  font-weight: 600;
  font-size: 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  min-width: 200px;
  border: 2px solid;
  text-decoration: none;
  color: white;
}

.industry-btn:hover {
  background: #0c76ca !important;
  border-color: #0c76ca !important;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(14, 132, 225, 0.25);
  color: white;
}

.bdevs-btn-icon {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.industry-btn:hover .bdevs-btn-icon {
  transform: translateX(5px);
}

/* Text Colors for Back Side */
.industry__card-back .industry__content h3 {
  color: white;
}

.industry__card-back .industry__content p {
  color: rgba(255, 255, 255, 0.9);
}



/* ================================
   WHY CHOOSE US SECTION (WHITE CARDS)
================================ */

.why-choose-area {
  background-color: #1F242C; /* dark section background */
}

/* Add this to your existing CSS - Bottom to Top Overlay Effect */
.choose__item {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Bottom-to-top overlay gradient */
.choose__item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(135deg, rgba(14,132,225,0.92), rgba(101,81,179,0.92));
  transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
  border-radius: inherit;
}

/* On hover: overlay rises from bottom to top */
.choose__item:hover::after {
  height: 100%;
}

/* Optional: ensure text becomes white on hover for better visibility */
.choose__item:hover h3,
.choose__item:hover p {
  color: #ffffff;
}

/* Icon color adjustment on hover (keeps it visible) */
.choose__item:hover .choose__icon {
  background: #ffffff;
}

.choose__item:hover .choose__icon i {
  color: #0E84E1;
}

/* ✅ White Card Base */
.why-choose-area .choose__item {
  position: relative;
  background: #ffffff; /* ✅ White base */
  border: 1px solid #e9ecef;
  padding: 35px 25px;
  border-radius: 18px;
  text-align: center;
  overflow: hidden;
  transition: all 0.4s ease;
  height: 100%;
  z-index: 1;
}

/* ✅ Gradient Overlay Hover Effect */
.why-choose-area .choose__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(151, 71, 255, 0.25),
    rgba(66, 133, 244, 0.25)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

/* ✅ Overlay Visible on Hover */
.why-choose-area .choose__item:hover::before {
  opacity: 1;
}

/* ✅ Hover Lift + Shadow */
.why-choose-area .choose__item:hover {
  transform: translateY(-10px);
  border-color: rgba(66, 133, 244, 0.5);
  box-shadow: 0 15px 40px rgba(66, 133, 244, 0.25);
}

/* ✅ Icon Circle Gradient */
.why-choose-area .choose__icon {
  width: 75px;
  height: 75px;
  background: linear-gradient(135deg, #9747FF, #4285F4);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(151, 71, 255, 0.25);
  transition: all 0.3s ease;
}

/* ✅ Icon */
.why-choose-area .choose__icon i {
  font-size: 28px;
  color: #ffffff;
}

/* ✅ Icon Hover Zoom */
.why-choose-area .choose__item:hover .choose__icon {
  transform: scale(1.1);
}

/* ✅ Heading */
.why-choose-area h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a1a; /* ✅ Dark text */
}

/* ✅ Paragraph */
.why-choose-area p {
  font-size: 15px;
  color: #555;
  margin-bottom: 0;
}

/* ✅ Responsive */
@media (max-width: 768px) {
  .why-choose-area .choose__item {
    padding: 30px 20px;
  }

  .why-choose-area h3 {
    font-size: 18px;
  }
}








/* ================================
   TECHNOLOGY STACK CAROUSEL CARDS
================================ */

.tech-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius:20px 20px 20px 20px ;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
/* box-shadow: #000; */
}

/* Overlay Effect */
.tech-card::before {
  content: "";
  position: absolute;
  inset: 0;

  /* ✅ Transparent Gradient Overlay */
  /* background: linear-gradient(
    135deg,
    rgba(151, 71, 255, 0.75),
    rgba(66, 133, 244, 0.75)
  ); */

  background: 
  linear-gradient(
    135deg,
    rgba(14, 132, 225, 0.85),
    rgba(0, 0, 0, 0.6)
  ),
  /* url('/public/frontend/assets/img/about/about-02.jpg');  */
  url('/frontend/assets/img/about/about-01.jpg');
background-size: cover;
background-position: center;
transform: scale(1.1); /* slight zoom effect */


  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.tech-card:hover::before {
  opacity: 1;
  /* padding: 25px; */
}



/* Icon Circle */
.tech-icon {
  width: 75px;
  height: 75px;
  background: linear-gradient(135deg, #9747FF, #4285F4);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.tech-icon i {
  font-size: 30px;
  color: #ffffff;
}

/* Text */
.tech-card h3,
.tech-card p {
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.tech-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
}

.tech-card p {
  font-size: 15px;
  color: #555;
}

/* Hover Text White */
.tech-card:hover h3,
.tech-card:hover p {
  color: #ffffff;
}

/* Smooth Lift */
.tech-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 45px rgba(66, 133, 244, 0.25);
}

/* Carousel Controls Styling */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}
@media (max-width: 767px) {
  .our h2 {
    font-size: 18px;
  }
}

/* Default Desktop */
.technology-stack-area h2 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
}

/* ✅ Tablet */
@media (max-width: 991px) {
  .technology-stack-area h2 {
    font-size: 40px;
  }
}

/* ✅ Mobile */
@media (max-width: 575px) {
  .technology-stack-area h2 {
    font-size: 28px;
    line-height: 1.3;
  }
}

/* ✅ Extra Small Phones */
@media (max-width: 400px) {
  .technology-stack-area h2 {
    font-size: 24px;
  }
}



/* Engagement */
/* Engagement Models Section Styles */
.engagement-models-section {
  background: linear-gradient(135deg, #f8faff 0%, #f0f5ff 100%);
  position: relative;
  overflow: hidden;
}

.engagement-models-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #4a6cf7, transparent);
}



.models-grid {
  display: grid;
  gap: 30px;
}


/* ✅ Mobile: 1 centered card */
@media (max-width: 767px) {
  .models-grid {
    grid-template-columns: 1fr;
    justify-items: center;   /* ✅ Fix */
  }
}

/* ✅ Tablet: 2 cards */
@media (min-width: 768px) and (max-width: 1199px) {
  .models-grid {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }
}

/* ✅ Desktop: 4 cards */
@media (min-width: 1200px) {
  .models-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ✅ Card responsive */
.model-card {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}



/* Section Header */
.section-header {
  position: relative;
  padding-bottom: 20px;
}

.section-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #4a6cf7, #6a8eff);
  border-radius: 2px;
}

.section-subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #4a6cf7;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  background: rgba(74, 108, 247, 0.1);
  padding: 5px 15px;
  border-radius: 20px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  line-height: 1.3;
}

.section-description {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* Model Cards Grid */
.models-grid {
  display: grid;
  gap: 30px;
}

@media (min-width: 768px) {
  .models-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .models-grid {
      grid-template-columns: repeat(4, 1fr);
  }
}

/* Model Card */
/* Model Card */
.model-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(74, 108, 247, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  /* width: 300px; */  /* ← COMMENTED OUT - Let grid control width */
}

/* Responsive fix for engagement models */
@media (max-width: 1399px) {
  .models-grid {
    justify-content: center;
    gap: 25px;
  }
  
  .model-card {
    /* width: 280px; */  /* ← REMOVE THIS */
    margin: 0 auto;
    max-width: 280px;  /* ← ADD THIS - use max-width instead of fixed width */
  }
  .model-btn{
    font-size: 13px !important;
  }

}

@media (max-width: 1199px) {
  .models-grid {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    gap: 30px;
  }
  
  .model-card {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 767px) {
  .models-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 25px;
  }
  
  .model-card {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 575px) {
  .model-card {
    width: 100%;
    max-width: 280px;
    padding: 30px 20px;
  }
}

/* ADD THIS NEW MEDIA QUERY FOR THE 1230px ISSUE */
@media (min-width: 1200px) and (max-width: 1299px) {
  .models-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  
  .model-card {
    padding: 35px 25px;
  }
  
  .model-title {
    font-size: 22px;
  }
  
  .model-description {
    font-size: 14px;
  }
}
.model-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #4a6cf7, #6a8eff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.model-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 60px rgba(74, 108, 247, 0.15);
  border-color: rgba(74, 108, 247, 0.3);
}

.model-card:hover::before {
  transform: scaleX(1);
}

/* Model Icon */
/* .model-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, #4a6cf7, #6a8eff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.model-icon::after {
  content: '';
  position: absolute;
  width: 90px;
  height: 90px;
  border: 2px dashed rgba(74 108 247 / 55%);;
  border-radius: 50%;
  animation: spin 20s linear infinite;
}

.model-icon i {
  font-size: 32px;
  color: white;
  position: relative;
  z-index: 1;
} */




/* Model Icon - FIXED VERSION */
.model-icon {
  width: 70px;          /* Slightly smaller */
  height: 70px;         /* Slightly smaller */
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #4a6cf7, #6a8eff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.model-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Perfect centering */
  width: 80px;          /* Slightly larger than icon */
  height: 80px;         /* Slightly larger than icon */
  border: 2px dashed rgba(74 108 247 / 55%);
  border-radius: 50%;
  animation: spin 20s linear infinite;
}

.model-icon i {
  font-size: 28px;      /* Adjusted for smaller icon */
  color: white;
  position: relative;
  z-index: 1;
}

/* Optional: Improve animation */
@keyframes spin {
  0% { 
    transform: translate(-50%, -50%) rotate(0deg); 
  }
  100% { 
    transform: translate(-50%, -50%) rotate(360deg); 
  }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Model Title */
.model-title {
  font-size: 24px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.4;
}


/* Model Description */
.model-description {
  color: #000000;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 500;
}

/* Model Details */
.model-details {
  margin-bottom: 30px;
}

.detail-title {
  font-size: 16px;
  font-weight: 600;
  color: #4a6cf7;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.detail-title i {
  font-size: 14px;
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.detail-list li {
  padding: 8px 0;
  font-size: 14px;
  color: #555;
  position: relative;
  padding-left: 25px;
  line-height: 1.5;
}

.detail-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #4a6cf7;
  font-size: 18px;
  line-height: 1;
}

/* Model Button */
.model-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 30px;
  background: linear-gradient(90deg, #4a6cf7, #6a8eff);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  gap: 10px;
}

.model-btn:hover {
  background: white;
  color: #4a6cf7;
  border-color: #4a6cf7;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(74, 108, 247, 0.2);
}

.model-btn i {
  transition: transform 0.3s ease;
}

.model-btn:hover i {
  transform: translateX(5px);
}

/* Comparison Card */
.comparison-card {
  background: linear-gradient(135deg, #4a6cf7 0%, #6a8eff 100%);
  border-radius: 25px;
  padding: 50px;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(74, 108, 247, 0.3);
}

.comparison-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  animation: float 20s linear infinite;
}

@keyframes float {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.comparison-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.comparison-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.comparison-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.comparison-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.feature-item i {
  font-size: 32px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.1);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.feature-item:hover i {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.feature-item span {
  font-weight: 600;
  font-size: 15px;
}

/* Consultation Button */
.consultation-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: white;
  color: #4a6cf7;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  gap: 10px;
}

.consultation-btn:hover {
  background: transparent;
  color: white;
  border-color: white;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

.consultation-btn i {
  transition: transform 0.3s ease;
}

.consultation-btn:hover i {
  transform: translateX(8px);
}

/* Responsive Design */
@media (max-width: 1199px) {
  .section-title {
      font-size: 36px;
  }
  
  .comparison-title {
      font-size: 28px;
  }
}

@media (max-width: 991px) {
  .engagement-models-section {
      padding: 80px 0;
  }
  
  .section-title {
      font-size: 32px;
  }
  
  .comparison-card {
      padding: 40px 30px;
  }
}

@media (max-width: 767px) {
  .engagement-models-section {
      padding: 60px 0;
  }
  
  .section-title {
      font-size: 28px;
  }
  
  .section-description {
      font-size: 16px;
  }
  
  .model-card {
      padding: 30px 20px;
      /* margin-left: 110px; */
  }
  
  .model-title {
      font-size: 22px;
  }
  
  .comparison-features {
      gap: 30px;
  }
  
  .feature-item i {
      width: 60px;
      height: 60px;
      font-size: 24px;
  }
}

@media (max-width: 575px) {
  .section-title {
      font-size: 24px;
  }
  
  .comparison-title {
      font-size: 24px;
  }
  
  .comparison-description {
      font-size: 16px;
  }
  
  .model-btn, .consultation-btn {
      padding: 12px 25px;
      font-size: 14px;
  }
}


/* Model Card - Add blue overlay on hover */
.model-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(74, 108, 247, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  width: 300px;
}

/* Add this for the blue overlay effect */
.model-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to top, rgba(42, 82, 190, 0.9), transparent);
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
  pointer-events: none;
}

.model-card:hover::after {
  height: 100%; /* Covers the entire card from bottom to top */
}

/* Make sure all content is above the overlay */
.model-icon,
.model-title,
.model-description,
.model-details,
.model-btn {
  position: relative;
  z-index: 1;
}

.model-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #4a6cf7, #6a8eff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  z-index: 2; /* Keep the top border above overlay */
}

.model-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 60px rgba(74, 108, 247, 0.15);
  border-color: rgba(74, 108, 247, 0.3);
}

.model-card:hover::before {
  transform: scaleX(1);
}


/* Mobile Responsive Fix */
@media (max-width: 768px) {
  .section-title {
    font-size: 30px;
  }

  .model-card {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 24px ;
  }

  .section-description {
    font-size: 15px;
  }
}


/* Alternative: If you want overlay only at the bottom half */
/* 
.model-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to top, rgba(74, 108, 247, 0.2), rgba(74, 108, 247, 0));
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
  pointer-events: none;
  border-radius: 0 0 20px 20px;
}

.model-card:hover::after {
  height: 60%; /* Only covers bottom 60% 
}
*/

/* Alternative 2: If you want a solid blue overlay at bottom */
/*
.model-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: rgba(74, 108, 247, 0.1);
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
  pointer-events: none;
  border-radius: 0 0 20px 20px;
}

.model-card:hover::after {
  height: 50%;
}
*/

/* Alternative 3: Gradient overlay from center to bottom */
/*
.model-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to top, rgba(74, 108, 247, 0.15), transparent);
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
  pointer-events: none;
  border-radius: 0 0 20px 20px;
}

.model-card:hover::after {
  height: 80%;
}
*/

/* Keep all other styles the same, just add the ::after pseudo-element */

/* ================================
   FINAL CTA SECTION
================================ */

.final-cta-area {

  position: relative;
  padding-bottom: 25px;
  padding-top: 25px;
}

/* CTA Wrapper Box */
.final-cta-wrapper {
  background: linear-gradient(135deg, #9747FF, #4285F4);
  padding: 80px 60px;
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(66, 133, 244, 0.35);
  max-width: 950px;
  margin: 0 auto;
}

/* Heading */
.final-cta-wrapper h2 {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
}

/* Supporting Line */
.final-cta-wrapper p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Buttons Wrapper */
.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Primary Button */
.cta-btn-primary {
  background: #ffffff;
  color: #1a1a1a;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 700;
  transition: 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta-btn-primary:hover {
  background: #1F242C;
  color: #ffffff;
}

/* Secondary Button */
.cta-btn-secondary {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 700;
  transition: 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta-btn-secondary:hover {
  background: #ffffff;
  color: #1a1a1a;
}


/* =========================
   CTA RESPONSIVE FIX
========================= */

/* --- Tablet --- */
@media (max-width: 991px) {

  .final-cta-bg {
    border-radius: 14px;
  }

  .final-cta-title {
    font-size: 36px !important;
    line-height: 1.25;
  }

  .final-cta-text {
    font-size: 16px !important;
    margin-bottom: 28px;
    padding: 0 10px;
  }

  .final-cta-bg.pt-90.pb-90 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }

  .final-cta-btn {
    padding: 12px 26px;
    font-size: 15px;
  }
}


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

  .final-cta-bg {
    border-radius: 12px;
  }

  .final-cta-bg.pt-90.pb-90 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }

  .final-cta-title {
    font-size: 26px !important;
    line-height: 1.3;
  }

  .final-cta-text {
    font-size: 14px !important;
    margin-bottom: 22px;
  }

  /* Stack buttons full width */
  .final-cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 14px !important;
  }

  .final-cta-btn {
    width: 100%;
    max-width: 260px;
    justify-content: center;
    font-size: 14px;
    padding: 12px 20px;
  }
}


/* Responsive */
@media (max-width: 768px) {
  .final-cta-wrapper {
    padding: 60px 25px;
  }

  .final-cta-wrapper h2 {
    font-size: 30px;
  }

  .final-cta-wrapper p {
    font-size: 16px;
  }
}
/* Final CTA Background Like Counter */
.final-cta-bg {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

/* Gradient Overlay */
.final-cta-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #0E84E1 0%, #6A5AE0 100%);
  opacity: 0.92;
  z-index: 1;
}

/* Content Above Overlay */
.final-cta-bg .row {
  position: relative;
  z-index: 2;
}

/* Text Styling */
.final-cta-title {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.final-cta-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  margin-bottom: 40px;
}

/* Buttons */
.final-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
}

/* Primary Button */
.primary-btn {
  background: #fff;
  color: #0E84E1;
}

.primary-btn:hover {
  transform: translateY(-3px);
  color: #f0f0f0 !important;
}

/* Secondary Button */
.secondary-btn {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

.secondary-btn:hover {
  background: #fff;
  color: #0E84E1;
}
/* footer  */
.footer-submenu {
  display: none !important;
}

.footer-dropdown.active .footer-submenu {
  display: block !important;
}
/* Footer Dropdown Clean Styling */
.footer-dropdown {
  width: 100%;
}

/* Toggle Row */
.footer-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 0;
  color: #fff;
}

/* Arrow */
.footer-dropdown-toggle .arrow {
  font-size: 18px;
  font-weight: bold;
}

/* Submenu Box */
.footer-submenu {
  display: none;
  margin-top: 8px;
  padding-left: 12px;
}

/* Active Show */
.footer-dropdown.active .footer-submenu {
  display: block;
}

/* Submenu Links Proper */
.footer-submenu li {
  margin: 6px 0;
}

.footer-submenu li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: 0.3s;
  display: block;
}

/* Hover Effect */
.footer-submenu li a:hover {
  color: #0E84E1;
  padding-left: 5px;
}







/* ABOUT US SECTION START */
/*  */
.mouse-glow {
  position: fixed;
  top: 0;
  left: 0;

  width: 80px;
  height: 80px;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 999999;

  /* Outer Glow */
  background: rgba(14, 132, 225, 0.15);
  box-shadow: 0 0 60px rgba(14, 132, 225, 0.4);

  /* REMOVE blur from parent */
}

/* ✅ Sharp Dot */
.mouse-glow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;

  width: 12px;
  height: 12px;
  border-radius: 50%;

  background: #0E84E1;
  transform: translate(-50%, -50%);

  box-shadow: 0 0 15px rgba(14, 132, 225, 0.9);
}







/* Core Values Styles */
.bd-ud-core-values-area {
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.bd-ud-core-values-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="%233a86ff" opacity="0.02"/></svg>');
  background-size: cover;
  z-index: 0;
}

.bd-ud-core-value-card {
  height: 100%;
  perspective: 1000px;
}

.bd-ud-core-value-card-inner {
  position: relative;
  height: 100%;
  padding: 40px 30px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  z-index: 1;
}

.bd-ud-core-value-card-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #3a86ff, #8338ec, #ff006e);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.bd-ud-core-value-card-inner:hover::before {
  transform: scaleX(1);
}

.bd-ud-core-value-card-inner:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(58, 134, 255, 0.15);
  border-color: rgba(58, 134, 255, 0.1);
}

.bd-ud-core-value-icon-wrapper {
  position: relative;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bd-ud-core-value-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3a86ff, #8338ec);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.bd-ud-core-value-card:hover .bd-ud-core-value-icon {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 10px 20px rgba(58, 134, 255, 0.3);
}

.bd-ud-core-value-icon i {
  font-size: 30px;
  color: white;
  transition: transform 0.4s ease;
}

.bd-ud-core-value-card:hover .bd-ud-core-value-icon i {
  transform: scale(1.2);
}

.bd-ud-core-value-number {
  font-size: 48px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.03);
  line-height: 1;
  user-select: none;
}

.bd-ud-core-value-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a1a;
  position: relative;
  padding-bottom: 10px;
}

.bd-ud-core-value-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: #3a86ff;
  border-radius: 2px;
  transition: width 0.4s ease;
}

.bd-ud-core-value-card:hover .bd-ud-core-value-title::after {
  width: 60px;
}

.bd-ud-core-value-text {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 15px;
}

.bd-ud-core-value-hover-content {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(135deg, #3a86ff, #8338ec);
  color: white;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  border-radius: 0 0 20px 20px;
}

.bd-ud-core-value-card:hover .bd-ud-core-value-hover-content {
  bottom: 0;
  opacity: 1;
}

.bd-ud-core-value-hover-content p {
  color: white;
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

.bd-ud-core-value-line {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 30px;
  height: 2px;
  background: #e0e0e0;
  transition: all 0.4s ease;
}

.bd-ud-core-value-card:hover .bd-ud-core-value-line {
  width: 50px;
  background: #3a86ff;
}

/* Animation for card stagger */
@keyframes float {
  0%, 100% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-10px);
  }
}

.bd-ud-core-value-card {
  animation: float 6s ease-in-out infinite;
}

/* Add delay for each card floating animation */
.bd-ud-core-value-card:nth-child(1) { animation-delay: 0s; }
.bd-ud-core-value-card:nth-child(2) { animation-delay: 1s; }
.bd-ud-core-value-card:nth-child(3) { animation-delay: 2s; }
.bd-ud-core-value-card:nth-child(4) { animation-delay: 3s; }
.bd-ud-core-value-card:nth-child(5) { animation-delay: 4s; }
.bd-ud-core-value-card:nth-child(6) { animation-delay: 5s; }


/* =========================
   CORE VALUES — MOBILE CENTER ALIGN
========================= */
@media (max-width: 768px) {

  .bd-ud-core-value-card-inner {
    text-align: center;
  }

  .bd-ud-core-value-icon-wrapper {
    justify-content: center !important;
    margin-bottom: 15px;
  }

  .bd-ud-core-value-title {
    text-align: center;
  }

  .bd-ud-core-value-text {
    text-align: center;
  }

  /* center the underline line */
  .bd-ud-core-value-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  /* optional — center bottom line accent */
  .bd-ud-core-value-line {
    right: 50%;
    transform: translateX(50%);
  }


  .bd-ud-section-gradient h2{
    font-size: 25px !important;
  }


  .bd-ud-section-gradient span{
    font-size: 20px !important;
  }

  .bd-ud-section-gradient p{
    font-size: 22px !important;
  }
}


/* Responsive adjustments */
@media (max-width: 768px) {
  .bd-ud-core-value-card-inner {
      padding: 30px 20px;
  }
  
  .bd-ud-core-value-icon {
      width: 60px;
      height: 60px;
  }
  
  .bd-ud-core-value-icon i {
      font-size: 24px;
  }
  
  .bd-ud-core-value-title {
      font-size: 20px;
  }
  
  .bd-ud-core-value-hover-content {
      padding: 20px;
  }
}

/* who we  are section in about us  */


:root {
  --clr-theme-1: #0E84E1;
  --clr-theme-2: #0a0a09;
  --clr-theme-3: #6551B3;
  --clr-theme-4: #9747FF;
  --clr-theme-5: #4285F4;
}

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

/* ============================= */
/* CARD DESIGN */
/* ============================= */


:root {
  --clr-theme-1: #0E84E1;
  --clr-theme-2: #1a1a1a;
  --clr-theme-3: #6551B3;
  --clr-white: #ffffff;
  --clr-gray: #f8f9fa;
  --clr-text: #555;
  --clr-card-bg: #ffffff;
}

/* Main Section */
.capabilities-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f9ff 0%, #eef4ff 100%);
  position: relative;
  overflow: hidden;
}

/* Section Title */
.section-title {
  text-align: center;
  margin-bottom: 70px;
  animation: fadeInUp 0.8s ease-out forwards;
}

.section-title h2 {
  font-size: 48px;
  font-weight: 800;
  color: var(--clr-theme-2);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--clr-theme-1), var(--clr-theme-3));
  border-radius: 2px;
}

.section-title p {
  font-size: 18px;
  color: var(--clr-text);
  max-width: 650px;
  margin: 25px auto 0;
  line-height: 1.6;
}

/* Wrapper */
.capabilities-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Card Styling with Flip Effect */
.cap-card {
  background: transparent;
  border-radius: 16px;
  padding: 0;
  height: 350px;
  perspective: 1200px;
  cursor: pointer;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(14, 132, 225, 0.1);
  transform: rotateY(0deg);
}

.cap-card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 16px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* FRONT SIDE - WHITE (Initially visible) */
.card-front {
  background: var(--clr-white);
  color: var(--clr-theme-2);
  transform: rotateY(0deg);
  border: 1px solid rgba(14, 132, 225, 0.1);
}

/* Front Side Icon */
.cap-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--clr-theme-1), var(--clr-theme-3));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--clr-white);
  font-size: 32px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 20px rgba(14, 132, 225, 0.2);
}

.card-front h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--clr-theme-2);
  margin-bottom: 15px;
  line-height: 1.3;
}

.card-front p {
  font-size: 16px;
  color: var(--clr-text);
  line-height: 1.6;
  margin: 0;
}

/* BACK SIDE - BLUE GRADIENT (Shows on hover) */
.card-back {
  background: linear-gradient(135deg, var(--clr-theme-1), var(--clr-theme-3));
  color: var(--clr-white);
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 50px;
  position: relative;
  overflow: hidden;
}

/* Shine effect on back */
.card-back::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to right,
    transparent 20%,
    rgba(255, 255, 255, 0.15) 50%,
    transparent 80%
  );
  transform: rotate(45deg);
  animation: shine 3s infinite;
}

/* Back Icon - White with colored border */
.back-icon {
  width: 80px;
  height: 80px;
  background: var(--clr-white);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--clr-theme-1);
  font-size: 32px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-back h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
  position: relative;
  z-index: 2;
  color: white;
}

.card-back p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
  position: relative;
  z-index: 2;
  color: white;
}

/* CTA Button */
.capabilities-cta {
  text-align: center;
  margin-top: 60px;
  animation: fadeInUp 0.8s ease-out 0.3s forwards;
  opacity: 0;
}

.cap-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--clr-theme-1), var(--clr-theme-3));
  color: var(--clr-white);
  padding: 16px 36px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 8px 25px rgba(14, 132, 225, 0.25);
  position: relative;
  overflow: hidden;
}

.cap-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.cap-btn:hover::before {
  left: 100%;
}

.cap-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(14, 132, 225, 0.35);
}

.cap-btn i {
  transition: transform 0.3s ease;
}

.cap-btn:hover i {
  transform: translateX(5px);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shine {
  0% {
    transform: translateX(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(200%) rotate(45deg);
  }
}

/* Responsive Design */

/* Tablet (768px and up) */
@media (min-width: 768px) {
  .capabilities-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .section-title h2 {
    font-size: 42px;
  }
  
  .cap-card {
    height: 320px;
  }
  
  .card-front,
  .card-back {
    padding: 35px 25px;
  }
  
  .card-back {
    padding-top: 45px;
  }
  
  .cap-icon,
  .back-icon {
    width: 75px;
    height: 75px;
    font-size: 28px;
  }
}

/* Laptop/Desktop (992px and up) */
@media (min-width: 992px) {
  .capabilities-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  .section-title h2 {
    font-size: 48px;
  }
  
  .cap-card {
    height: 350px;
  }
  
  .card-front,
  .card-back {
    padding: 40px 30px;
  }
  
  .card-back {
    padding-top: 50px;
  }
  
  .cap-icon,
  .back-icon {
    width: 80px;
    height: 80px;
    font-size: 32px;
  }
}

/* Mobile (below 768px) */
@media (max-width: 767px) {
  .capabilities-section {
    padding: 60px 0;
  }
  
  .section-title {
    margin-bottom: 50px;
  }
  
  .section-title h2 {
    font-size: 36px;
  }
  
  .section-title p {
    font-size: 16px;
    padding: 0 20px;
  }
  
  .cap-card {
    height: 300px;
    margin: 0 15px;
  }
  
  .card-front,
  .card-back {
    padding: 30px 20px;
  }
  
  .card-back {
    padding-top: 40px;
  }
  
  .cap-icon,
  .back-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .card-front h3,
  .card-back h3 {
    font-size: 20px;
  }
  
  .card-front p,
  .card-back p {
    font-size: 15px;
  }
  
  .capabilities-cta {
    margin-top: 50px;
  }
  
  .cap-btn {
    padding: 14px 30px;
    font-size: 15px;
  }
}

/* Small Mobile (below 480px) */
@media (max-width: 480px) {
  .section-title h2 {
    font-size: 32px;
  }
  
  .section-title p {
    font-size: 15px;
    padding: 0 15px;
  }
  
  .cap-card {
    height: 280px;
    margin: 0 10px;
  }
  
  .card-front,
  .card-back {
    padding: 25px 20px;
  }
  
  .card-back {
    padding-top: 35px;
  }
  
  .cap-icon,
  .back-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .card-front h3,
  .card-back h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }
  
  .card-front p,
  .card-back p {
    font-size: 14px;
  }
}

/* why choose us in about us  */

/* ===== WHY CHOOSE US SECTION ===== */
.choose-section {
  padding: 120px 0;
  background: #1F242C;
}

/* Title */
.choose-section .section-title {
  text-align: center;
  margin-bottom: 60px;
}

.choose-section .section-title h2 {
  font-size: 46px;
  font-weight: 800;
  color: #fff;
}

.choose-section .section-title p {
  font-size: 18px;
  color: #ddd;
  max-width: 650px;
  margin: 15px auto 0;
  line-height: 1.6;
}

/* ✅ Proper Responsive Grid */
.choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ✅ Card Design */
.choose-card {
  padding: 45px 30px;
  border-radius: 18px;
  background: #fff;
  text-align: center;

  box-shadow: 0px 12px 40px rgba(0, 0, 0, 0.15);

  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  /* color: whitesmoke */
}

/* On hover make text white */
.choose-card:hover h3,
.choose-card:hover p {
  color: #1f242c !important;
}

/* Optional: smooth transition */
.choose-card h3,
.choose-card p {
  transition: color 0.3s ease;
}


/* ✅ Sliding Overlay Hover */
/* .choose-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;

  background: linear-gradient(
    135deg,
    rgba(151, 71, 255, 0.14),
    rgba(66, 133, 244, 0.14)
  );

  transition: all 0.5s ease;
} */

.choose-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;

  background: linear-gradient(
    135deg,
    rgba(14, 132, 225, 0.14),
    rgba(0, 0, 0, 0.14)
  );

  transition: all 0.5s ease;
}

.choose-card::after .choose-card h3{
  color: #f0f0f0;
}


/* ✅ Slide overlay in */
.choose-card:hover::after {
  left: 0;
}


.choose-card:hover::after {
  left: 0;
}

/* Lift Effect */
.choose-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 20px 55px rgba(0, 0, 0, 0.25);
}

/* Keep content above overlay */
.choose-card * {
  position: relative;
  z-index: 2;
}

/* ✅ Icon */
.choose-icon {
  width: 75px;
  height: 75px;
  margin: auto;
  margin-bottom: 20px;

  border-radius: 50%;
  background: linear-gradient(135deg, #9747FF, #4285F4);

  display: flex;
  justify-content: center;
  align-items: center;

  box-shadow: 0px 10px 25px rgba(66, 133, 244, 0.35);
}

.choose-icon i {
  font-size: 28px;
  color: #fff;
}

/* Text */
.choose-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0a0a09;
}

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

/* ✅ No text color change on hover */
.choose-card:hover h3,
.choose-card:hover p {
  color: inherit;
}

/* ============================= */
/* ✅ RESPONSIVE BREAKPOINTS */
/* ============================= */

/* ✅ Laptop Small Screens */
@media (max-width: 1200px) {
  .choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ✅ Tablet */
@media (max-width: 991px) {
  .choose-section {
    padding: 90px 0;
  }

  .choose-section h2 {
    font-size: 38px;
  }

  .choose-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

/* ✅ Mobile */
@media (max-width: 767px) {
  .choose-section {
    padding: 70px 0;
  }

  .choose-section h2 {
    font-size: 30px;
  }

  .choose-section p {
    font-size: 16px;
    padding: 0 15px;
  }

  .choose-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .choose-card {
    padding: 40px 22px;
  }
}

/* ✅ Small Phones */
@media (max-width: 480px) {
  .choose-card {
    padding: 35px 18px;
  }

  .choose-icon {
    width: 65px;
    height: 65px;
  }

  .choose-icon i {
    font-size: 24px;
  }
}

.techno {
  background: linear-gradient(
    90deg,
    var(--clr-theme-1) -1.84%,
    var(--clr-theme-4) 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;
  color: transparent;
  font-weight: 800;
}

.va{
  /* color: #000022; */
  font-weight: 800;
  
  background: linear-gradient(
    90deg,
    var(--clr-theme-1) -1.84%,
    var(--clr-theme-4) 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;
  color: transparent;
  line-height: 1.2;
}

/*  */

.differentiators-section {
  padding: 35px 0;
  background: #fff;
}

.diff-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.diff-heading h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111;
}

.diff-heading p {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
}

/* List Layout */
.diff-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 850px;
  margin: auto;
}

.diff-item {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 25px 30px;
  border-bottom: 1px solid #eee;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  background: #fff;
  border-radius: 12px;
  z-index: 1;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.98);
}

.diff-item span {
  font-size: 18px;
  font-weight: 700;
  color: #9747ff;
  min-width: 40px;
}

.diff-item h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  color: #222;
}

.hover-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

/* Number Styling - TARGETING SPAN ELEMENTS */
.diff-item span {
  font-size: 20px;
  font-weight: 700;
  color: #9747ff;
  min-width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border-radius: 10px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

/* Content Styling */
.diff-item h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  color: #222;
  line-height: 1.4;
  transition: all 0.3s ease;
  flex: 1;
}

/* Hover Effects */
.diff-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.75);
  border-bottom-color: transparent;
}

.diff-item:hover .hover-gradient {
  opacity: 1;
}

.diff-item:hover span {
  background: linear-gradient(90deg, #3B82F6 0%, #8B5CF6 100%);
  color: white;
  transform: scale(1.1);
}

.diff-item:hover h4 {
  color: #1e293b;
  transform: translateX(5px);
}

/* Active State (for mobile touch) */
.diff-item:active {
  transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .differentiators-section {
      padding: 70px 0;
  }
  
  .diff-heading h2 {
      font-size: 36px;
  }
  
  .diff-heading p {
      font-size: 17px;
  }
}

@media (max-width: 768px) {
  .differentiators-section {
      padding: 60px 0;
  }
  
  .diff-heading {
      margin-bottom: 40px;
  }
  
  .diff-heading h2 {
      font-size: 32px;
  }
  
  .diff-heading p {
      font-size: 16px;
  }
  
  .diff-list {
      gap: 20px;
  }
  
  .diff-item {
      padding: 20px;
      gap: 20px;
  }
  
  .diff-item span {
      min-width: 45px;
      height: 45px;
      font-size: 18px;
  }
  
  .diff-item h4 {
      font-size: 18px;
  }
  
  /* Adjust hover effects for mobile */
  .diff-item:hover {
      transform: translateY(-2px);
  }
}

@media (max-width: 480px) {
  .differentiators-section {
      padding: 50px 0;
  }
  
  .diff-heading h2 {
      font-size: 28px;
  }
  
  .diff-heading p {
      font-size: 15px;
      line-height: 1.6;
  }
  
  .diff-list {
      gap: 15px;
  }
  
  .diff-item {
      padding: 18px 15px;
      gap: 15px;
  }
  
  .diff-item span {
      min-width: 40px;
      height: 40px;
      font-size: 16px;
  }
  
  .diff-item h4 {
      font-size: 17px;
  }
}

.diff-number {
  font-size: 20px;
  font-weight: 700;
  color: #9747ff;
  min-width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border-radius: 10px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

/* For touch devices - better hover handling */
@media (hover: none) and (pointer: coarse) {
  .diff-item {
      cursor: default;
  }
  
  .diff-item:active .hover-gradient {
      opacity: 1;
  }
  
  .diff-item:active span {
      background: linear-gradient(90deg, #3B82F6 0%, #8B5CF6 100%);
      color: white;
  }
}

.leadership-text {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  max-width: 620px;
}

.bd-ud-leadership-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  border: 1px solid #ddd;
  color: #111;
  text-decoration: none;
  transition: all 0.3s ease;
}

.bd-ud-leadership-btn:hover {
  background: #9747ff;
  color: #fff;
  border-color: #9747ff;
}


/* ✅ Center Leadership Heading Block */
.bd-ud-section-title-area {
  text-align: center;
 
}

.leader{
background-color: #e9ecef;
}
/* Center paragraph properly */
.leadership-text {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Center button */
.bd-ud-leadership-btn {
  margin-left: auto;
  margin-right: auto;
}

.global-delivery-area {
  /* padding: 90px 0; */
  background: #fff;
  border-top: 1px solid #eee;
}

/* CENTER BLOCK */
.global-center {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

/* Title */
.global-title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

/* Text */
.global-center p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 16px;
}

/* Button center */
.bd-ud-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* margin-top: 25px; */
}

/* Quality & Security Section - Responsive Fixes */
/* Quality & Security Section with Image */
.quality-security-area {
  padding: 60px 0 !important;
  background: #fff;
  border-top: 1px solid #eee;
  overflow-x: hidden;
}

.quality-wrapper {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr;
  gap: 70px;
  align-items: center;
}

/* Left Side Image Styling */
.quality-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.quality-badge-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quality-badge-img:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 35px rgba(14, 132, 225, 0.15);
}

/* Right Side Content */
.quality-content {
  width: 100%;
}

/* Subtitle */
.quality-subtitle {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #9747ff;
  margin-bottom: 18px;
}

/* Heading */
.quality-content h2 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;
  color: #111;
  margin-bottom: 18px;
}

/* Paragraph */
.quality-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  max-width: 520px;
  margin-bottom: 30px;
}

/* Points List */
.quality-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 10px;
}

.quality-point {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #eee;
  border: 1px solid #684CB1;
  box-shadow: 0 10px 10px rgba(0, 102, 204, 0.55);}

.quality-point::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #3B82F6, #8B5CF6);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.quality-point span {
  font-size: 18px;
  font-weight: 700;
  color: #9747ff;
  min-width: 40px;
  transition: all 0.3s ease;
  z-index: 1;
}

.quality-point h4 {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin: 0;
  transition: all 0.3s ease;
  z-index: 1;
}

.quality-point:hover {
  transform: translateX(10px);
}

.quality-point:hover::before {
  opacity: 0.05;
}

.quality-point:hover span {
  color: #3B82F6;
  transform: scale(1.1);
}

.quality-point:hover h4 {
  color: #1e293b;
  font-weight: 700;
}

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

/* Large Desktop (1200px - 1400px) */
@media (max-width: 1400px) and (min-width: 1200px) {
  .quality-wrapper {
    grid-template-columns: 0.9fr 1.3fr;
    gap: 50px;
  }
  
  .quality-content h2 {
    font-size: 40px;
  }
  
  .quality-content p {
    font-size: 17px;
  }
  
  .quality-point h4 {
    font-size: 17px;
  }
}

/* Desktop (992px - 1199px) */
@media (max-width: 1199px) {
  .quality-wrapper {
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
  }
  
  .quality-content h2 {
    font-size: 36px;
  }
  
  .quality-content p {
    font-size: 16px;
    max-width: 100%;
  }
  
  .quality-badge-img {
    max-width: 350px;
  }
  
  .quality-point {
    padding: 12px 15px;
  }
  
  .quality-point span {
    font-size: 17px;
    min-width: 38px;
  }
  
  .quality-point h4 {
    font-size: 16px;
  }
  
  .quality-point:hover {
    transform: translateX(5px);
  }
}

/* Tablet Landscape (768px - 991px) */
@media (max-width: 991px) {
  .quality-security-area {
    padding: 50px 0 !important;
  }
  
  .quality-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  /* Image on top for tablet/mobile */
  .quality-image {
    order: 1;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .quality-content {
    order: 2;
    text-align: center;
  }
  
  .quality-content h2 {
    font-size: 32px;
    text-align: center;
  }
  
  .quality-content p {
    font-size: 16px;
    max-width: 100%;
    margin: 0 auto 30px;
    text-align: center;
  }
  
  .quality-right {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
  
  .quality-point {
    padding: 12px 18px;
    justify-content: flex-start;
    text-align: left;
  }
  
  .quality-point span {
    font-size: 17px;
    min-width: 35px;
  }
  
  .quality-point h4 {
    font-size: 16px;
  }
  
  .bd-ud-section-subtitle {
    text-align: center;
    display: block;
  }
  
  .quality-badge-img {
    max-width: 320px;
  }
}

/* Tablet Portrait (576px - 767px) */
@media (max-width: 767px) {
  .quality-security-area {
    padding: 40px 0 !important;
  }
  
  .quality-wrapper {
    gap: 35px;
  }
  
  .quality-content h2 {
    font-size: 28px;
  }
  
  .quality-content p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
  }
  
  .quality-right {
    gap: 15px;
  }
  
  .quality-point {
    padding: 10px 15px;
    gap: 12px;
  }
  
  .quality-point span {
    font-size: 16px;
    min-width: 32px;
  }
  
  .quality-point h4 {
    font-size: 15px;
  }
  
  .bd-ud-section-subtitle span {
    font-size: 14px;
  }
  
  .quality-badge-img {
    max-width: 280px;
  }
}

/* Mobile (below 575px) */
@media (max-width: 575px) {
  .quality-security-area {
    padding: 30px 0 !important;
  }
  
  .quality-wrapper {
    gap: 30px;
  }
  
  .quality-content h2 {
    font-size: 24px;
  }
  
  .quality-content p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  
  .quality-right {
    gap: 12px;
  }
  
  .quality-point {
    padding: 8px 12px;
    gap: 10px;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .quality-point span {
    font-size: 15px;
    min-width: 30px;
  }
  
  .quality-point h4 {
    font-size: 14px;
  }
  
  .quality-point:hover {
    transform: translateX(3px);
  }
  
  .bd-ud-section-subtitle {
    margin-bottom: 15px !important;
  }
  
  .bd-ud-section-subtitle span {
    font-size: 12px;
    padding-right: 12px;
  }
  
  .quality-badge-img {
    max-width: 240px;
  }
}

/* Extra Small Mobile (below 400px) */
@media (max-width: 400px) {
  .quality-security-area {
    padding: 25px 0 !important;
  }
  
  .quality-content h2 {
    font-size: 22px;
  }
  
  .quality-content p {
    font-size: 13px;
  }
  
  .quality-point {
    padding: 8px 10px;
    gap: 8px;
    flex-wrap: wrap;
  }
  
  .quality-point span {
    font-size: 14px;
    min-width: 28px;
  }
  
  .quality-point h4 {
    font-size: 13px;
    line-height: 1.4;
  }
  
  .quality-badge-img {
    max-width: 200px;
  }
}

/* Animation for image on scroll */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.quality-image {
  animation: fadeInUp 0.8s ease forwards;
}


/* Add this to your existing CSS */
@media (max-width: 991px) {
  .quality-content {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .quality-content h2 {
    text-align: center;
  }
  
  .quality-content p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  
  .bd-ud-section-subtitle {
    text-align: center;
    display: block;
  }
  
  .quality-right {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .quality-image {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .quality-badge-img {
    max-width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 991px) {
  .quality-content {
      text-align: center;
  }
  .quality-right {
      text-align: left;
      max-width: 500px;
      margin: 0 auto;
  }
}

/*  */
/* Testimonial Section */
.testimonial-section {
  background: #f8f8fb;
  position: relative;
  padding: 80px 0;
}

/* Title Center */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 52px;
  font-weight: 800;
  color: #111;
  margin-top: 15px;
}

/* Subtitle Styling */
.bd-ud-section-subtitle {
  text-align: center;
  display: inline-block;
  width: 100%;
}

.bd-ud-section-gradient {
  background: linear-gradient(90deg, #0E84E1, #9747FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  padding-right: 22px;
}

.bd-ud-section-gradient::before {
  content: "";
  width: 8px;
  height: 8px;
  background: linear-gradient(90deg, #0E84E1, #9747FF);
  position: absolute;
  border-radius: 50%;
  top: 57%;
  transform: translateY(-50%);
  right: 0;
}

/* Swiper Container */
.testimonial-slider {
  position: relative;
  width: 100%;
}


/* Quick fix for testimonial cutoff */
.testimonial-box-item {
  height: auto !important;
  min-height: auto !important;
  overflow: visible !important;
}

.swiper-slide {
  height: auto !important;
}

.testimonial-slider .swiper {
  overflow: visible !important;
}
/* Testimonial Card */
.testimonial-box-item {
  background: #fff;
  border-radius: 18px;
  padding: 45px;
  border: 1px solid #343a40;
  transition: 0.3s ease;
  text-align: center;
}

.testimonial-box-item:hover {
  border-color: #9747ff;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}

.testimonial-box-item p {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 35px;
  text-align: center;
}

/* Client Info */
.client-info-item {
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.info-item img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.content h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}

.content span {
  font-size: 13px;
  color: #777;
}

/* Arrows Container */
.testimonial-arrows {
  position: absolute;
  top: 90%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
  padding: 0 -25px;
}

.testimonial-prev,
.testimonial-next {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-top: -70px;
}

.testimonial-prev {
  margin-left: -27px;
}

.testimonial-next {
  margin-right: -27px;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background: #9747ff;
  border-color: #9747ff;
  color: #fff;
  transform: scale(1.1);
}

.testimonial-prev i,
.testimonial-next i {
  font-size: 18px;
}

/* Pagination Dots */
.swiper-pagination {
  position: relative !important;
  margin-top: 50px;
  text-align: center !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center;
  gap: 10px;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ccc;
  opacity: 1;
  border-radius: 50%;
}

.swiper-pagination-bullet-active {
  background: #9747ff;
}

/* Responsive Styles */
@media (max-width: 1199px) {
  .testimonial-prev,
  .testimonial-next {
      width: 50px;
      height: 50px;
  }
  
  .testimonial-prev {
      margin-left: -20px;
  }
  
  .testimonial-next {
      margin-right: -20px;
  }
}

@media (max-width: 991px) {
  .testimonial-section {
      padding: 60px 0;
  }
  
  .section-title h2 {
      font-size: 40px;
  }
  
  .testimonial-box-item {
      padding: 35px 25px;
  }
  
  .testimonial-box-item p {
      font-size: 16px;
  }
  
  .testimonial-prev,
  .testimonial-next {
      width: 45px;
      height: 45px;
  }
  
  .testimonial-prev {
      margin-left: -15px;
  }
  
  .testimonial-next {
      margin-right: -15px;
  }
}

@media (max-width: 767px) {
  .section-title h2 {
      font-size: 32px;
  }
  
  .testimonial-box-item {
      padding: 30px 20px;
  }
  
  .testimonial-box-item p {
      font-size: 15px;
      margin-bottom: 25px;
  }
  
  .testimonial-arrows {
      display: none;
  }
  
  .client-info-item {
      flex-direction: column;
      gap: 15px;
  }
  
  .info-item {
      justify-content: center;
  }
}

@media (max-width: 575px) {
  .section-title h2 {
      font-size: 28px;
  }
  
  .testimonial-box-item {
      padding: 25px 18px;
  }
  
  .testimonial-box-item p {
      font-size: 14px;
  }
  
  .info-item img {
      width: 45px;
      height: 45px;
  }
  
  .content h4 {
      font-size: 15px;
  }
  
  .content span {
      font-size: 12px;
  }
}

.testimonial-slider {
  position: relative;
  width: 100%;
}

.testimonial-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}

.testimonial-prev,
.testimonial-next {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-prev {
  margin-left: -27px;
}

.testimonial-next {
  margin-right: -27px;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background: #9747ff;
  border-color: #9747ff;
  color: #fff;
}

@media (max-width: 767px) {
  .testimonial-arrows {
      display: none;
  }
}
/*  */




.certifications-area {
  padding: 50px 0;
  background: #fff;
  border-top: 1px solid #eee;
}

/* Heading */
.cert-heading {
  max-width: 750px;
  margin: 0 auto 70px;
}

.cert-subtitle {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #9747ff;
}

.cert-heading h2 {
  font-size: 44px;
  font-weight: 800;
  margin: 18px 0;
  color: #111;
}

.cert-heading p {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
}

/* Logo Grid */
.cert-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 35px;
  align-items: center;
  justify-content: center;
}

/* Logo Box */
.cert-logo {
  border: 1px solid #eee;
  padding: 25px;
  border-radius: 14px;
  text-align: center;
  background: #fafafa;
  transition: all 0.3s ease;
}

.cert-logo img {
  max-width: 110px;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.75;
  transition: all 0.3s ease;
}

/* Hover Effect */
.cert-logo:hover {
  border-color: #9747ff;
  background: #fff;
}

.cert-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
  .cert-logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .cert-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/*  */

/* ================================
   CTA SECTION FIXED BACKGROUND
================================ */

.bd-ud-cta-area {
  position: relative;
  overflow: hidden;
 
}

/* ✅ Watermark Background Icon + Soft Gradient */
.bd-ud-cta-area::before {
  content: "";
  position: absolute;
  inset: 0;

  /* background:
    linear-gradient(
      135deg,
      rgba(151, 71, 255, 0.12),
      rgba(151, 71, 255, 0.04)
    ),
    url("assets/img/cta/cta-icon-1.png"); */

  background-repeat: no-repeat;
  background-position: right 80px center;
  background-size: 320px;

  opacity: 1; /* ✅ Keep full */
  z-index: 0;
}

/* ✅ Keep All Content Above Background */
.bd-ud-cta-area .container {
  position: relative;
  z-index: 2;
}

/* ✅ Text Colors (Readable on Light Background) */
.bd-ud-cta-area h2 {
  color: #111;
}

.bd-ud-cta-area p {
  color: #555;
}

.bd-ud-section-gradient {
  color: #9747ff;
}

/* ================================
   CTA BUTTONS FIXED
================================ */

.bd-ud-cta-buttons {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-top: 30px;
}

.bd-ud-cta-buttons .cta-btn {
  width: auto;
  min-width: 180px;
}
.cta-btn {
  display: inline-block;
  text-align: center;
  padding: 14px 26px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}



.primary-btn:hover {
  background: #111;
  border-color: #111;
}

/* ✅ Outline Button */
.outline-btn {
  background: transparent;
  border: 1px solid #9747ff;
  color: #9747ff !important;
}

.outline-btn:hover {
  background: #9747ff;
  color: #fff !important;
}
.bd-ud-cta-buttons .cta-btn {
  flex: 1;
  text-align: center;
}
@media (max-width: 576px) {
  .bd-ud-cta-buttons {
    flex-direction: column; /* ✅ Back to vertical on small screens */
  }

  .bd-ud-cta-buttons .cta-btn {
    width: 100%;
  }
}



/* ================================
   CTA BASE STYLING
================================ */

.bd-ud-cta-area {
  position: relative;
  overflow: hidden;
  padding: 35px 0;
}

/* ✅ CTA Heading */
.bd-ud-section-title h2 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  color: #111;
}

/* ✅ CTA Paragraph */
.bd-ud-cta-text {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  max-width: 520px;
}

/* ✅ Buttons Desktop Default */
.bd-ud-cta-buttons {
  display: flex;
  gap: 18px;
  margin-top: 35px;
}

.bd-ud-cta-buttons .cta-btn {
  flex: 1;
  padding: 15px 0;
  text-align: center;
  border-radius: 50px;
  font-weight: 600;
  white-space: nowrap;
}

/* Primary Button */
.primary-btn {
  /* background: #9747ff; */
  color: black;
  border: 1px solid #9747ff;
}

.primary-btn:hover {
  background: #111;
  border-color: #111;
}

/* Outline Button */
.outline-btn {
  background: transparent;
  border: 1px solid #9747ff;
  color: #9747ff !important;
}

.outline-btn:hover {
  background: #9747ff;
  color: #fff !important;
}

/* ================================
   ✅ LAPTOP RESPONSIVE (<1200px)
   Layout becomes stacked like screenshot
================================ */

@media (max-width: 1199px) {

  .bd-ud-section-title h2 {
    font-size: 44px;
  }

  .bd-ud-cta-text {
    font-size: 16px;
  }

  /* Buttons stay side by side */
  .bd-ud-cta-buttons {
    justify-content: flex-start;
  }
}

/* ================================
   ✅ TABLET RESPONSIVE (<992px)
   Center align + full width buttons
================================ */

@media (max-width: 991px) {

  .bd-ud-section-title-area {
    text-align: center;
  }

  .bd-ud-cta-text {
    margin: auto;
    text-align: center;
  }

  /* Buttons stacked */
  .bd-ud-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .bd-ud-cta-buttons .cta-btn {
    width: 100%;
    max-width: 320px;
  }
}

/* ================================
   ✅ MOBILE RESPONSIVE (<576px)
   Smaller heading + full buttons
================================ */

@media (max-width: 575px) {

  .bd-ud-section-title h2 {
    font-size: 32px;
  }

  .bd-ud-cta-text {
    font-size: 15px;
  }

  .bd-ud-cta-buttons .cta-btn {
    max-width: 100%;
    font-size: 15px;
    padding: 14px 0;
  }

  .bd-ud-section-title-area {
    text-align: center;
  }
  /* .bd-ud-about3-content-inner ,.bd-ud-app-check-list li::before , .bd-ud-btn-border{
    text-align: center !important; 
  } */

}


/* blog sectio n */
/* Blog Page Styles */
.blog-breadcrumb {
  position: relative;
  overflow: hidden;
}

.blog-hero-subtitle {
  font-size: 18px;
  max-width: 600px;
  /* margin: 20px auto 0; */
  opacity: 0.9;
}

/* Blog Section */
.blog-section {
  position: relative;
  background: #fff;
  /* padding-top: 50px; */
}

.blog-header {
  position: relative;
}

.blog-main-title {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blog-subtitle {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Blog Filter */
.blog-filter {
  position: relative;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.filter-btn {
  padding: 10px 24px;
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 30px;
  color: #495057;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
  border-color: #0066cc;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 102, 204, 0.2);
}

/* Blog Card */
.blog-card {
  position: relative;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 102, 204, 0.15);
}

.blog-image {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
  color: white;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;

}

.blog-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 13px;
  color: #6c757d;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-meta i {
  color: #0066cc;
}

.blog-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 15px;
  color: #1a1a1a;
  transition: color 0.3s ease;
}

.blog-title a {
  color: inherit;
  text-decoration: none;
}

.blog-title:hover a {
  color: #0066cc;
}

.blog-excerpt {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
  flex: 1;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.blog-tags span {
  background: #e9f4ff;
  color: #0066cc;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}

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

.author-info h4 {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  color: #1a1a1a;
}

.author-info p {
  font-size: 12px;
  color: #6c757d;
  margin: 0;
}

.blog-read-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0066cc;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.blog-read-btn:hover {
  color: #0099ff;
  gap: 12px;
}

.blog-read-btn i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.blog-read-btn:hover i {
  transform: translateX(3px);
}

/* Pagination */
.blog-pagination {
  position: relative;
}

.blog-pagination .pagination {
  justify-content: center;
  gap: 5px;
}

.blog-pagination .page-item .page-link {
  border: none;
  background: #f8f9fa;
  color: #495057;
  border-radius: 8px;
  padding: 10px 18px;
  margin: 0 2px;
  transition: all 0.3s ease;
}

.blog-pagination .page-item .page-link:hover {
  background: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 102, 204, 0.2);
}

.blog-pagination .page-item.active .page-link {
  background: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
  color: white;
  box-shadow: 0 5px 15px rgba(0, 102, 204, 0.2);
}

.blog-pagination .page-item.disabled .page-link {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Newsletter Section */
.blog-newsletter {
  position: relative;
}

.newsletter-wrapper {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 20px;
  padding: 50px;
  position: relative;
  overflow: hidden;
}

.newsletter-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M500,97C126.7,96.3,0.8,19.8,0,0v100l1000,0V1C1000,19.4,873.3,97.8,500,97z" fill="%230066cc" opacity="0.1"></path></svg>') bottom center no-repeat;
  background-size: 100% auto;
}

.newsletter-content h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.newsletter-form .input-group {
  position: relative;
}

.newsletter-form .form-control {
  height: 55px;
  border: none;
  border-radius: 30px;
  padding: 0 25px;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form .form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.newsletter-form .btn {
  position: absolute;
  right: 5px;
  top: 5px;
  bottom: 5px;
  height: calc(100% - 10px);
  background: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
  border: none;
  border-radius: 25px;
  padding: 0 30px;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
}

.newsletter-form .btn:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

/* Animation Classes */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.wow {
  visibility: hidden;
}

.fadeInUp {
  animation-name: fadeInUp;
}

/* Responsive Styles */
@media (max-width: 1199px) {
  .blog-main-title {
      font-size: 36px;
  }
  
  .newsletter-wrapper {
      padding: 40px;
  }
}

@media (max-width: 991px) {
  .blog-main-title {
      font-size: 32px;
  }
  
  .blog-image {
      height: 200px;
  }
  
  .filter-buttons {
      gap: 8px;
  }
  
  .filter-btn {
      padding: 8px 20px;
      font-size: 13px;
  }
  
  .newsletter-wrapper {
      padding: 30px;
  }
  
  .newsletter-content h3 {
      font-size: 24px;
  }
}

@media (max-width: 767px) {
  .blog-main-title {
      font-size: 28px;
  }
  
  .blog-subtitle {
      font-size: 16px;
  }
  
  .blog-image {
      height: 180px;
  }
  
  .blog-content {
      padding: 20px;
  }
  
  .blog-title {
      font-size: 18px;
  }
  
  .filter-buttons {
      gap: 6px;
  }
  
  .filter-btn {
      padding: 6px 16px;
      font-size: 12px;
  }
  
  .newsletter-wrapper {
      padding: 25px;
  }
  
  .newsletter-form .form-control {
      height: 50px;
      padding: 0 20px;
  }
  
  .newsletter-form .btn {
      padding: 0 20px;
      font-size: 14px;
  }
}

@media (max-width: 575px) {
  .blog-main-title {
      font-size: 24px;
  }
  
  .blog-hero-subtitle {
      font-size: 16px;
  }
  
  .blog-image {
      height: 160px;
  }
  
  .blog-meta {
      flex-direction: column;
      gap: 8px;
  }
  
  .filter-buttons {
      justify-content: flex-start;
      overflow-x: auto;
      padding-bottom: 10px;
  }
  
  .filter-buttons::-webkit-scrollbar {
      height: 4px;
  }
  
  .filter-buttons::-webkit-scrollbar-track {
      background: #f1f1f1;
      border-radius: 2px;
  }
  
  .filter-buttons::-webkit-scrollbar-thumb {
      background: #0066cc;
      border-radius: 2px;
  }
  
  .newsletter-wrapper {
      padding: 20px;
  }
  
  .newsletter-content h3 {
      font-size: 20px;
  }
  
  .newsletter-form .btn {
      position: relative;
      right: 0;
      top: 0;
      margin-top: 15px;
      width: 100%;
      height: 50px;
      border-radius: 25px;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  .blog-section {
      background: #1a1a1a;
  }
  
  .blog-card {
      background: #2d2d2d;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
  
  .blog-title {
      color: #fff;
  }
  
  .blog-excerpt {
      color: #aaa;
  }
  
  .author-info h4 {
      color: #fff;
  }
  
  .author-info p {
      color: #999;
  }
  
  .filter-btn {
      background: #2d2d2d;
      border-color: #404040;
      color: #ccc;
  }
  
  .filter-btn.active {
      background: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
      color: white;
  }
  
  .blog-pagination .page-item .page-link {
      background: #2d2d2d;
      color: #ccc;
  }
}


/* blog detils */
/* Blog Details Page Styles */
.blog-details-breadcrumb {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.blog-details-breadcrumb .bd-ud-breadcrumb__title h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.blog-details-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.blog-details-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.blog-details-meta i {
  color: #0066cc;
  font-size: 16px;
}

/* Blog Details Content */
.blog-details-section {
  position: relative;
  background: #fff;
  margin-top: 50px;
}

.blog-details-content {
  position: relative;
}

.blog-featured-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.blog-featured-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-featured-image:hover img {
  transform: scale(1.02);
}

.blog-content {
  padding: 30px 0;
  padding-left: 30px;
  padding-right: 30px;
}

.blog-intro .lead {
  font-size: 20px;
  line-height: 1.6;
  color: #333;
  font-weight: 400;
  border-left: 4px solid #0066cc;
  padding-left: 20px;
  margin-left: 0;
}

/* Section Styles */
.section-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left:125px;
  width: 60px;
  height: 3px;
  /* background: linear-gradient(135deg, #0066cc 0%, #0099ff 100%); */
  border-radius: 2px;
  top: 25px;
}


.blog-section {
  margin-bottom: 40px;
}

.blog-section p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

/* Quote Block */
.blog-quote {
  position: relative;
  background: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
  padding: 40px;
  border-radius: 15px;
  color: white;
  margin: 40px 0;
}

.blog-quote blockquote {
  position: relative;
  padding-left: 30px;
  margin: 0;
}

.blog-quote i {
  position: absolute;
  left: -10px;
  top: -10px;
  font-size: 40px;
  opacity: 0.2;
}

.blog-quote p {
  font-size: 20px;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
  color: white;
}

.blog-quote footer {
  font-size: 16px;
  font-weight: 600;
}

/* Technology List */
.technology-list {
  margin: 30px ;
  /* background-color: #141d38; */
}

.tech-item {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 10px;
  transition: all 0.3s ease;
  height: 100%;
}

.tech-item:hover {
  background: white;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 102, 204, 0.25);
}

.tech-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.tech-icon i {
  font-size: 24px;
  color: white;
}

.tech-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.tech-item p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}


/* Stats Grid */
.stats-grid {
  margin: 30px 0;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background:rgb(210 219 228);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: white;
  box-shadow: 0 10px 30px rgba(0, 102, 204, 0.1);
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: #0066cc;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

/* Implementation Steps */
.implementation-steps {
  margin: 30px 0;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #eee;
}

.step:hover {
  /* position: absolute; */
  /* top: 0; */
  /* left: 0; */
  /* width: 100%; */
  /* height: 100%; */
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.1) 0%, rgba(168, 85, 247, 0.25) 100%);
  /* opacity: 0; */
  /* z-index: -1; */
  /* transition: opacity 0.3s ease; */
  padding-top: 20px;
  padding-left: 50px;
  /* box-shadow: 10px; */
}
.step:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 25px;
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.step-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* Blog Footer */
.blog-footer {
  padding: 30px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin: 40px 0;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.tags-label {
  font-weight: 600;
  color: #1a1a1a;
}

.tag {
  background: #e9f4ff;
  color: #0066cc;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tag:hover {
  background: #0066cc;
  color: white;
  transform: translateY(-2px);
}

.social-share {
  display: flex;
  align-items: center;
  gap: 15px;
}

.share-label {
  font-weight: 600;
  color: #1a1a1a;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #0066cc;
  color: white;
  transform: translateY(-3px);
}

/* Author Bio */
.author-bio {
  padding: 40px;
  background: #f8f9fa;
  border-radius: 15px;
  margin: 40px 0;
}

.author-wrapper {
  display: flex;
  gap: 30px;
  align-items: center;
}

.author-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

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

.author-info h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #1a1a1a;
}

.author-title {
  font-size: 16px;
  color: #0066cc;
  margin-bottom: 15px;
  font-weight: 500;
}

.author-description {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 15px;
}

.author-social {
  display: flex;
  gap: 15px;
}

.author-social a {
  width: 36px;
  height: 36px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
}

.author-social a:hover {
  background: #0066cc;
  color: white;
  transform: translateY(-2px);
}

/* Comments Section */
.comments-section {
  margin: 40px 0;
}

.comments-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 30px;
}

.comment-item {
  margin-bottom: 30px;
}

.comment-item.reply {
  margin-left: 40px;
  border-left: 3px solid #e9ecef;
  padding-left: 20px;
}

.comment-wrapper {
  display: flex;
  gap: 20px;
}

.comment-author {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

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

.comment-content {
  flex: 1;
}

.comment-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.comment-header h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: #1a1a1a;
}

.comment-date {
  font-size: 14px;
  color: #6c757d;
}

.comment-rating {
  display: flex;
  gap: 3px;
}

.comment-rating i {
  color: #ffc107;
  font-size: 14px;
}

.comment-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
}

.reply-btn {
  font-size: 14px;
  color: #0066cc;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.reply-btn:hover {
  color: #0099ff;
  text-decoration: underline;
}

/* Comment Form */
.comment-form {
  padding: 40px;
  background: #f8f9fa;
  border-radius: 15px;
}

.form-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  padding: 15px 20px;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #0066cc;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.rating-input {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.rating-input span {
  font-weight: 600;
  color: #1a1a1a;
}

.stars {
  display: flex;
  gap: 5px;
}

.stars i {
  font-size: 20px;
  color: #ffc107;
  cursor: pointer;
  transition: all 0.3s ease;
}

.stars i:hover {
  transform: scale(1.2);
}

.btn-primary {
  background: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 102, 204, 0.2);
}

/* Sidebar */
.blog-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  margin-bottom: 40px;
}

.widget-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e9ecef;
}

/* Search Widget */
.search-form {
  position: relative;
}

.search-form input {
  width: 100%;
  padding: 15px 50px 15px 20px;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  font-size: 16px;
}

.search-form button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #666;
  font-size: 18px;
  cursor: pointer;
}

/* Categories Widget */
.categories-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-list li {
  margin-bottom: 10px;
}

.categories-list li:last-child {
  margin-bottom: 0;
}

.categories-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  background: #f8f9fa;
  border-radius: 8px;
  color: #555;
  text-decoration: none;
  transition: all 0.3s ease;
}

.categories-list a:hover {
  background: #0066cc;
  color: white;
  transform: translateX(5px);
}

.count {
  font-size: 12px;
  background: white;
  color: #0066cc;
  padding: 3px 8px;
  border-radius: 12px;
  font-weight: 600;
}

.categories-list a:hover .count {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

/* Recent Posts Widget */
.recent-posts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.recent-post-item {
  display: flex;
  gap: 15px;
  align-items: center;
}

.post-image {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.recent-post-item:hover .post-image img {
  transform: scale(1.1);
}

.post-content h5 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 5px;
}

.post-content h5 a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-content h5 a:hover {
  color: #0066cc;
}

.post-date {
  font-size: 13px;
  color: #6c757d;
}

/* Tags Widget */
.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tags-list .tag {
  font-size: 13px;
  padding: 5px 12px;
}

/* Newsletter Widget */
.newsletter-box {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 30px;
  border-radius: 15px;
  color: white;
}

.newsletter-box .widget-title {
  color: white;
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.newsletter-box p {
  margin-bottom: 20px;
  opacity: 0.9;
}

.newsletter-form input {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: white;
  margin-bottom: 15px;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

/* Related Articles */
.related-articles {
  background: #f8f9fa;
}

.section-header {
  margin-bottom: 50px;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.related-article-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.related-article-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 102, 204, 0.15);
}

.article-image {
  height: 200px;
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.related-article-card:hover .article-image img {
  transform: scale(1.1);
}

.article-content {
  padding: 25px;
}

.article-category {
  display: inline-block;
  padding: 5px 15px;
  background: #e9f4ff;
  color: #0066cc;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 15px;
}

.article-content h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 15px;
}

.article-content h4 a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.article-content h4 a:hover {
  color: #0066cc;
}

.article-meta {
  display: flex;
  gap: 15px;
  font-size: 14px;
  color: #6c757d;
}

.article-meta i {
  margin-right: 5px;
}

/* CTA Section */
.cta-wrapper {
  background: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
}

.cta-content h3 {
  font-size: 28px;
}

.cta-content p {
  font-size: 18px;
  opacity: 0.9;
}

.btn-light {
  background: white;
  color: #0066cc;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  /* border: none; */
  transition: all 0.3s ease;
 
  border: 2px solid black !important;
}

.btn-light:hover {
  background: #f8f9fa !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

/* Responsive Styles */
@media (max-width: 1199px) {
  .blog-details-breadcrumb .bd-ud-breadcrumb__title h1 {
      font-size: 36px;
  }
  
  .blog-featured-image img {
      height: 400px;
  }
  
  .author-wrapper {
      flex-direction: column;
      text-align: center;
  }
  
  .author-image {
      width: 100px;
      height: 100px;
  }
}

@media (max-width: 991px) {
  .blog-details-breadcrumb .bd-ud-breadcrumb__title h1 {
      font-size: 32px;
  }
  
  .blog-featured-image img {
      height: 350px;
  }
  
  .section-title {
      font-size: 24px;
  }
  
  .comment-item.reply {
      margin-left: 20px;
  }
  
  .blog-sidebar {
      margin-top: 50px;
      position: static;
  }
}

@media (max-width: 767px) {
  .blog-details-breadcrumb {
      padding: 80px 0;
  }
  
  .blog-details-breadcrumb .bd-ud-breadcrumb__title h1 {
      font-size: 28px;
  }
  
  .blog-details-meta {
      gap: 15px;
  }
  
  .blog-details-meta span {
      font-size: 14px;
  }
  
  .blog-featured-image img {
      height: 300px;
  }
  
  .blog-intro .lead {
      font-size: 18px;
  }
  
  .section-title {
      font-size: 22px;
  }
  
  .blog-quote {
      padding: 30px;
  }
  
  .blog-quote p {
      font-size: 18px;
  }
  
  .tech-item {
      padding: 20px;
  }
  
  .author-bio {
      padding: 30px;
  }
  
  .comment-form {
      padding: 30px;
  }
  
  .cta-content h3 {
      font-size: 24px;
  }
  
  .cta-content p {
      font-size: 16px;
  }
}

@media (max-width: 575px) {
  .blog-details-breadcrumb .bd-ud-breadcrumb__title h1 {
      font-size: 24px;
  }
  
  .blog-details-meta {
      flex-direction: column;
      gap: 10px;
  }
  
  .blog-featured-image img {
      height: 250px;
  }
  
  .blog-gallery .col-md-6 {
      margin-bottom: 20px;
  }
  
  .blog-gallery .col-md-6:last-child {
      margin-bottom: 0;
  }
  
  .stats-grid .col-6 {
      margin-bottom: 20px;
  }
  
  .step {
      flex-direction: column;
      gap: 10px;
  }
  
  .blog-footer .row > div {
      margin-bottom: 20px;
  }
  
  .blog-footer .row > div:last-child {
      margin-bottom: 0;
  }
  
  .comment-wrapper {
      flex-direction: column;
  }
  
  .comment-author {
      align-self: flex-start;
  }
  
  .cta-wrapper {
      padding: 30px !important;
  }
  
  .cta-content h3 {
      font-size: 20px;
      margin-bottom: 15px;
  }
  
  .btn, .btn-light {
      width: 100%;
  }
}

/* Animation Classes */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.wow {
  visibility: hidden;
}

.fadeInUp {
  animation-name: fadeInUp;
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  .blog-details-section,
  .blog-details-content,
  .related-articles {
      background: #1a1a1a;
  }
  
  .section-title,
  .blog-content p,
  .tech-item h4,
  .comment-header h4,
  .form-title,
  .widget-title,
  .post-content h5 a,
  .article-content h4 a {
      color: #fff;
  }
  
  .blog-section p,
  .tech-item p,
  .comment-content p,
  .author-description {
      color: #aaa;
  }
  
  .tech-item,
  .stat-item,
  .author-bio,
  .comment-form {
      background: #2d2d2d;
  }
  
  .blog-quote {
      background: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
  }
  
  .form-control,
  .search-form input {
      background: #2d2d2d;
      border-color: #404040;
      color: #fff;
  }
  
  .form-control:focus {
      border-color: #0066cc;
      background: #2d2d2d;
  }
  
  .categories-list a {
      background: #2d2d2d;
      color: #ccc;
  }
  
  .related-article-card {
      background: #2d2d2d;
  }
}


/* Enhanced Animations & Transitions for Blog Pages */

/* Smooth Page Transitions */
.page-transition {
  animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Card Hover Animations */
.blog-card {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.blog-card:hover {
  transform: translateY(-15px) scale(1.02) rotateX(2deg);
  box-shadow: 
      0 25px 50px -12px rgba(0, 102, 204, 0.25),
      0 0 0 1px rgba(0, 102, 204, 0.1);
}

.blog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0066cc, #0099ff, #0066cc);
  background-size: 200% 100%;
  border-radius: 3px 3px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.blog-card:hover::before {
  opacity: 1;
  animation: gradientMove 2s linear infinite;
}

@keyframes gradientMove {
  0% {
      background-position: 0% 0;
  }
  100% {
      background-position: 200% 0;
  }
}

/* Image Hover Effects */
.blog-image {
  overflow: hidden;
  position: relative;
}

.blog-image img {
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-image img {
  transform: scale(1.1) rotate(1deg);
  filter: brightness(1.05);
}

.blog-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, 
      rgba(0, 102, 204, 0) 0%,
      rgba(0, 102, 204, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.blog-card:hover .blog-image::after {
  opacity: 1;
}

/* Floating Animation for Featured Images */
.blog-featured-image {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
      transform: translateY(0px) rotateX(0deg);
  }
  50% {
      transform: translateY(-20px) rotateX(5deg);
  }
}

/* Text Reveal Animation */
.text-reveal {
  opacity: 0;
  transform: translateY(30px);
  animation: textReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes textReveal {
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Staggered Animation Delay */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

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

/* Button Animations */
.blog-read-btn,
.btn-primary,
.btn-light {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.blog-read-btn::before,
.btn-primary::before,
.btn-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
      transparent, 
      rgba(255, 255, 255, 0.2), 
      transparent);
  transition: left 0.7s ease;
  z-index: -1;
}

.blog-read-btn:hover::before,
.btn-primary:hover::before,
.btn-light:hover::before {
  left: 100%;
}

.blog-read-btn:hover i,
.btn-primary:hover i,
.btn-light:hover i {
  transform: translateX(5px) rotate(90deg);
}

.blog-read-btn i,
.btn-primary i,
.btn-light i {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Category Tag Animation */
.blog-category,
.article-category {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: left center;
}

.blog-card:hover .blog-category,
.related-article-card:hover .article-category {
  transform: scale(1.1) translateX(10px);
  box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

/* Author Image Animation */
.author-image {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.author-bio:hover .author-image {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 
      0 15px 30px rgba(0, 102, 204, 0.2),
      0 0 0 4px rgba(255, 255, 255, 0.1);
}

/* Comment Animation */
.comment-item {
  opacity: 0;
  transform: translateX(-20px);
  animation: slideInRight 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.comment-item:nth-child(1) { animation-delay: 0.1s; }
.comment-item:nth-child(2) { animation-delay: 0.2s; }
.comment-item:nth-child(3) { animation-delay: 0.3s; }
.comment-item:nth-child(4) { animation-delay: 0.4s; }
.comment-item:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInRight {
  to {
      opacity: 1;
      transform: translateX(0);
  }
}

/* Stats Counter Animation */
.stat-number {
  position: relative;
  display: inline-block;
}

.stat-number::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #0066cc, #0099ff);
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover .stat-number::after {
  width: 100%;
}

/* Step Animation */
.step-number {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.step:hover .step-number {
  transform: scale(1.2) rotate(360deg);
  box-shadow: 0 10px 20px rgba(0, 102, 204, 0.3);
}

/* Tech Item Icon Animation */
.tech-icon {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-item:hover .tech-icon {
  transform: translateY(-10px) rotateY(360deg);
  box-shadow: 0 15px 30px rgba(0, 102, 204, 0.3);
}

.tech-item:hover .tech-icon i {
  animation: bounce 0.5s ease;
}

@keyframes bounce {
  0%, 100% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-5px);
  }
}

/* Search Input Animation */
.search-form input {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-form input:focus {
  transform: translateY(-2px);
  box-shadow: 
      0 10px 20px rgba(0, 102, 204, 0.1),
      0 0 0 3px rgba(0, 102, 204, 0.05);
}

/* Social Icon Animation */
.social-icon,
.author-social a {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.social-icon:hover,
.author-social a:hover {
  transform: translateY(-5px) rotateY(180deg);
  box-shadow: 0 10px 20px rgba(0, 102, 204, 0.3);
}

/* Tag Cloud Animation */
.tag {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
      transparent, 
      rgba(255, 255, 255, 0.3), 
      transparent);
  transition: left 0.6s ease;
}

.tag:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.2);
}

.tag:hover::before {
  left: 100%;
}

/* Newsletter Form Animation */
.newsletter-box {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
      transform: scale(1);
      box-shadow: 0 10px 30px rgba(0, 102, 204, 0.2);
  }
  50% {
      transform: scale(1.02);
      box-shadow: 0 15px 40px rgba(0, 102, 204, 0.3);
  }
}

/* Breadcrumb Animation */
.breadcrumb-trail .trail-items li {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.breadcrumb-trail .trail-items li:nth-child(1) { animation-delay: 0.1s; }
.breadcrumb-trail .trail-items li:nth-child(2) { animation-delay: 0.2s; }
.breadcrumb-trail .trail-items li:nth-child(3) { animation-delay: 0.3s; }

/* Loading Animation for Images */
.lazy-image {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.lazy-image.loaded {
  opacity: 1;
  transform: scale(1);
}

/* Scroll Indicator */
.scroll-indicator {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0066cc, #0099ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.scroll-indicator.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-indicator:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 102, 204, 0.4);
}

.scroll-indicator i {
  animation: bounceUpDown 1s ease-in-out infinite;
}

@keyframes bounceUpDown {
  0%, 100% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-3px);
  }
}

/* Parallax Effect for Featured Image */
.parallax-image {
  transform: translateZ(0);
  will-change: transform;
}

/* Gradient Text Animation */
.gradient-text {
  background: linear-gradient(90deg, #0066cc, #0099ff, #0066cc);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientText 3s linear infinite;
}

@keyframes gradientText {
  0% {
      background-position: 0% center;
  }
  100% {
      background-position: 200% center;
  }
}

/* Progress Bar Animation */
.reading-progress {
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Filter Button Animation */
.filter-btn {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.filter-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}

.filter-btn:active::after {
  animation: ripple 1s ease-out;
}

@keyframes ripple {
  0% {
      transform: scale(0, 0);
      opacity: 0.5;
  }
  100% {
      transform: scale(40, 40);
      opacity: 0;
  }
}

/* Sticky Sidebar Animation */
.blog-sidebar {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Form Input Animation */
.form-control {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-control:focus {
  transform: translateY(-2px);
  box-shadow: 
      0 5px 15px rgba(0, 102, 204, 0.1),
      0 0 0 2px rgba(0, 102, 204, 0.1);
}

/* Star Rating Animation */
.stars i {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stars i:hover {
  transform: scale(1.3) rotate(15deg);
}

/* Notification Animation */
.notification-content {
  animation: slideInRight 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Mobile Menu Animation */
@media (max-width: 991px) {
  .blog-sidebar {
      animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  @keyframes slideUp {
      from {
          opacity: 0;
          transform: translateY(30px);
      }
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }
}

/* Smooth Loading Animation */
.loading-animation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeOut 0.5s ease forwards 1.5s;
}

.loading-content {
  text-align: center;
}

.loading-spinner {
  width: 80px;
  height: 80px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  border-top-color: #0066cc;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes fadeOut {
  to {
      opacity: 0;
      visibility: hidden;
  }
}

/* Enhanced WOW.js Animations */
.wow {
  visibility: hidden;
}

/* Custom Animation Classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Typing Effect for Headers */
.typing-effect {
  overflow: hidden;
  border-right: 2px solid #0066cc;
  white-space: nowrap;
  animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: #0066cc }
}

/* Shimmer Effect */
.shimmer {
  background: linear-gradient(90deg, 
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.2) 50%,
      rgba(255, 255, 255, 0) 100%);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
      background-position: -200% 0;
  }
  100% {
      background-position: 200% 0;
  }
}

/* Magnetic Button Effect */
.magnetic-btn {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth Zoom Animation */
.zoom-in {
  animation: zoomIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes zoomIn {
  from {
      opacity: 0;
      transform: scale(0.9);
  }
  to {
      opacity: 1;
      transform: scale(1);
  }
}

/* Fade In Left */
.fade-in-left {
  animation: fadeInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInLeft {
  from {
      opacity: 0;
      transform: translateX(-30px);
  }
  to {
      opacity: 1;
      transform: translateX(0);
  }
}

/* Fade In Right */
.fade-in-right {
  animation: fadeInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInRight {
  from {
      opacity: 0;
      transform: translateX(30px);
  }
  to {
      opacity: 1;
      transform: translateX(0);
  }
}

/* Bounce In */
.bounce-in {
  animation: bounceIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes bounceIn {
  0% {
      opacity: 0;
      transform: scale(0.3);
  }
  50% {
      opacity: 1;
      transform: scale(1.05);
  }
  70% {
      transform: scale(0.9);
  }
  100% {
      transform: scale(1);
  }
}

/* Rotate In */
.rotate-in {
  animation: rotateIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes rotateIn {
  from {
      opacity: 0;
      transform: rotate(-180deg) scale(0.3);
  }
  to {
      opacity: 1;
      transform: rotate(0) scale(1);
  }
}

/* Flip In */
.flip-in {
  animation: flipIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  backface-visibility: visible;
}

@keyframes flipIn {
  from {
      opacity: 0;
      transform: perspective(400px) rotateY(90deg);
  }
  to {
      opacity: 1;
      transform: perspective(400px) rotateY(0deg);
  }
}

/* Light Speed In */
.light-speed-in {
  animation: lightSpeedIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes lightSpeedIn {
  from {
      opacity: 0;
      transform: translateX(100%) skewX(-30deg);
  }
  60% {
      opacity: 1;
      transform: skewX(20deg);
  }
  80% {
      transform: skewX(-5deg);
  }
  to {
      transform: translateX(0);
  }
}

/* Roll In */
.roll-in {
  animation: rollIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes rollIn {
  from {
      opacity: 0;
      transform: translateX(-100%) rotate(-120deg);
  }
  to {
      opacity: 1;
      transform: translateX(0) rotate(0deg);
  }
}



/* carrer page */
/* Careers Page Styles */
.career-hero-section {
  position: relative;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
  padding: 100px 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.career-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M500,97C126.7,96.3,0.8,19.8,0,0v100l1000,0V1C1000,19.4,873.3,97.8,500,97z" fill="%230066cc" opacity="0.1"></path></svg>') bottom center no-repeat;
  background-size: 100% auto;
  background-color: aliceblue;
}

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

.career-hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: white;
}

.career-hero-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.9;
  max-width: 600px;
}

.career-hero-image {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-20px);
  }
}

.career-hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.career-hero-wave svg {
  display: block;
  width: 100%;
  height: auto;
}

/* Why Join Us Section */
.why-join-section {
  position: relative;
  background: #a39db838;
}

.section-header {
  margin-bottom: 50px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.benefit-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #f0f0f0;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 102, 204, 0.15);
  border-color: #0066cc;
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.benefit-icon i {
  font-size: 30px;
  color: white;
}

.benefit-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.benefit-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefit-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 15px;
  color: #555;
}

.benefit-list i {
  color: #0066cc;
  font-size: 14px;
}

/* Life at Nexiva */
.life-at-nexiva {
  position: relative;
}

.culture-features {
  margin-top: 40px;
}

.culture-feature {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: #e9f4ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.culture-feature:hover .feature-icon {
  background: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
  transform: rotate(10deg);
}

.feature-icon i {
  font-size: 24px;
  color: #0066cc;
  transition: all 0.3s ease;
}

.culture-feature:hover .feature-icon i {
  color: white;
}

.feature-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.feature-content p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.culture-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.culture-gallery img:hover {
  transform: scale(1.05);
}

/* Open Positions */
.open-positions-section {
  position: relative;
  background: #fff;
}

.job-filter {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-label {
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
  display: block;
}

.form-control,
.form-select {
  padding: 12px 20px;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: #0066cc;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.job-listings {
  margin-top: 30px;
}

.job-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 20px;
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 102, 204, 0.1);
  border-color: #0066cc;
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 20px;
}

.job-title-section {
  flex: 1;
}

.job-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.job-department,
.job-location,
.job-type {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 15px;
  background: #e9f4ff;
  color: #0066cc;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

.job-location {
  background: #e7f6e7;
  color: #28a745;
}

.job-type {
  background: #fff3cd;
  color: #856404;
}

.job-action .btn {
  padding: 10px 25px;
  font-weight: 600;
}

.job-description {
  color: #666;
  line-height: 1.6;
}

.job-requirements {
  margin-top: 20px;
}

.job-requirements h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.job-requirements ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.job-requirements li {
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
  color: #555;
}

.job-requirements li::before {
  content: '•';
  color: #0066cc;
  position: absolute;
  left: 0;
}

.btn-outline-primary {
  border: 2px solid #0066cc;
  color: #0066cc;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: #0066cc;
  color: white;
  transform: translateY(-2px);
}

/* Application Process */
.application-process {
  position: relative;
  padding-bottom: 50px;
}

.process-steps {
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  align-items: flex-start;
  border: 1px solid black;
  padding: 20px;
  border-radius: 20px;

}

.process-step:last-child {
  margin-bottom: 0;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.process-step:hover .step-number {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 10px 20px rgba(0, 102, 204, 0.3);
}

.step-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.step-content p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* FAQ Section */
.career-faq {
  position: relative;
  background: #fff;
}

.accordion-item {
  border: 1px solid #8d9ba9;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.accordion-button {
  padding: 20px;
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  background: #fff;
  border: none;
  text-align: left;
}

.accordion-button:not(.collapsed) {
  background: #6c757d1a;
  /* background: #1f242c; */
  color: #0066cc;
  box-shadow: none;
}

.accordion-button:focus {
  border-color: #0066cc;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230066cc'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230066cc'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 20px;
  color: #666;
  line-height: 1.6;
  background: #f8f9fa;
  border-top: 1px solid #BFDCF2;
  
}

/* CTA Section */
.career-cta {
  position: relative;
}

.cta-wrapper {
  background: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
  box-shadow: 0 20px 40px rgba(0, 102, 204, 0.2);
}

/* Modal Styles */
.modal-content {
  border-radius: 15px;
  border: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.modal-header {
  border-bottom: 1px solid #e9ecef;
  padding: 25px;
}

.modal-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
}

.modal-body {
  padding: 25px;
}

.modal-footer {
  border-top: 1px solid #e9ecef;
  padding: 20px 25px;
}

.btn-close:focus {
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.file-upload-wrapper {
  margin-top: 10px;
}

.file-upload-wrapper input[type="file"] {
  padding: 10px;
  border: 2px dashed #dee2e6;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.file-upload-wrapper input[type="file"]:hover {
  border-color: #0066cc;
}

.form-check-input:checked {
  background-color: #0066cc;
  border-color: #0066cc;
}

.form-check-input:focus {
  border-color: #0066cc;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.btn-primary {
  background: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 102, 204, 0.2);
}

.btn-secondary {
  background: #6c757d;
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #5a6268;
  transform: translateY(-2px);
}

/* Load More Button */
#load-more-jobs {
  padding: 12px 40px;
  font-weight: 600;
}

/* Animation Classes */
.wow {
  visibility: hidden;
}

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

.fadeInUp {
  animation-name: fadeInUp;
}

/* Responsive Styles */
@media (max-width: 1199px) {
  .career-hero-title {
      font-size: 42px;
  }
  
  .section-title {
      font-size: 32px;
  }
  
  .job-header {
      flex-direction: column;
      align-items: flex-start;
  }
  
  .job-action {
      width: 100%;
  }
  
  .job-action .btn {
      width: 100%;
  }
}

@media (max-width: 991px) {
  .career-hero-section {
      padding: 80px 0;
      min-height: auto;
  }
  
  .career-hero-title {
      font-size: 36px;
  }
  
  .career-hero-image {
      margin-top: 50px;
  }
  
  .section-title {
      font-size: 28px;
  }
  
  .benefit-card {
      padding: 25px;
  }
  
  .benefit-icon {
      width: 60px;
      height: 60px;
  }
  
  .benefit-icon i {
      font-size: 24px;
  }
  
  .benefit-title {
      font-size: 20px;
  }
  
  .process-step {
      gap: 20px;
  }
  
  .step-number {
      width: 50px;
      height: 50px;
      font-size: 20px;
  }
  
  .step-content h3 {
      font-size: 20px;
  }
  
  .accordion-button {
      font-size: 16px;
      padding: 15px;
  }
}

@media (max-width: 767px) {
  .career-hero-title {
      font-size: 32px;
  }
  
  .career-hero-description {
      font-size: 16px;
  }
  
  .section-title {
      font-size: 24px;
  }
  
  .section-subtitle {
      font-size: 16px;
  }
  
  .job-filter {
      padding: 20px;
  }
  
  .job-title {
      font-size: 20px;
  }
  
  .job-meta {
      gap: 10px;
  }
  
  .job-department,
  .job-location,
  .job-type {
      padding: 4px 12px;
      font-size: 12px;
  }
  
  .process-step {
      flex-direction: column;
      gap: 15px;
      text-align: center;
  }
  
  .step-number {
      align-self: center;
  }
  
  .culture-feature {
      flex-direction: column;
      text-align: center;
      gap: 15px;
  }
  
  .feature-icon {
      align-self: center;
  }
  
  .cta-wrapper {
      padding: 30px !important;
  }
  
  .modal-dialog {
      margin: 10px;
  }
  
  .modal-header,
  .modal-body,
  .modal-footer {
      padding: 20px;
  }
}

@media (max-width: 575px) {
  .career-hero-title {
      font-size: 28px;
  }
  
  .career-hero-cta {
      display: flex;
      flex-direction: column;
      gap: 15px;
  }
  
  .career-hero-cta .btn {
      width: 100%;
  }
  
  .section-title {
      font-size: 22px;
  }
  
  .benefit-card {
      padding: 20px;
  }
  
  .job-card {
      padding: 20px;
  }
  
  .job-filter .row > div {
      margin-bottom: 15px;
  }
  
  .job-filter .row > div:last-child {
      margin-bottom: 0;
  }
  
  .accordion-button {
      font-size: 15px;
      padding: 15px 40px 15px 15px;
  }
  
  .cta-wrapper .row > div {
      margin-bottom: 20px;
      text-align: center;
  }
  
  .cta-wrapper .row > div:last-child {
      margin-bottom: 0;
  }
  
  .btn-light,
  .btn-primary,
  .btn-secondary {
      width: 100%;
  }
}

/* File Upload Custom Styles */
.file-upload-wrapper {
  position: relative;
}

.file-upload-wrapper input[type="file"] {
  width: 100%;
  cursor: pointer;
}

.file-upload-wrapper input[type="file"]::-webkit-file-upload-button {
  visibility: hidden;
}

.file-upload-wrapper input[type="file"]::before {
  content: 'Choose file';
  display: inline-block;
  background: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  margin-right: 20px;
  cursor: pointer;
}

/* Scroll Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Loading States */
.btn.loading {
  position: relative;
  color: transparent;
}

.btn.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
      transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Success/Error Messages */
.alert {
  border-radius: 10px;
  border: none;
  padding: 15px 20px;
}

.alert-success {
  background: #d4edda;
  color: #155724;
}

.alert-error {
  background: #f8d7da;
  color: #721c24;
}

.alert-info {
  background: #d1ecf1;
  color: #0c5460;
}

/* Print Styles */
@media print {
  .career-hero-cta,
  .job-action,
  .btn,
  .modal,
  .footer {
      display: none !important;
  }
  
  .job-card {
      break-inside: avoid;
      box-shadow: none;
      border: 1px solid #ddd;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  .why-join-section,
  .open-positions-section,
  .career-faq {
      background: #1a1a1a;
  }
  
  .section-title,
  .benefit-title,
  .feature-content h4,
  .job-title,
  .job-requirements h5,
  .step-content h3,
  .accordion-button,
  .modal-title,
  .form-label {
      color: #fff;
  }
  
  .section-subtitle,
  .benefit-description,
  .feature-content p,
  .job-description,
  .job-requirements li,
  .step-content p,
  .accordion-body {
      color: #aaa;
  }
  
  .benefit-card,
  .job-card {
      background: #2d2d2d;
      border-color: #404040;
  }
  
  .benefit-list li {
      color: #ccc;
  }
  
  .form-control,
  .form-select {
      background: #2d2d2d;
      border-color: #404040;
      color: #fff;
  }
  
  .form-control:focus,
  .form-select:focus {
      background: #2d2d2d;
  }
  
  .job-filter,
  .accordion-body {
      background: #2d2d2d;
  }
  
  .accordion-button {
      background: #2d2d2d;
      color: #fff;
  }
  
  .accordion-button:not(.collapsed) {
      background: #2d2d2d;
  }
  
  .modal-content {
      background: #2d2d2d;
  }
  
  .modal-header,
  .modal-footer {
      border-color: #404040;
  }
}

.process-step :hover{
  /* background: linear-gradient(to right, var(--clr-theme-1), var(--clr-theme-3), var(--clr-theme-3), var(--clr-theme-1)); */
  background-color: #BFDCF2;
  padding-left: 20px;
  padding-top: 5px;
  /* color: white; */
  border-radius: 20px;
  padding-bottom: 5px;


}

/* Job Cards Grid Layout */
.job-listings-grid {
  display: flex;
  flex-wrap: wrap;
}

.job-card-grid {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e9ecef;
  display: flex;
  flex-direction: column;
}

.job-card-grid:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.job-header {
  margin-bottom: 1rem;
}

.job-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 0.5rem;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.job-department,
.job-location,
.job-type {
  font-size: 0.875rem;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-weight: 500;
}

.job-department {
  background-color: #e7f1ff;
  color: #4361ee;
}

.job-location {
  background-color: #e6f7e9;
  color: #2e7d32;
}

.job-type {
  background-color: #fff3e0;
  color: #f57c00;
}

.job-description {
  flex-grow: 1;
  margin-bottom: 1rem;
}

.job-description p {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.job-requirements h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #495057;
}

.job-requirements ul {
  padding-left: 1.25rem;
  margin-bottom: 0;
}

.job-requirements li {
  color: #6c757d;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

.job-action {
  margin-top: auto;
}

.btn-outline-primary {
  border-color: #4361ee;
  color: #4361ee;
  padding: 0.5rem 1rem;
  font-weight: 500;
}

.btn-outline-primary:hover {
  background-color: #4361ee;
  border-color: #4361ee;
  color: white;
}

.cta-wrapper-application {
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.1) 50%, rgba(168, 85, 247, 0.1) 100%) !important;
}




/* solution page */
/* Solutions Page Styles */
:root {
  --primary-color: #0E84E1;
  --primary-dark: #0a6bb8;
  --secondary-color: #1F242C;
  --accent-color: #3ba0ff;
  --light-bg: #f8f9fa;
  --dark-bg: #1a1a1a;
  --text-color: #333333;
  --text-light: #666666;
  --white: #ffffff;
  --border-color: #e9ecef;
  --gradient-primary: linear-gradient(135deg, #0E84E1 0%, #3ba0ff 100%);
  --shadow: 0 10px 30px rgba(14, 132, 225, 0.1);
  --shadow-lg: 0 20px 40px rgba(14, 132, 225, 0.15);
}

/* Hero Section */
.solutions-hero-area {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding-top: 70px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}

.solutions-hero-area::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('assets/img/solutions/pattern-bg.png') no-repeat right top;
  opacity: 0.1;
  z-index: 1;
}

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

.solutions-hero-content .hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
}

.solutions-hero-content .text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.solutions-hero-content .hero-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 2rem;
}

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

.solutions-hero-image img {
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* Trusted By Section */
.trusted-by-section {
  background: var(--white);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.trusted-by-section .section-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  font-weight: 500;
}

.trusted-logos {
  gap: 2rem !important;
}

.trusted-logo {
  opacity: 0.6;
  transition: all 0.3s ease;
  padding: 1rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.trusted-logo:hover {
  opacity: 1;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

/* Solutions Section */
.solutions-section {
  background: var(--white);
}

.solution-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-primary);
  z-index: 2;
}

.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.solution-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.solution-icon i {
  font-size: 2rem;
  color: var(--white);
}

.solution-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.solution-card p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.solution-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.solution-features li {
  color: var(--text-color);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.solution-features li i {
  color: var(--primary-color);
  margin-right: 0.5rem;
  font-size: 0.875rem;
}

.solution-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.solution-link:hover {
  color: var(--primary-dark);
  gap: 1rem;
}

/* Products Section */
.products-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.product-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary-color);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.product-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.product-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.product-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.product-card p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.feature-tag {
  background: rgba(14, 132, 225, 0.1);
  color: var(--primary-color);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 500;
}

.product-btn {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
}

.product-btn:hover {
  background: transparent;
  color: var(--primary-color);
}

/* Technology Stack */
.technology-stack-section {
  background: var(--white);
}

.tech-stack-item {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.tech-stack-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--primary-color);
}

.tech-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-stack-item span {
  display: block;
  font-weight: 600;
  color: var(--secondary-color);
  font-size: 0.875rem;
}

/* Success Stories */
.success-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.success-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.success-logo {
  height: 60px;
  margin-bottom: 1.5rem;
}

.success-logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.success-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.success-card p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.success-metrics {
  display: flex;
  gap: 1rem;
}

.metric {
  flex: 1;
  text-align: center;
}

.metric-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.metric-label {
  display: block;
  font-size: 0.875rem;
  color: var(--text-light);
  margin-top: 0.25rem;
}

/* CTA Section */
.solutions-cta-section {
  background: var(--gradient-primary);
  color: var(--white);
}

.solutions-cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.solutions-cta-section p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 0;
}

.solutions-cta-section .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.solutions-cta-section .btn-outline-light:hover {
  background: var(--white);
  color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1199.98px) {
  .solutions-hero-content .hero-title {
      font-size: 2.5rem;
  }
  
  .success-metrics {
      flex-direction: column;
      gap: 0.5rem;
  }
}

@media (max-width: 991.98px) {
  .solutions-hero-area {
      padding-top: 25px;
      padding-bottom: 80px;
  }
  
  .solutions-hero-content {
      text-align: center;
      margin-bottom: 3rem;
  }
  
  .solutions-hero-image {
      text-align: center;
  }
  
  .solutions-hero-image img {
      max-width: 80%;
  }
  
  .trusted-logos {
      gap: 1rem !important;
  }
  
  .solution-card,
  .product-card,
  .success-card {
      padding: 1.5rem;
  }
  
  .solutions-cta-section .cta-content {
      text-align: center;
      margin-bottom: 2rem;
  }
  
  .solutions-cta-section .cta-buttons {
      text-align: center;
  }
}

@media (max-width: 767.98px) {
  .solutions-hero-content .hero-title {
      font-size: 2rem;
  }
  
  .solutions-hero-content .hero-description {
      font-size: 1rem;
  }
  
  .trusted-logo {
      padding: 0.5rem;
  }
  
  .trusted-logo img {
      height: 30px;
  }
  
  .section-title {
      font-size: 1.75rem;
  }
  
  .solution-card,
  .product-card,
  .success-card {
      padding: 1.25rem;
  }
  
  .solution-icon {
      width: 60px;
      height: 60px;
  }
  
  .solution-icon i {
      font-size: 1.5rem;
  }
  
  .solutions-cta-section h2 {
      font-size: 2rem;
  }
  
  .solutions-cta-section .cta-buttons .btn {
      display: block;
      width: 100%;
      margin-bottom: 1rem;
  }
  
  .solutions-cta-section .cta-buttons .btn:last-child {
      margin-bottom: 0;
  }
}

@media (max-width: 575.98px) {
  .solutions-hero-content .hero-title {
      font-size: 1.75rem;
  }
  
  .hero-cta-buttons .btn {
      display: block;
      width: 100%;
      margin-bottom: 1rem;
  }
  
  .hero-cta-buttons .btn:last-child {
      margin-bottom: 0;
  }
  
  .trusted-logo {
      flex: 0 0 calc(50% - 1rem);
  }
  
  .tech-stack-item {
      padding: 1rem;
  }
  
  .tech-icon {
      font-size: 2rem;
      height: 50px;
  }
}

/* Animation Classes */
.wow.fadeInUp {
  animation-duration: 0.6s;
}

/* Button Styles */
.btn-primary {
  background: var(--gradient-primary);
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline-primary {
  border-color: var(--primary-color);
  color: var(--primary-color);
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Section Spacing */
.section-padding {
  /* padding-top: 100px; */
  padding-bottom: 40px;
}

.py-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

/* Text Colors */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* Flip Card Technology Stack */
.tech-flip-card {
  perspective: 1000px;
  height: 180px;
}

.tech-flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  border-radius: 20px;
}

.tech-flip-card:hover .tech-flip-card-inner {
  transform: rotateY(180deg);
}

.tech-flip-card-front,
.tech-flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
}

/* Front Side */
.tech-flip-card-front {
  background: var(--white);
  border: 1px solid var(--border-color);
  box-shadow: 0 5px 15px rgba(0, 0, 15, 0.25);
  transition: all 0.3s ease;
}
/* FRONT CARD ICON — BIG *
.tech-flip-card-front .tech-icon {
  width: 110px;
  height: 110px;
  margin: 0 auto;
}

.tech-flip-card-front .tech-icon i {
  font-size: 48px;
}
/* FRONT CARD ICON — BIG */
.tech-flip-card-front .tech-icon {
  width: 110px;
  height: 110px;
  margin: 0 auto;
}

.tech-flip-card-front .tech-icon i {
  font-size: 48px;
}

.tech-flip-card-front span {
  /* font-size: 1.125rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-top: 0.5rem; */
  display: none;
}

/* Back Side */
.tech-flip-card-back {
  background: var(--gradient-primary);
  color: var(--white);
  transform: rotateY(180deg);
  padding: 1rem;
}

.tech-flip-card-back h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.tech-flip-card-back p {
  font-size: 0.875rem;
  line-height: 1.4;
  margin-bottom: 1rem;
  opacity: 0.9;
  color: white !important;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  justify-content: center;
}

.tech-tag {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* Hover effects for front side */
.tech-flip-card:hover .tech-flip-card-front {
  box-shadow: 0 15px 30px rgba(14, 132, 225, 0.15);
  border-color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 1199.98px) {
  .tech-flip-card {
    height: 160px;
  }
}

@media (max-width: 991.98px) {
  .tech-flip-card {
    height: 150px;
  }
  
  .tech-flip-card-front .tech-icon {
    font-size: 2.5rem;
  }
  
  .tech-flip-card-back h4 {
    font-size: 1.125rem;
  }
  
  .tech-flip-card-back p {
    font-size: 0.8125rem;
  }
}

@media (max-width: 767.98px) {
  .tech-flip-card {
    height: 140px;
  }
  
  .tech-flip-card-front .tech-icon {
    font-size: 2rem;
    /* height: 50px; */
  }
  
  .tech-flip-card-front span {
    font-size: 1rem;
  }
  
  .tech-flip-card-back {
    padding: 1rem;
  }
  
  .tech-flip-card-back h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .tech-flip-card-back p {
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
  }
}


@media (max-width: 575.98px) {
  .tech-flip-card {
    height: 120px;
  }
  
  .tech-flip-card-front .tech-icon {
    font-size: 1.75rem;
    /* height: 40px; */
    height: 115px;
        margin-right: 12px;
        margin-left: 13px;
        width: 88px;
  }
  
  .tech-flip-card-front span {
    font-size: 0.875rem;
  }
  
  .tech-flip-card-back h4 {
    font-size: 0.875rem;
  }
  
  .tech-flip-card-back p {
    display: none; /* Hide description on very small screens */
  }
  
  .tech-tag {
    font-size: 0.625rem;
    padding: 0.125rem 0.5rem;
  }
}

/* Optional: Touch device support */
@media (hover: none) and (pointer: coarse) {
  .tech-flip-card {
    /* Disable flip animation on touch devices if needed */
  }
  
  .tech-flip-card-inner {
    transition: none;
  }
  
  .tech-flip-card:hover .tech-flip-card-inner {
    transform: none;
  }
}






/* privacy */
.policy-content {
  background: #fff;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.policy-section {
  margin-bottom: 50px;
}

.policy-section h2 {
  color: #0E84E1;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
}

.policy-section h3 {
  color: #333;
  margin: 30px 0 15px;
}

.policy-section p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

.policy-section ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.policy-section li {
  color: #555;
  line-height: 1.8;
  margin-bottom: 10px;
  position: relative;
}

.policy-section li:before {
  content: "•";
  color: #0E84E1;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.policy-highlight {
  background: #f8f9fa;
  border-left: 4px solid #0E84E1;
  padding: 20px;
  margin: 25px 0;
  border-radius: 0 8px 8px 0;
}

@media (max-width: 768px) {
  .policy-content {
    padding: 30px 20px;
  }

  .policy-section {
    margin-bottom: 30px;
  }

  .policy-section h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .policy-content {
    padding: 20px 15px;
  }
}


/* industry */
/* Industries Page Styles */
.industries-hero {
  /* background: linear-gradient(to right, var(--clr-theme-1), var(--clr-theme-3), var(--clr-theme-3), var(--clr-theme-1)); */
  color: #fff;
}

.industries-hero .lead-text {
  font-size: 1.2rem;
  line-height: 1.8;
  /* color: rgba(255, 255, 255, 0.9); */
  max-width: 800px;
  margin: 0 auto;
  color: black;
}

.industry-card {
  background: #fff;
  border-radius: 15px;
  padding: 40px 30px;
  height: 100%;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.industry-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(14, 132, 225, 0.15);
  border-color: #0E84E1;
}

.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0E84E1 0%, #0a5ea0 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.industry-card:hover::before {
  transform: scaleX(1);
}

.industry-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #0E84E1 0%, #0a5ea0 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: #fff;
  font-size: 28px;
}

.industry-card h3 {
  color: #333;
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.industry-card p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 1rem;
}

.industry-solutions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}

.industry-solutions span {
  background: #f5f9ff;
  color: #0E84E1;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid #e3f2ff;
}

.industry-link {
  color: #0E84E1;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.industry-link:hover {
  color: #0a5ea0;
  gap: 12px;
}

.industries-cta {
  background: #f8faff;
  padding: 40px;
  border-radius: 15px;
  /* border: 2px dashed #0E84E1; */
}

.industries-cta h3 {
  color: #333;
  margin-bottom: 15px;
}

.industries-cta p {
  color: #666;
  margin-bottom: 0;
}

.industries-why-section {
  background: #f8faff;
}

.industries-why-content h2 {
  color: #333;
  font-size: 2.2rem;
  line-height: 1.3;
}

.industries-why-content p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.8;
}

.industries-benefits {
  margin-top: 30px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.benefit-item i {
  color: #0E84E1;
  font-size: 1.2rem;
}

.benefit-item span {
  color: #444;
  font-size: 1.05rem;
}

.industries-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.stat-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(14, 132, 225, 0.15);
}

.stat-card h3 {
  font-size: 2.5rem;
  color: #0E84E1;
  margin-bottom: 10px;
  font-weight: 700;
}

.stat-card p {
  color: #666;
  margin: 0;
  font-size: 1rem;
}

/* Responsive Styles */
@media (max-width: 1199px) {
  .industries-stats {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .industries-hero {
      /* padding: 60px 0; */
  }
  
  .industries-why-content {
      margin-bottom: 50px;
  }
  
  .industries-stats {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .industry-card {
      padding: 30px 20px;
  }
  
  .industry-icon {
      width: 60px;
      height: 60px;
      font-size: 24px;
  }
  
  .industry-card h3 {
      font-size: 1.3rem;
  }
  
  .industries-cta {
      padding: 30px 20px;
  }
  
  .industries-why-content h2 {
      font-size: 1.8rem;
  }
  
  .stat-card {
      padding: 20px;
  }
  
  .stat-card h3 {
      font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .industries-stats {
      grid-template-columns: 1fr;
  }
  
  .industry-solutions {
      justify-content: center;
  }
  
  .industries-why-content p {
      font-size: 1rem;
  }
  
  .benefit-item span {
      font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .industry-card {
      padding: 25px 15px;
  }
  
  .industry-icon {
      width: 50px;
      height: 50px;
      font-size: 20px;
      margin-bottom: 20px;
  }
  
  .stat-card {
      padding: 15px;
  }
  
  .stat-card h3 {
      font-size: 1.8rem;
  }
}



/* case studeies */
/* Case Studies Page Styles */
.case-studies-hero {
  background: linear-gradient(135deg, #0E84E1 0%, #0a5ea0 100%);
  color: #fff;
}

.case-studies-hero .lead-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto;
}

.case-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.filter-btn {
  /* background: rgba(255, 255, 255, 0.1); */
  background: #4a6cf7;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: #fff;
  color: #0E84E1;
  border-color: #fff;
}

/* Case Study Cards */
.case-study-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
}

.case-study-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(14, 132, 225, 0.15);
}

.case-study-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.case-study-card:hover .case-study-image img {
  transform: scale(1.05);
}

.case-study-category {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
}

.case-study-category.healthcare {
  background: #10b981;
}

.case-study-category.finance {
  background: #3b82f6;
}

.case-study-category.retail {
  background: #f59e0b;
}

.case-study-category.education {
  background: #8b5cf6;
}

.case-study-category.real-estate {
  background: #ef4444;
}

.case-study-category.manufacturing {
  background: #6366f1;
}

.case-study-content {
  padding: 30px;
}

.case-study-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  color: #666;
  font-size: 0.9rem;
}

.case-study-meta i {
  color: #0E84E1;
  margin-right: 5px;
}

.case-study-content h3 {
  color: #333;
  font-size: 1.4rem;
  margin-bottom: 15px;
  line-height: 1.4;
}

.case-study-content p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 1rem;
}

.case-study-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 25px;
  padding: 20px;
  background: #f8faff;
  border-radius: 10px;
}

.result-item {
  text-align: center;
}

.result-item h4 {
  color: #0E84E1;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.result-item span {
  color: #666;
  font-size: 0.85rem;
  line-height: 1.3;
}

.case-study-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}

.case-study-tech span {
  background: #f0f7ff;
  color: #0E84E1;
  padding: 6px 15px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid #dbeafe;
}

.case-study-link {
  color: #0E84E1;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.case-study-link:hover {
  color: #0a5ea0;
  gap: 12px;
}

/* Testimonial Section */
.case-testimonial {
  background: #f8faff;
}

.testimonial-quote {
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-quote i {
  font-size: 3rem;
  color: #0E84E1;
  margin-bottom: 30px;
}

.testimonial-quote h3 {
  color: #333;
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 40px;
  font-weight: 400;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.testimonial-author img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #0E84E1;
}

.author-info h4 {
  color: #333;
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.author-info span {
  color: #666;
  font-size: 0.95rem;
}

/* CTA Section */
.case-cta {
  background: linear-gradient(135deg, #0E84E1 0%, #0a5ea0 100%);
  color: #fff;
}

.case-cta-content h2 {
  color: #fff;
  font-size: 2.5rem;
}

.case-cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.7;
}

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

.load-more-btn {
  background: #fff;
  color: #0E84E1;
  border: 2px solid #0E84E1;
}

.load-more-btn:hover {
  background: #0E84E1;
  color: #fff;
}

/* Responsive Styles */
@media (max-width: 1199px) {
  .case-study-results {
      grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .case-studies-hero {
      padding: 60px 0;
  }
  
  .case-study-image {
      height: 220px;
  }
  
  .case-study-results {
      grid-template-columns: repeat(3, 1fr);
      padding: 15px;
  }
  
  .testimonial-quote h3 {
      font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .case-filters {
      gap: 8px;
  }
  
  .filter-btn {
      padding: 8px 20px;
      font-size: 0.9rem;
  }
  
  .case-study-content {
      padding: 25px;
  }
  
  .case-study-content h3 {
      font-size: 1.3rem;
  }
  
  .case-study-results {
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      padding: 15px;
  }
  
  .result-item h4 {
      font-size: 1.5rem;
  }
  
  .testimonial-quote h3 {
      font-size: 1.2rem;
  }
  
  .case-cta-content h2 {
      font-size: 2rem;
  }
  
  .cta-buttons {
      flex-direction: column;
      align-items: center;
  }
  
  .cta-buttons a {
      width: 100%;
      max-width: 300px;
      text-align: center;
  }
}

@media (max-width: 576px) {
  .case-filters {
      gap: 6px;
  }
  
  .filter-btn {
      padding: 6px 15px;
      font-size: 0.85rem;
  }
  
  .case-study-image {
      height: 200px;
  }
  
  .case-study-content {
      padding: 20px;
  }
  
  .case-study-meta {
      flex-direction: column;
      gap: 8px;
  }
  
  .case-study-results {
      grid-template-columns: 1fr;
      text-align: left;
  }
  
  .result-item {
      display: flex;
      align-items: center;
      gap: 15px;
  }
  
  .result-item h4 {
      margin: 0;
      min-width: 60px;
  }
  
  .testimonial-author {
      flex-direction: column;
      text-align: center;
  }
  
  .case-cta-content h2 {
      font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .case-study-tech {
      justify-content: center;
  }
  
  .case-study-link {
      width: 100%;
      justify-content: center;
  }
  
  .testimonial-quote i {
      font-size: 2.5rem;
  }
}



/* contct icon */
/* Force icons to show */
.contact__info-icon i {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "Font Awesome 5 Free", "FontAwesome", sans-serif !important;
  font-weight: 900 !important;
  font-size: 24px !important;
  color: #0E84E1 !important;
  display: block !important;
}

/* Test with content property */
.contact__info-icon i::before {
  content: "\f095"; /* Phone icon unicode */
}

.contact__info-icon .fa-envelope::before {
  content: "\f0e0"; /* Envelope icon unicode */
}

.contact__info-icon .fa-map-marker-alt::before {
  content: "\f3c5"; /* Map marker icon unicode */
}

/*  */
.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 30px 0;
}
/*  */


.legal{
  margin-top: 30px !important;
}




/* Mobile Responsive Heading Sizes */

/* For screens between 767px and 550px */
@media screen and (max-width: 767px) and (min-width: 550px) {
  /* Main headings */
  h1, 
  h2, 
  .bd-ud-section-title h2,
  .bd-ud-history-title,
  .bd-ud-core-value-title,
  .section-title h2,
  .choose-section h2,
  .diff-heading h2,
  .global-title,
  .quality-left h2,
  .cert-heading h2,
  .bd-ud-cta-title-wrapper h2,
  .bd-ud-footer__title h4 {
      font-size: 32px !important;
      line-height: 1.2 !important;
  }
  
  /* Adjust specific sections if needed */
  .bd-ud-breadcrumb__title h2 {
      font-size: 32px !important;
      line-height: 1.3 !important;
  }
  
  .bd-ud-section-title h2 {
      font-size: 32px !important;
  }
  
  .leadership-text {
      font-size: 16px !important;
      line-height: 1.5 !important;
  }
}

/* For screens between 550px and 250px */
@media screen and (max-width: 550px) {
  /* Main headings */
  h1, 
  h2, 
  .bd-ud-section-title h2,
  .bd-ud-history-title,
  .bd-ud-core-value-title,
  .section-title h2,
  .choose-section h2,
  .diff-heading h2,
  .global-title,
  .quality-left h2,
  .cert-heading h2,
  .bd-ud-cta-title-wrapper h2,
  .bd-ud-footer__title h4 {
      font-size: 24px !important;
      line-height: 1.2 !important;
  }
  
  /* Subheadings */
  h3,
  .bd-ud-core-value-title,
  .choose-card h3,
  .diff-content h4,
  .quality-point h4 {
      font-size: 20px !important;
  }
  
  /* Adjust breadcrumb title */
  .bd-ud-breadcrumb__title h2 {
      font-size: 24px !important;
      line-height: 1.3 !important;
  }
  
  /* About section */
  .bd-ud-about3-content-wrapper h2 {
      font-size: 24px !important;
  }
  
  /* Leadership section */
  .leader h2 {
      font-size: 24px !important;
  }
  
  .leadership-text {
      font-size: 14px !important;
      line-height: 1.5 !important;
  }
  
  /* Testimonial section */
  .testimonial-section h2 {
      font-size: 24px !important;
  }
  
  /* Footer headings */
  .bd-ud-footer__title h4 {
      font-size: 20px !important;
  }
  
  /* Paragraphs for better readability */
  p {
      font-size: 14px !important;
      line-height: 1.5 !important;
  }
}

/* Additional mobile optimizations */
@media screen and (max-width: 767px) {
  /* Ensure proper spacing */
  .bd-ud-section-title-area {
      margin-bottom: 30px !important;
  }
  
  /* Adjust padding for mobile */
  .bd-ud-breadcrumb__area {
      padding: 40px 0 !important;
  }
  
  /* Make sure text doesn't overflow */
  .bd-ud-breadcrumb__title h2,
  .bd-ud-section-title h2 {
      word-wrap: break-word;
      overflow-wrap: break-word;
  }
  
  /* Adjust button sizes */
  .bd-ud-btn,
  .cap-btn,
  .cta-btn {
      padding: 12px 24px !important;
      font-size: 14px !important;
  }
}

/* Very small screens (below 350px) */
@media screen and (max-width: 350px) {
  h1, 
  h2, 
  .bd-ud-section-title h2,
  .bd-ud-history-title,
  .bd-ud-core-value-title,
  .section-title h2,
  .choose-section h2,
  .diff-heading h2,
  .global-title,
  .quality-left h2,
  .cert-heading h2,
  .bd-ud-cta-title-wrapper h2 {
      font-size: 20px !important;
      line-height: 1.2 !important;
  }
  
  h3,
  .choose-card h3 {
      font-size: 18px !important;
  }
  
  p {
      font-size: 13px !important;
  }
}





/*  */


/* location page  */

/* Scroll container - each block takes full viewport height */
.scroll-container {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

.expertise-block {
  height: 70vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0;
  padding: 0;
}

.block-content {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* Alternating layout */
.expertise-block:nth-child(odd) .block-content {
  flex-direction: row;
}

.expertise-block:nth-child(even) .block-content {
  flex-direction: row-reverse;
}

/* Image container with overlay - FIXED VERSION */
.expertise-image {
  flex: 1 1 45%;
  border-radius: 24px;
  overflow: hidden;  /* CRITICAL - keeps zoomed image inside container */
  box-shadow: 0 25px 40px -15px rgba(14,132,225,0.3);
  position: relative;
  width: 100%;
  height: 350px;
}

.expertise-image img {
  width: 100%;
  height: 100%; /* Changed from 350px to 100% to match parent */
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  transform: scale(1); /* Initial scale */
}

/* Hover zoom effect - applied directly to image container */
.expertise-image:hover img {
  transform: scale(1.08); /* Zoom to 108% on hover */
}

/* Location tag overlay on image */
.location-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  padding: 8px 20px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 18px;
  color: var(--clr-theme-1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border-left: 4px solid var(--clr-theme-1);
  z-index: 2;
  pointer-events: none; /* Prevents tag from interfering with hover */
}

.location-tag i {
  margin-right: 8px;
  color: var(--clr-theme-1);
}

/* Region badge overlay */
.region-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--clr-theme-1), var(--clr-theme-4));
  color: white;
  padding: 8px 20px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  z-index: 2;
  pointer-events: none; /* Prevents tag from interfering with hover */
}

.region-badge i {
  margin-right: 6px;
}

.expertise-content {
  flex: 1 1 50%;
}

.expertise-content h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--clr-theme-1), var(--clr-theme-4));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
}

.expertise-content p {
  font-size: 17px;
  color: var(--clr-text-4);
  margin-bottom: 25px;
  line-height: 1.7;
}

.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.expertise-tag {
  background: rgba(14,132,225,0.08);
  border: 1px solid rgba(14,132,225,0.2);
  color: var(--clr-theme-1);
  padding: 6px 20px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
}

.expertise-tag:hover {
  background: var(--clr-theme-1);
  color: white;
  border-color: transparent;
}

.expertise-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--clr-theme-1);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
}

.expertise-link i {
  transition: transform 0.2s;
}

.expertise-link:hover {
  color: var(--clr-theme-4);
  border-bottom-color: var(--clr-theme-4);
}

.expertise-link:hover i {
  transform: translateX(6px);
}

/* Progress indicator */
.progress-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(14,132,225,0.3);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.progress-dot.active {
  background: var(--clr-theme-1);
  transform: scale(1.4);
  box-shadow: 0 0 15px rgba(14,132,225,0.5);
}

.progress-dot:hover {
  background: var(--clr-theme-1);
}

/* Footer */
.location-footer {
  text-align: center;
  padding: 40px 0;
}

.btn-outline-loc {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 40px;
  border: 2px solid var(--clr-theme-1);
  border-radius: 60px;
  font-size: 16px;
  font-weight: 600;
  color: var(--clr-theme-1);
  background: transparent;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-outline-loc:hover {
  background: var(--clr-theme-1);
  color: white;
  gap: 15px;
}

/* Section header center alignment */
.section-header {
  text-align: center;
}

.section-header h1,
.section-header p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.bd-ud-section-subtitle {
  text-align: center;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive */
@media (max-width: 992px) {
  .block-content { gap: 40px; }
  .expertise-content h3 { font-size: 28px; }
  
  .expertise-image,
  .expertise-image img {
    height: 300px;
  }
}

@media (max-width: 768px) {
  /* Disable scroll snap on mobile - normal scrolling */
  .scroll-container {
    scroll-snap-type: none;
    height: auto;
    overflow-y: visible;
  }
  
  .expertise-block {
    height: auto;
    scroll-snap-align: none;
    padding: 60px 0;
  }
  
  .block-content,
  .expertise-block:nth-child(odd) .block-content,
  .expertise-block:nth-child(even) .block-content {
    flex-direction: column !important;
    gap: 30px;
    text-align: center;
  }

  .expertise-image {
    width: 100%;
    max-width: 500px;
    height: 280px;
    margin: 0 auto;
  }

  .expertise-image img {
    height: 280px;
  }

  .expertise-tags { justify-content: center; }
  .expertise-content h3 { font-size: 26px; }
  
  .location-tag {
    top: 10px;
    left: 10px;
    font-size: 16px;
    padding: 6px 16px;
  }
  
  .region-badge {
    bottom: 10px;
    right: 10px;
    font-size: 12px;
    padding: 6px 16px;
  }
  
  /* Hide progress dots on mobile */
  .scroll-progress {
    display: none;
  }
}

@media (max-width: 480px) {
  .section-title { font-size: 28px; }
  .expertise-content h3 { font-size: 24px; }
  
  .expertise-image,
  .expertise-image img {
    height: 220px;
  }
}

/* Remove duplicate selectors - keep only one version */

/*  */
/* Why Choose Us - Bullet Points Style */
.why-choose-area {
  position: relative;
  overflow: hidden;
}

.why__list-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.why__list-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px 30px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(14, 132, 225, 0.1);
}

.why__list-item:hover {
  transform: translateX(10px);
  box-shadow: 0 20px 40px rgba(14, 132, 225, 0.15);
  border-color: rgba(14, 132, 225, 0.3);
}

.why__list-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.why__list-item:hover .why__list-icon {
  transform: scale(1.1);
  background: #0E84E1 !important;
  color: white !important;
}

.why__list-content {
  flex: 1;
}

.why__list-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.why__list-item:hover .why__list-content h3 {
  color: #0E84E1 !important;
}

.why__list-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* CTA Button */
.why__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  font-weight: 600;
  font-size: 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  min-width: 220px;
  border: 2px solid;
  text-decoration: none;
  color: white;
  gap: 10px;
}

.why__btn:hover {
  background: #0c76ca !important;
  border-color: #0c76ca !important;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(14, 132, 225, 0.25);
  color: white;
}

.why__btn i {
  transition: transform 0.3s ease;
}

.why__btn:hover i {
  transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .why-choose-area {
    padding: 100px 0;
  }
  
  .why__list-item {
    padding: 20px 25px;
  }
  
  .why__list-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .why__list-content h3 {
    font-size: 18px;
  }
  
  .why__list-content p {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .why-choose-area {
    padding: 80px 0;
  }
  
  .why__list-item {
    padding: 20px;
    gap: 15px;
  }
  
  .why__list-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  
  .why__list-content h3 {
    font-size: 17px;
    margin-bottom: 5px;
  }
  
  .why__list-content p {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .why__btn {
    padding: 14px 30px;
    font-size: 15px;
    min-width: 200px;
  }
}

@media (max-width: 575px) {
  .why__list-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }
  
  .section__title-one h2 {
    font-size: 24px;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wow.fadeInUp {
  animation: fadeInUp 0.8s ease forwards;
}

/*  */
/* Custom column for 5 cards in one row */
.col-xl-2-4 {
  flex: 0 0 auto;
  width: 20%;
  padding-left: 12px;
  padding-right: 12px;
}

/* City Support Section */
.city-support-area {
  position: relative;
  overflow: hidden;
}

.city__card {
  background: #ffffff;
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.5s ease;
  height: 100%;
  border: 1px solid black;
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
}

.city__card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  transition: all 0.5s ease;
  z-index: 1;
}

.city__card:hover .city__card-overlay {
  /* background: rgba(14, 132, 225, 0.85); */
  /* background: rgba(255, 255, 255, 0.4); */
  background: linear-gradient(
  to top,
  rgba(0, 0, 0, 0.9),
  rgba(0, 0, 0, 0.2)
);

}

.city__card-inner {
  position: relative;
  z-index: 2;
  padding: 30px 20px;
  width: 100%;
  transition: all 0.5s ease;
}

.city__card:hover .city__card-inner {
  transform: scale(1.05);
}

.city__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(14, 132, 225, 0.25);
  border-color: rgba(14, 132, 225, 0.3);
  
}

.city__icon-wrapper {
  margin-bottom: 20px;
}

.city__icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: white;
  margin: 0 auto;
  transition: all 0.4s ease;
  box-shadow: 0 10px 20px rgba(14, 132, 225, 0.2);
}

.city__card:hover .city__icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.3);
  background: white !important;
  color: #0E84E1 !important;
}

.city__card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 15px;
}

.city__card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: linear-gradient(135deg, #0E84E1, #3ba0ff);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.city__card:hover h3 {
  color: white !important;
}

.city__card:hover h3::after {
  background: white;
}

.city__services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 15px;
}

.city__service-tag {
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 500;
  display: inline-block;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.city__card:hover .city__service-tag {
  background: rgba(255, 255, 255, 0.2) !important;
  color: white !important;
  border-color: rgba(255, 255, 255, 0.3);
}

.city__service-tag:hover {
  transform: translateY(-2px);
  background: white !important;
  color: #0E84E1 !important;
}

.city__note {
  margin-top: 30px;
}

.city__note p {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(14, 132, 225, 0.1);
}

/* Responsive Styles */
@media (max-width: 1199px) {
  .col-xl-2-4 {
    width: 25%; /* 4 cards on medium desktop */
  }
  
  .city__card {
    min-height: 300px;
  }
  
  .city__card h3 {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  .col-xl-2-4 {
    width: 33.333%; /* 3 cards on tablet */
  }
  
  .city-support-area {
    padding: 80px 0 60px;
  }
  
  .city__card {
    min-height: 280px;
  }
  
  .city__icon {
    width: 60px;
    height: 60px;
    font-size: 26px;
  }
  
  .city__card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 12px;
  }
  
  .city__service-tag {
    padding: 5px 10px;
    font-size: 10px;
  }
}

@media (max-width: 767px) {
  .col-xl-2-4 {
    width: 50%; /* 2 cards on mobile */
  }
  
  .city-support-area {
    padding: 60px 0 40px;
  }
  
  .city__card {
    min-height: 260px;
  }
  
  .city__icon {
    width: 55px;
    height: 55px;
    font-size: 24px;
  }
  
  .city__note p {
    font-size: 14px !important;
    padding: 15px !important;
    border-radius: 30px !important;
  }
}

@media (max-width: 575px) {
  .col-xl-2-4 {
    width: 100%; /* 1 card on small mobile */
  }
  
  .city__card {
    min-height: 250px;
  }
  
  .city__service-tag {
    padding: 5px 10px;
    font-size: 11px;
  }
  
  .section__title-one h2 {
    font-size: 24px;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wow.fadeInUp {
  animation: fadeInUp 0.8s ease forwards;
}

/*  */
/* ONLY BUTTON SPACING & ALIGNMENT FOR MOBILE */
@media (max-width: 767px) {
  .bd-ud-cta-btn {
    text-align: center !important;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    width: 100%;
  }
  
  .bd-ud-cta-btn .bd-ud-btn {
    margin: 0 !important;
    width: 100%;
    max-width: 300px;
    display: inline-flex;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .bd-ud-cta-btn .bd-ud-btn {
    max-width: 100%;
  }
}

@media (max-width: 380px) {
  .bd-ud-cta-btn {
    gap: 12px;
  }
}

/*  */
/* fontsize fixed */

/* ================================
   CONSISTENT FONT SIZES ACROSS ALL BREAKPOINTS
================================ */
/* ================================
   CONSISTENT FONT SIZES ACROSS ALL BREAKPOINTS
   (Excluding Industries Section)
================================ */

/* Base font size - consistent root */
html {
  font-size: 16px;
}

/* Main Headings - Consistent across all devices */
h1, 
.bd-ud-breadcrumb__title h1,
.solutions-hero-content .hero-title,
.career-hero-title {
  font-size: 48px !important;
  line-height: 1.2 !important;
}

/* EXCLUDING industries section headings */
h2:not(.industry__card h2):not(.industries-hero h2),
.bd-ud-section-title h2:not(.industry__card .bd-ud-section-title h2),
.section__title-one h2:not(.industry__card .section__title-one h2),
.section-title h2:not(.industry__card .section-title h2),
.how-we-work h2:not(.industry__card .how-we-work h2),
.technology-stack-area h2:not(.industry__card .technology-stack-area h2),
.choose-section h2:not(.industry__card .choose-section h2),
.diff-heading h2:not(.industry__card .diff-heading h2),
.global-title:not(.industry__card .global-title),
.quality-left h2:not(.industry__card .quality-left h2),
.cert-heading h2:not(.industry__card .cert-heading h2),
.bd-ud-cta-title-wrapper h2:not(.industry__card .bd-ud-cta-title-wrapper h2),
.bd-ud-history-title:not(.industry__card .bd-ud-history-title),
.trust-title h2:not(.industry__card .trust-title h2),
.section__title-one.s-2 h2:not(.industry__card .section__title-one.s-2 h2) {
  font-size: 42px !important;
  line-height: 1.2 !important;
  font-weight: 700 !important;
}

/* EXCLUDING industries section h3 */
h3:not(.industry__card h3):not(.industry-card h3),
.solution__content h3:not(.industry__card .solution__content h3),
.service__item-content h3:not(.industry__card .service__item-content h3),
.choose__item h3:not(.industry__card .choose__item h3),
.bd-ud-core-value-title:not(.industry__card .bd-ud-core-value-title),
.model-title:not(.industry__card .model-title),
.benefit-title:not(.industry__card .benefit-title),
.job-title:not(.industry__card .job-title),
.process-step h3:not(.industry__card .process-step h3),
.team__founder-text .contact a:not(.industry__card .team__founder-text .contact a),
.et-team-single-title:not(.industry__card .et-team-single-title),
.case-study-content h3:not(.industry__card .case-study-content h3),
.blog-title:not(.industry__card .blog-title),
.sidebar__widget-title:not(.industry__card .sidebar__widget-title),
.faq__topic-content h4 a:not(.industry__card .faq__topic-content h4 a) {
  font-size: 24px !important;
  line-height: 1.3 !important;
}

/* EXCLUDING industries section h4 */
h4:not(.industry__card h4):not(.industry-card h4),
.sidebar__widget-title:not(.industry__card .sidebar__widget-title),
.rc__title:not(.industry__card .rc__title),
.footer__title h4:not(.industry__card .footer__title h4),
.bd-ud-footer__title h4:not(.industry__card .bd-ud-footer__title h4),
.office-item h4:not(.industry__card .office-item h4),
.team__founder-item .title:not(.industry__card .team__founder-item .title),
.author-info h4:not(.industry__card .author-info h4),
.accordion-button:not(.industry__card .accordion-button),
.et-news2-title:not(.industry__card .et-news2-title),
.et-news3-title:not(.industry__card .et-news3-title) {
  font-size: 18px !important;
  line-height: 1.4 !important;
}

/* EXCLUDING industries section paragraphs */
p:not(.industry__card p):not(.industry-card p),
.section-description:not(.industry__card .section-description),
.hero-description:not(.industry__card .hero-description),
.about__quote-content h3:not(.industry__card .about__quote-content h3),
.solution__content p:not(.industry__card .solution__content p),
.choose__item p:not(.industry__card .choose__item p),
.tech-card p:not(.industry__card .tech-card p),
.benefit-description:not(.industry__card .benefit-description),
.job-description:not(.industry__card .job-description),
.step-content p:not(.industry__card .step-content p),
.testimonial-box-item p:not(.industry__card .testimonial-box-item p),
.quality-left p:not(.industry__card .quality-left p),
.global-center p:not(.industry__card .global-center p),
.cert-heading p:not(.industry__card .cert-heading p),
.bd-ud-cta-text:not(.industry__card .bd-ud-cta-text),
.leadership-text:not(.industry__card .leadership-text),
.diff-heading p:not(.industry__card .diff-heading p),
.section__title-one p:not(.industry__card .section__title-one p),
.model-description:not(.industry__card .model-description) {
  font-size: 16px !important;
  line-height: 1.6 !important;
}

/* Small text - EXCLUDING industries section */
.small-text:not(.industry__card .small-text),
.blog-meta:not(.industry__card .blog-meta),
.job-meta:not(.industry__card .job-meta),
.case-study-meta:not(.industry__card .case-study-meta),
.news__item-meta:not(.industry__card .news__item-meta),
.comment-date:not(.industry__card .comment-date),
.post-date:not(.industry__card .post-date),
.article-meta:not(.industry__card .article-meta),
.rc__meta span:not(.industry__card .rc__meta span),
.case__meta .meta__item p:not(.industry__card .case__meta .meta__item p),
.tech-tag:not(.industry__card .tech-tag),
.tag:not(.industry__card .tag),
.expertise-tag:not(.industry__card .expertise-tag),
.location-tag:not(.industry__card .location-tag),
.region-badge:not(.industry__card .region-badge) {
  font-size: 14px !important;
  line-height: 1.4 !important;
}

/* ================================
   RESPONSIVE BREAKPOINT ADJUSTMENTS
   (Excluding Industries Section)
================================ */

/* Laptop Screens (1200px - 1400px) */
@media (max-width: 1400px) and (min-width: 1200px) {
  h1, .bd-ud-breadcrumb__title h1, .solutions-hero-content .hero-title {
    font-size: 44px !important;
  }
  
  h2:not(.industry__card h2):not(.industries-hero h2),
  .bd-ud-section-title h2:not(.industry__card .bd-ud-section-title h2),
  .section__title-one h2:not(.industry__card .section__title-one h2) {
    font-size: 38px !important;
  }
  
  h3:not(.industry__card h3):not(.industry-card h3) {
    font-size: 22px !important;
  }
}

/* Tablet Landscape (992px - 1199px) */
@media (max-width: 1199px) {
  h1, .bd-ud-breadcrumb__title h1, .solutions-hero-content .hero-title {
    font-size: 40px !important;
  }
  
  h2:not(.industry__card h2):not(.industries-hero h2),
  .bd-ud-section-title h2:not(.industry__card .bd-ud-section-title h2),
  .section__title-one h2:not(.industry__card .section__title-one h2) {
    font-size: 36px !important;
  }
  
  h3:not(.industry__card h3):not(.industry-card h3) {
    font-size: 22px !important;
  }
  
  p:not(.industry__card p):not(.industry-card p),
  .section-description:not(.industry__card .section-description),
  .hero-description:not(.industry__card .hero-description) {
    font-size: 15px !important;
  }
}

/* Tablet Portrait (768px - 991px) */
@media (max-width: 991px) {
  h1, .bd-ud-breadcrumb__title h1, .solutions-hero-content .hero-title {
    font-size: 36px !important;
  }
  
  h2:not(.industry__card h2):not(.industries-hero h2),
  .bd-ud-section-title h2:not(.industry__card .bd-ud-section-title h2),
  .section__title-one h2:not(.industry__card .section__title-one h2) {
    font-size: 32px !important;
  }
  
  h3:not(.industry__card h3):not(.industry-card h3) {
    font-size: 20px !important;
  }
  
  h4:not(.industry__card h4):not(.industry-card h4) {
    font-size: 18px !important;
  }
  
  p:not(.industry__card p):not(.industry-card p),
  .section-description:not(.industry__card .section-description),
  .hero-description:not(.industry__card .hero-description) {
    font-size: 15px !important;
    line-height: 1.5 !important;
  }
}

/* Mobile (576px - 767px) */
@media (max-width: 767px) {
  h1, .bd-ud-breadcrumb__title h1, .solutions-hero-content .hero-title {
    font-size: 32px !important;
  }
  
  h2:not(.industry__card h2):not(.industries-hero h2),
  .bd-ud-section-title h2:not(.industry__card .bd-ud-section-title h2),
  .section__title-one h2:not(.industry__card .section__title-one h2) {
    font-size: 28px !important;
  }
  
  h3:not(.industry__card h3):not(.industry-card h3) {
    font-size: 20px !important;
  }
  
  h4:not(.industry__card h4):not(.industry-card h4) {
    font-size: 18px !important;
  }
  
  p:not(.industry__card p):not(.industry-card p),
  .section-description:not(.industry__card .section-description),
  .hero-description:not(.industry__card .hero-description) {
    font-size: 15px !important;
    line-height: 1.5 !important;
  }
  
  .small-text:not(.industry__card .small-text),
  .blog-meta:not(.industry__card .blog-meta),
  .job-meta:not(.industry__card .job-meta),
  .tag:not(.industry__card .tag) {
    font-size: 13px !important;
  }
}

/* Small Mobile (below 575px) */
@media (max-width: 575px) {
  h1, .bd-ud-breadcrumb__title h1, .solutions-hero-content .hero-title {
    font-size: 28px !important;
  }
  
  h2:not(.industry__card h2):not(.industries-hero h2),
  .bd-ud-section-title h2:not(.industry__card .bd-ud-section-title h2),
  .section__title-one h2:not(.industry__card .section__title-one h2) {
    font-size: 24px !important;
  }
  
  h3:not(.industry__card h3):not(.industry-card h3) {
    font-size: 18px !important;
  }
  
  h4:not(.industry__card h4):not(.industry-card h4) {
    font-size: 16px !important;
  }
  
  p:not(.industry__card p):not(.industry-card p),
  .section-description:not(.industry__card .section-description),
  .hero-description:not(.industry__card .hero-description) {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }
  
  .small-text:not(.industry__card .small-text),
  .blog-meta:not(.industry__card .blog-meta),
  .job-meta:not(.industry__card .job-meta),
  .tag:not(.industry__card .tag) {
    font-size: 12px !important;
  }
}

/* Extra Small Mobile (below 400px) */
@media (max-width: 400px) {
  h1, .bd-ud-breadcrumb__title h1, .solutions-hero-content .hero-title {
    font-size: 24px !important;
  }
  
  h2:not(.industry__card h2):not(.industries-hero h2),
  .bd-ud-section-title h2:not(.industry__card .bd-ud-section-title h2),
  .section__title-one h2:not(.industry__card .section__title-one h2) {
    font-size: 22px !important;
  }
  
  p:not(.industry__card p):not(.industry-card p),
  .section-description:not(.industry__card .section-description),
  .hero-description:not(.industry__card .hero-description) {
    font-size: 13px !important;
  }
}

/* ================================
   SPECIFIC COMPONENT FIXES
   (Excluding Industries Section)
================================ */

/* Buttons - consistent across devices */
.bd-ud-btn:not(.industry__card .bd-ud-btn),
.solutions-btn:not(.industry__card .solutions-btn),
.industry-btn:not(.industry__card .industry-btn),
.model-btn:not(.industry__card .model-btn),
.cap-btn:not(.industry__card .cap-btn),
.cta-btn:not(.industry__card .cta-btn),
.why__btn:not(.industry__card .why__btn),
.service__btn1:not(.industry__card .service__btn1),
.blog-read-btn:not(.industry__card .blog-read-btn),
.filter-btn:not(.industry__card .filter-btn),
.comment__btn:not(.industry__card .comment__btn),
.pricing__btn:not(.industry__card .pricing__btn),
.contact__btn:not(.industry__card .contact__btn) {
  font-size: 15px !important;
  padding: 12px 28px !important;
}

@media (max-width: 575px) {
  .bd-ud-btn:not(.industry__card .bd-ud-btn),
  .solutions-btn:not(.industry__card .solutions-btn),
  .industry-btn:not(.industry__card .industry-btn),
  .model-btn:not(.industry__card .model-btn),
  .cap-btn:not(.industry__card .cap-btn),
  .cta-btn:not(.industry__card .cta-btn),
  .why__btn:not(.industry__card .why__btn),
  .service__btn1:not(.industry__card .service__btn1),
  .blog-read-btn:not(.industry__card .blog-read-btn),
  .filter-btn:not(.industry__card .filter-btn) {
    font-size: 14px !important;
    padding: 10px 24px !important;
  }
}

/* Navigation menu */
.bd-ud-main-menu nav ul > li > a:not(.industry__card .bd-ud-main-menu nav ul > li > a),
.main-menu ul li a:not(.industry__card .main-menu ul li a) {
  font-size: 15px !important;
}

@media (max-width: 1199px) {
  .bd-ud-main-menu nav ul > li > a:not(.industry__card .bd-ud-main-menu nav ul > li > a) {
    font-size: 14px !important;
  }
}

/* Testimonial text - Excluding industries */
.testimonial-box-item p:not(.industry__card .testimonial-box-item p),
.testimonial__text p:not(.industry__card .testimonial__text p),
.bd-ud-testimonial-content p:not(.industry__card .bd-ud-testimonial-content p) {
  font-size: 16px !important;
  line-height: 1.6 !important;
}

@media (max-width: 767px) {
  .testimonial-box-item p:not(.industry__card .testimonial-box-item p),
  .testimonial__text p:not(.industry__card .testimonial__text p) {
    font-size: 15px !important;
  }
}

/* Counter numbers */
.counter__item-number h2:not(.industry__card .counter__item-number h2),
.stat-number:not(.industry__card .stat-number),
.counter__number h2:not(.industry__card .counter__number h2) {
  font-size: 48px !important;
}

@media (max-width: 991px) {
  .counter__item-number h2:not(.industry__card .counter__item-number h2),
  .stat-number:not(.industry__card .stat-number),
  .counter__number h2:not(.industry__card .counter__number h2) {
    font-size: 40px !important;
  }
}

@media (max-width: 575px) {
  .counter__item-number h2:not(.industry__card .counter__item-number h2),
  .stat-number:not(.industry__card .stat-number),
  .counter__number h2:not(.industry__card .counter__number h2) {
    font-size: 32px !important;
  }
}

/* about page  */
/* Testimonial Section - Responsive Fixes */



/* navbar  */

/* Fix navbar alignment between 1400px and 1200px */
@media (min-width: 1200px) and (max-width: 1399px) {
  /* Reduce logo size slightly */
  .bd-ud-logo img.site-logo {
    height: 55px !important;
    width: auto !important;
  }
  
  /* Adjust column widths for better spacing */
  .bd-ud-header-bottom .row .col-xl-2 {
    width: 18% !important;
  }
  
  .bd-ud-header-bottom .row .col-xl-7 {
    width: 55% !important;
  }
  
  .bd-ud-header-bottom .row .col-xl-3 {
    width: 27% !important;
  }
  
  /* Compact menu items */
  .bd-ud-main-menu nav ul > li {
    margin-right: 25px !important;
  }
  
  .bd-ud-main-menu nav ul > li > a {
    font-size: 14px !important;
    padding: 25px 0 !important;
  }
  
  /* Make "GET APPOINTMENT" button smaller */
  .bd-ud-btn {
    padding: 0 20px !important;
    font-size: 12px !important;
    line-height: 48px !important;
    height: 48px !important;
  }
}

/* footer */
/* Fix footer overlapping between 1400px and 1200px */
@media (min-width: 1200px) and (max-width: 1399px) {
  /* Reduce column widths for better spacing */
  .bd-ud-footer-top .row .col-xxl-3.col-xl-3 {
    width: 25% !important;
  }
  
  .bd-ud-footer-top .row .col-xxl-2.col-xl-2 {
    width: 16.67% !important;
  }
  
  .bd-ud-footer-top .row .col-xxl-4.col-xl-4 {
    width: 33.33% !important;
  }
  
  /* Reduce font sizes in footer widgets */
  .bd-ud-footer__title h4 {
    font-size: 16px !important;
    margin-bottom: 20px !important;
  }
  
  .bd-ud-footer-link ul li a {
    font-size: 13px !important;
  }
  
  .bd-ud-footer-content p {
    font-size: 13px !important;
    line-height: 1.5 !important;
    margin-bottom: 20px !important;
  }
  
  .bd-ud-footer-contact ul li a {
    font-size: 12px !important;
  }
  
  /* Reduce padding in footer widgets */
  .bd-ud-footer__widget {
    margin-bottom: 40px !important;
  }
  
  .bd-ud-footer-link ul li {
    margin-bottom: 12px !important;
  }
  
  /* Adjust newsletter section */
  .bd-ud-email-subscribe {
    padding: 25px !important;
  }
  
  .bd-ud-email-subscribe p {
    font-size: 12px !important;
    margin-bottom: 20px !important;
  }
  
  .bd-ud-subscribe-form input {
    height: 48px !important;
    font-size: 13px !important;
    padding: 0 50px 0 15px !important;
  }
  
  .bd-ud-subscribe-form button {
    height: 48px !important;
    font-size: 14px !important;
    margin-bottom: 20px !important;
  }
  
  /* Reduce spacing between columns */
  .bd-ud-footer-top .container .row {
    margin-left: -10px !important;
    margin-right: -10px !important;
  }
  
  .bd-ud-footer-top .container .row > [class*="col-"] {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  
  /* Adjust legal section spacing */
  .legal.mt-20 {
    margin-top: 15px !important;
  }
  
  .legal .bd-ud-footer__title h4 {
    margin-bottom: 15px !important;
  }
}