@charset "utf-8";

/*..............embedded fonts..............*/
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
/*..............embedded fonts..............*/


:root {
  /* General Transitions */
  --transition-common: all 0.4s ease 0s;

  /* Colors */
  --color-primary: #1C85EB;
  --color-secondary: #C89637;
  --color-body: #2F3D50;
  

  --color-white: #FFFFFF;
  --color-black: #000;
  --color-heading: #052750;
  /* Font Settings */
  --body-font: "Inter", sans-serif;
  --heading-font: "Inter", sans-serif;


  --font-xxl: clamp(1.875rem, 0.865rem + 2.692vw, 4.063rem);
  /*65 - 32*/
  --font-xl: clamp(1.75rem, 1.115rem + 1.692vw, 3.125rem);
  /*50 - 28*/
  --font-lg: clamp(1.125rem, 0.952rem + 0.462vw, 1.5rem);
  /*24 - 18*/
  --font-md: clamp(1rem, 0.915rem + 0.177vw, 1.125rem);
  /*18 - 16*/
  --font-sm: clamp(1rem, 0.915rem + 0.177vw, 1.125rem);
  /*18 - 16*/
  --font-xsm: clamp(0.938rem, 0.909rem + 0.077vw, 1rem);
  /*16 - 15*/

  --fz-body: clamp(1rem, 0.915rem + 0.177vw, 1.125rem);
  /*16 - 15*/

  /* Layout Adjustments */
  --gap-100: 100px;
  --gap-50: 50px;
  --gap-40: 40px;
  --gap-30: 30px;
  --gap-20: 20px;

  /* Form Styling */
  --form-height: 56px;
  --form-font-color: var(--color-heading);
  --form-placeholder-color: #8B8B8B;
  --form-holder-bg: #FDFDFF;
  --form-border-radius: 50px;
  --form-border-color: #0000001A;

  --container-width: 1440px;
  --c-calc: calc((100vw - var(--container-width))/2);
}


/*..............common styles..............*/
html {
  overflow-x: hidden;
}

body { margin: 0; padding: 0; font-family: var(--body-font); font-size: var(--fz-body); color: var(--color-body); overflow-x: hidden; font-weight: 400; }

/* --------- Global => Typography --------- */
h1, h2, h3, h4, h5, h6 { margin: 0 0 20px; font-family: var(--heading-font); color: var(--color-heading); }

:is(h1, h2, h3, h4, h5, h6):last-child { margin-bottom: 0; }

h1 { font-size: var(--font-xxl); font-weight: 600; }

h2 { font-size: var(--font-xl); font-weight: 600;}

h3 { font-size: var(--font-lg); font-weight: 500;}

h4 { font-size: var(--font-md); }

h5 { font-size: var(--font-sm); }

h6 { font-size: var(--font-sm); font-family: var(--body-font); font-weight: 600; letter-spacing: 3px; }

p { margin: 0 0 var(--gap-20); }

p:last-child { margin-bottom: 0; }

p strong { font-weight: 600; }

.ff-body-all * { font-family: var(--body-font); }

.img-box img { position: absolute; width: 100%; height: 100%; inset: 0; object-fit: cover; -webkit-transition: var(--transition-common); -moz-transition: var(--transition-common); -ms-transition: var(--transition-common); -o-transition: var(--transition-common); }
.img-box:hover img { transform: scale(1.1); -webkit-transform: scale(1.1); -moz-transform: scale(1.1); -ms-transform: scale(1.1); -o-transform: scale(1.1); }
ul { margin: 0; padding: 0; list-style: none; }

/* --------- Global => Typography --------- */

img { max-width: 100%; user-select: none; -webkit-user-drag: none; }

figure { margin: 0; }

a, img { border: 0; text-decoration: none; outline: none; }

a, a:link, a:visited, a:focus, a:hover { color: var(--color-primary); }

a:hover { text-decoration: none; }


.form-group,
.form-check {
  margin-bottom: 16px;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0;
}

.form-check .form-check-input {
  float: none;
  margin: 0 !important;
}

.form-control {
  height: var(--form-height);
  background-color: var(--form-holder-bg) !important;
  border: 0 !important;
  border-radius: var(--form-border-radious) !important;
  box-shadow: none !important;
  resize: none;
  padding: 5px 24px !important;
}

input,
textarea,
select,
.form-control {
  font-family: var(--body-font);
  font-weight: 500;
  outline: none;
  font-size: clamp(1rem, 0.942rem + 0.154vw, 1.125rem) !important;
  color: #424242 !important;
}

input[type="submit"] {
  font-family: var(--body-font);
  transition: all 0.3s ease 0s;
  outline: none;
}

input:not([type="submit"]) {
  height: var(--form-height);
}

select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px !important;
  background-image: url(../images/btm-arrow.svg) !important;
  background-repeat: no-repeat;
  background-position: 96% center;
  background-size: 12px;
}

input.form-control,
textarea.form-control,
select.form-select {
  border: 1px solid var(--form-border-color) !important;
  box-shadow: none !important;
  resize: none;
  background-color: var(--form-holder-bg) !important;
  padding: 15px 24px !important;
  color: var(--form-font-color) !important;
  
}

textarea.form-control {
  height: 140px !important;
  padding-top: 20px !important;
}

form label {
  transition: all 0.4s;
}

.form-floating>label {
  background-color: #fffaf1;
  padding: 0 10px;
  font-size: clamp(0.96875rem, 0.9327rem + 0.1603vw, 1.125rem);
  font-weight: 450;
  color: var(--form-placeholder-color);
  line-height: 1;
  height: auto;
  transform: scale(1) translateY(13px) translateX(14px);
  transition: all 0.4s;
  background: transparent;
  overflow: initial;
  top: 6px;
}

input[type="checkbox"] {
  width: 25px;
  height: 25px !important;
  border: 1px solid #923895 !important;
  border-radius: 3px !important;
  box-shadow: none !important;
}

label.form-check-label {
  font-size: clamp(0.875rem, 0.76rem + 0.308vw, 1.125rem);
  margin-bottom: 0 !important;
}

.form-check-input:checked[type=checkbox] {
  background-color: #923895 !important;
}

::placeholder {
  color: var(--form-placeholder-color) !important;
  opacity: 1;
  display: none;
  font-weight: 400;
}

::-ms-input-placeholder {
  color: var(--form-placeholder-color) !important;
  display: none;
  font-weight: 400;
}

textarea.form-control::placeholder {
  color: var(--form-placeholder-color) !important;
  display: none;
  font-weight: 400;
}

.form-floating>.form-control-plaintext~label,
.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label,
.form-floating>.form-select~label {
  transform: translateY(-16px) translateX(14px);
  height: auto;
  line-height: 1;
  font-size: 14px;
  color: var(--form-placeholder-color);
  padding: 5px 10px;
  background-color: #fff;
  border-radius: 20px;
  border: 1px solid var(--form-border-color);
}

.form-floating>.form-control-plaintext~label::after,
.form-floating>.form-control:focus~label::after,
.form-floating>.form-control:not(:placeholder-shown)~label::after,
.form-floating>.form-select~label::after {
  padding: 0 !important;
  display: none;
}


/* --------- Global => Button --------- */
.btn {
  min-width: 152px;
  justify-content: space-between;
  font-family: var(--body-font);
  font-weight: 600;
  letter-spacing: 2px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  display: inline-flex;
  align-items: center;
  vertical-align: top;
  color: #fff !important;
  padding: 16px 33px;
  font-size: 16px;
  line-height: 1;
  border-radius: 15px;
  background: linear-gradient(0deg, #1254BA 1%, #38B3FA 100%);
  text-transform: capitalize;
  box-shadow: 0 4px 14px 0 #6CADDD;
}



.btn:hover {
  transform: translate(0px, 0px);
  transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  color: #fff !important;
  background: linear-gradient(0deg, #38B3FA 1%, #1254BA 100%);
}

.btn:hover span {
  transform: translate(0px, 0px);
  border-color: #10224B !important;
}

.btn:hover span::before {
  background-color: var(--color-secondary);
  transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
}

.btn:hover span::after {
  background-color: var(--color-white);
  width: 100%;
  height: 100%;
  left: -80px;
  transform: scale(12);
  transition: all 1s ease;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
}

.btn:hover span img {
  transform: translateX(5px);
  filter: brightness(0) invert(1);
}


.btn-white {
  color: var(--color-black) !important
}

.btn-white::before {
  background-color: var(--color-white);
}

.btn-white span::after {
  background-color: var(--color-secondary);
}

.btn-white:hover span::before {
  background-color: var(--color-secondary);
}

.btn-white:hover span::after {
  background-color: var(--color-white);
}


.btn-submit input[type="submit"] {
  position: absolute;
  inset: 0;
  z-index: 4;
  opacity: 0;
}

.btn-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* --------- Global => Button --------- */


/* --------- Global => Checkbox and Radio --------- */
.builder_radiobox ul li label {
  font-weight: normal;
}

.builder_radiobox ul li input[type="radio"] {
  opacity: 0;
}

.builder_radiobox ul li input[type="radio"]:empty~label {
  position: relative;
  float: left;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 0 0 0 22px;
}

.builder_radiobox ul li input[type="radio"]:empty~label:before {
  position: absolute;
  display: block;
  top: 2px;
  bottom: 0;
  left: 0;
  content: "";
  width: 16px;
  height: 16px;
  background: url(../images/radiobutton.png) left top no-repeat;
}

.builder_radiobox ul li input[type="radio"]:checked~label:before {
  background: url(../images/radiobutton.png) left bottom no-repeat;
}

/* --------- Global => Checkbox and Radio --------- */


/* --------- Global => Misc --------- */
.grecaptcha-badge {
  visibility: hidden;
}

.chip {
  background: linear-gradient(290.1deg, #0A95DB 13.4%, #5FC1F8 86.6%);
  color: var(--color-white);
  font-weight: 450;
  border: 1px solid #FFFFFF;
  box-shadow: 0px 4px 10px 0px #73A7EA80;
  border-radius: 50px;
  padding: 4px;
  padding-right: 16px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
}

.chip .chip-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin-right: 8px;
}

.chip p {
  font-size: 16px;
  margin-bottom: 0;
}

.fancy-ancore a,
p>a {
  position: relative;
  background-image: linear-gradient(#cf303000 95%, currentColor 0, currentColor);
  background-position-y: bottom;
  background-repeat: no-repeat;
  background-size: 0 100%;
  text-decoration: none;
  transition: background-size .3s cubic-bezier(.79, .01, .22, .99) 0s, background-position 0s step-end .3s, color .3s;
}

.fancy-ancore a:hover,
p>a:hover {
  background-position-x: right;
  background-size: 100% 100%;
}

.footer-tel {
  display: flex;
  align-items: center;
  border: 1px solid rgba(10, 149, 219, 0.4);
  border-radius: 30px;
  padding: 16px;
  gap: 16px;
  max-width: 456px;
  margin-top: 30px;
}

.footer-tel p {
  margin-bottom: 0px;
}

.footer-tel h5 {
  font-family: var(--body-font);
  font-weight: 600;
}

/* --------- Global => Misc --------- */



/* --------- Global => Spacing --------- */
.common-padd {
  padding-top: 100px;
  padding-bottom: 100px;
}

.common-padd-sm {
  padding-top: 80px;
  padding-bottom: 80px;
}

.common-padd-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.common-padd-bottom {
  padding-bottom: 100px;
}

.common-padd-bottom-lg {
  padding-bottom: 150px;
}

.common-padd-top-lg {
  padding-top: 150px;
}

.common-padd-top {
  padding-top: 100px;
}

.mb-24 {
  margin-bottom: 24px;
}

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

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

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

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

.mt-10 {
  margin-top: 10px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-80 {
  margin-top: 80px;
}

hr {
  margin: 0;
}

/* --------- Global => Spacing --------- */



/* --------- Global => Scrollbar --------- */
::-webkit-scrollbar {
  width: 6px;
  height: 4px;
}

/* ::-webkit-scrollbar-track {box-shadow: inset 0 0 2px var(--color-secondary); }  */
::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 5px;
}

/* --------- Global => Scrollbar --------- */


/*-----Header design----------*/
.main-header {
  padding: 0;
  z-index: 999;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  top: 0;

}

.main-header .main-menu {
  margin-top: 63px;
  flex-grow: 1;
  position: relative;
}

.main-header .header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.main-menu ul {
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.main-menu ul li a {
  display: block;
  color: #fff;
  position: relative;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-family: var(--body-font);
}

.main-menu > ul >li >a {
  padding: 0px 0px 48px;
  border-radius: 50px;
  font-weight: 600;
  color: #CECECE;
  text-transform: uppercase;
  letter-spacing: 3px;
}




.main-menu ul li.menu-item-has-children a {
  opacity: 1;
  content: "";
  width: 100%;
}

.main-menu ul li span {
  margin-left: 10px;
}

.main-header.relative_header {
  background-color: #000000;
}

/*------css for new dropdown sub-menu start--------*/
.main-menu ul li.menu-item-has-children>a:after {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  content: "";
  position: absolute;
  top: 9%;
  box-sizing: border-box;
  height: 12px;
  width: 12px;
  transition: border-width 150ms ease-in-out;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  right: 0px;
  margin: 0 auto;
  border-style: solid;
  border-color: #CECECE;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(0, -50%);
}

.main-menu ul li.menu-item-has-children a:hover:after {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
   border-color: #ffffff;
}

.main-menu ul li.menu-item-has-children a {
  padding-right: 16px;
}

header .current-menu-item>a,
.main-menu>ul>li>a:hover {
  color: var(--color-white) !important;
  -webkit-text-stroke: .6px #fff;
}



.main-menu ul {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

.main-menu ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  perspective: 1000px;
  z-index: 100;
  color: #FFFFFF;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 0;
}

.main-menu ul li.out .sub-menu {
  opacity: 0;
  transform: scaleY(0) translateZ(0);
  visibility: hidden;
}

header .main-menu ul > li {
    position: relative;
    cursor: pointer;
    padding: 0 24px;
}

header .main-menu > ul > li::before {
    content: "/";
    position: absolute;
    left: 0px;
    top: 0;
}

header .main-menu ul > li:first-child::before {
    display: none;
}

header .main-menu ul li:hover ul {
  box-shadow: 0px 4px 10px 0px #00000014;
  opacity: 1;
  transform: scaleY(1) translateZ(0);
  visibility: visible;
  display: unset;
  transition: transform 0.3s, opacity 0.3s ease-out;
}


/* ---------- Submenu -------- */
header .main-menu ul .sub-menu {
  padding: 8px;
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  transform-origin: 50% 0;
  transform: scaleY(0) translateZ(0);
  transition: all .4s ease;
  width: 236px;
  overflow: hidden;
  box-shadow: none;
  opacity: 1 !important;
  visibility: hidden;
  display: block;
  background-color: #FFFFFF;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
}

header .main-menu ul .sub-menu li {
  position: relative;
  cursor: pointer;
  transition: all 600ms ease;
  padding: 12px 16px;
  background: rgba(250, 226, 197, 0);
  border: 1px solid #FFFFFF;
  border-radius: 8px;
  position: relative;
  justify-content: flex-start;
}

header .main-menu ul .sub-menu li.menu-item-has-children {
  z-index: 1;
}

header .main-menu ul .sub-menu li a {
  color: var(--color-heading) !important;
  display: inline-block;
  width: auto;
  padding: 0;
  position: static;
}

header .main-menu ul .sub-menu li a:after {
  content: "";
  background-image: url("../images/menu-line.svg");
  height: 12px;
  display: block;
  width: 100%;
  z-index: -1;
  background-size: 100% 100%;
  transform: scaleX(0);
  transition: var(--transition-common);
  transform-origin: left center;
  margin-top: -14px;
  position: relative;
}

header .main-menu ul .sub-menu li a::before {
  content: "";
  position: absolute;
  inset: 0;
}

header .main-menu ul .sub-menu li:hover {
  background: var(--color-primary);
  padding-left: 24px;
}

header .main-menu ul .sub-menu li:hover a {
  color: var(--color-white) !important;
}

header .main-menu ul .sub-menu li:hover a:after {
  transform: scaleX(1);
}

/* ---------- Submenu -------- */

/*------css for new dropdown sub-menu end--------*/
.banner-call, .manu-part { flex: 1; }
.logo-wrap { --width: 198px; text-align: center; z-index: 1; /*background: linear-gradient(135deg, #021033, #051c54);*/ width: var(--width); height: var(--width); border-radius: 50%; position: relative; /* top: -70px; */ left: 0; display: flex; flex-direction: column; justify-content: center; align-items: center; padding-bottom: 0px; padding-top: 35px; box-sizing: border-box; margin-top: -50px; }

.main-header .logo { transform: scale(1); transform-origin: center center; transition: all 0.8s ease; max-width: 139px; }

.main-header .logo a { display: inline-block; }


.nav_btn { color: #FFFFFF; font-size: 22px; text-align: right; display: none; }
.nav_close { display: none; color: #FFFFFF; }
/* .main-header.fixed { background: #fff; position: fixed; width: 100%; transition: all 0.4s; -ms-transition: all 0.4s; -webkit-transition: all 0.4s; } */

/*==========mobile menu=========*/
.main-header .hdr-rt { display: flex; justify-content: end; gap: 16px }
.main-header .hdr-rt.hdr-lt { gap: 50px; justify-content: flex-end; }
.main-header .user-sec { margin-left: 100px; display: flex; align-items: center; }

.menu-has-children.menu-has-children-open span img { -webkit-transition: all 0.4s ease; -moz-transition: all 0.4s ease; -ms-transition: all 0.4s ease; -o-transition: all 0.4s ease; transition: all 0.4s ease; }

.menu-has-children span img { transform: rotate(0deg); -webkit-transition: all 0.4s ease; -moz-transition: all 0.4s ease; -ms-transition: all 0.4s ease; -o-transition: all 0.4s ease; transition: all 0.4s ease; }


/*for header css*/


.hero-banner { min-height: 100vh; min-height: 100dvh; text-align: center; padding-top: 187px; margin: 20px 20px 0; border-radius: 20px; overflow: hidden; background-size: cover; background-repeat: no-repeat; background-position: center center; }

.banner-call a { font-size: clamp(1rem, 0.885rem + 0.308vw, 1.25rem); color: #2F3D50; font-weight: 600; display: flex; align-items: center; }
.banner-call a span { width: 38px; height: 38px; display: flex; background: linear-gradient(0deg, #1254BA 1%, #38B3FA 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 12px; } 
.banner-call a span img { max-width: 18px; } 
.banner-content p { max-width: 840px; margin: 0 auto 30px; font-size: clamp(1rem, 0.769rem + 0.615vw, 1.5rem); }

.banner-store { display: flex; align-items: center; justify-content: center; gap: 10px; } 
.banner-store a img { max-width: 13vw; }
.banner-store a { border: 2px solid #1C85EB; border-radius: 10px; padding: 3px; margin-bottom: 57px; }
.landing-iphone img { max-width: 61vw; }


.maintain-section .row { --bs-gutter-y: 30px; }
.service-item { display: flex; --img-width: 92px; } 
.service-item .img-wrap { flex-shrink: 0; width: var(--img-width); height: var(--img-width); border: 1px solid var( --color-primary); border-radius: 20px; background: #E0F0FF; display: flex; align-items: center; justify-content: center; margin-right: 15px; }
.service-content-wrap h3 { margin-bottom: 15px; }

.why-section { background: #F5F9FE; position: relative; z-index: 1;}
.why-section:after{position: absolute;content: '';background: url(../images/why-after.svg) no-repeat;width:100%;height: 100%;inset: 30px 0 0 0;background-repeat: no-repeat;background-position: top center; z-index: -1;}
.why-list { display: flex; align-items: center; } 
.why-ic { flex-shrink: 0; margin-right: 15px; } 
.why-list-content h3 { margin-bottom: 5px; } 
.why-content { margin-left: 60px; } 
.why-content ul li:not(:last-child) {margin-bottom: 35px}

/* ==================== Service Slider ==================== */
.swiper-nav-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}
.swiper-slide{height: auto;}
 .swiper-nav-buttons .swiper-button-prev,  .swiper-nav-buttons .swiper-button-next { position: static;}

 .swiper-button-prev,  .swiper-button-next {margin-top: 0; width: 56px; height: 56px; background: transparent; border: 1px solid #107EEA; border-radius: 15px; color: var(--color-primary); transition: 0.3s; display: flex; align-items: center; justify-content: center; }
 .swiper-button-prev:after,  .swiper-button-next:after { font-size: 20px; font-weight: 500; }
 .swiper-button-prev:hover,  .swiper-button-next:hover { background: linear-gradient(0deg, #1254BA 1%, #38B3FA 100%); color: #fff; border-color: var(--color-primary); box-shadow: 0 4px 10px rgba(28, 133, 235, 0.4); }
 .swiper-button-prev:after,  .swiper-button-next:after { display: none; }
 .swiper-button-prev:hover img,  .swiper-button-next:hover img{filter: brightness(0) invert(1);}
.serviceSwiper{overflow: inherit;} 
.service-card { padding: 7px 5px 30px; border-radius: 18px; background: #F4F8FD; transition: 0.3s; height: 100%; } 
.service-card .card-img { border-radius: 20px; overflow: hidden; position: relative; padding-bottom: 100%; } 
.service-card .card-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: 0.4s; } .service-card:hover .card-img img { transform: scale(1.05); } 
.service-card .card-content { padding: 20px 10px 10px; } 
.service-card .card-content h3 { font-size: 20px; font-weight: 600; margin-bottom: 12px; color: var(--color-heading); transition: 0.3s; } 
.service-card .card-content p { font-size: 15px; margin-bottom: 0; color: var(--color-body); transition: 0.3s; line-height: 1.6; } 
.service-card:hover, .service-card.active { background: var(--color-primary); border-color: var(--color-primary); } 
.service-card:hover .card-content h3, .service-card.active .card-content h3 { color: #fff; } 
.service-card:hover .card-content p, .service-card.active .card-content p { color: #E2F0FF; }
/* ==================== Service Slider ==================== */


.customer-section{background: #F4F7FA; position: relative; z-index: 1; overflow: hidden;}
.customer-section:after{position: absolute;content: '';background: url(../images/customer-after.svg) no-repeat;width:100%;height: 100%;inset: 30px 0 0 0;background-repeat: no-repeat;background-position: top center; z-index: -1;}

/* ==================== Customer Slider ==================== */

/* .customer-slider-wrapper { padding: 0 40px; }  */
.customer-slider-wrapper .swiper-wrapper { padding-bottom: 55px; }
.customer-card { background: #fff; border-radius: 20px; padding: 40px 32px 50px; text-align: center; position: relative; margin-top: 50px; box-shadow: 0 0px 27px hsl(212deg 24.59% 88.04% / 35%); height: 100%; } 
.customer-img {--size: 136px; width: var(--size); height: var(--size); border-radius: 50%; margin: -85px auto 20px; background: #F4F7FA; padding: 7px; position: relative; z-index: 2; } 
.customer-img span { border: 2px solid #1C85EB; display: flex; align-items: center; justify-content: center; border-radius: 50%; padding: 4px; } 
.customer-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; } 
.customer-rating { margin-bottom: 20px; display: flex; justify-content: center; gap: 4px; } 
.customer-rating svg { width: 25px; }
.customer-card h3 { font-weight: 500; margin-bottom: 0; } 
 


.customer-slider-wrapper .cust-prev:after, .customer-slider-wrapper .cust-next:after { display: none; } 
.customer-slider-wrapper .cust-prev { left: -70px; } 
.customer-slider-wrapper .cust-next { right: -70px; }
 @media (max-width: 1200px) { 
  .customer-slider-wrapper .cust-prev { left: 10px; } 
 .customer-slider-wrapper .cust-next { right: 10px; } 
}
/* ==================== Customer Slider ==================== */
.download-wrap{background: linear-gradient(0deg, #6CA2F2 , #CAE0FF 100%); position: relative; border-radius: 20px; z-index: 1; margin-top: 92px; padding: 30px 79px 93px;}
.download-wrap:after{position: absolute;content: '';background: url(../images/download-after.svg) no-repeat;width:100%;height: 100%;inset: 0 0 0 0;background-repeat: no-repeat;background-position: top right; z-index: -1;}

.download-wrap .img-wrap{ position: absolute; bottom: 0; right: -12%; z-index: 0;}
.download-app-wrap { margin-bottom: 20px; }

.download-left ul { display: flex; flex-wrap: wrap; gap: 5px 20px; max-width: 464px; } 
.download-left ul li { background: #FFFFFF; border: 1px solid #1254BA; border-radius: 12px; padding: 8px 10px 8px 44px; font-size: 14px; font-weight: 600; display: flex; align-items: flex-start; width: 218px; position: relative;     text-align: left;} 
.download-left ul li:before { position: absolute; content: ''; background: url(../images/blue-tick.svg); width: 30px; height: 30px; left: 8px; top: 8px; background-repeat: no-repeat; background-position: center center; background-size: 24px; }
.download-left ul li span { width: 30px; height: 30px; background: linear-gradient(0deg, #1254BA 1%, #38B3FA 100%); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-right: 8px; }

.download-right img { max-width: 16vw; }
.download-right img:last-child { margin-top: -178px; } 
.download-right img:first-child { margin-top: -82px; } 
.download-right { text-align: center; display: flex; gap: 10px; align-items: center; justify-content: space-around; }


/*===================== Page => Homepage ==========================*/





/* ------ Global => Footer ------- */
footer { background: var(--color-primary); position: relative; } 
.footer-col *, .footer-bottom * { color: var(--color-white); } 
.footer-col ul li:not(:last-child) { margin-bottom: 20px; } 
.footer-col ul li a { position: relative; color: var(--color-white); font-weight: 400; background-image: linear-gradient(#cf303000 95%, var(--color-heading) 0, var(--color-heading)); background-position-y: bottom; background-repeat: no-repeat; background-size: 0 100%; text-decoration: none; transition: background-size .3s cubic-bezier(.79, .01, .22, .99) 0s, background-position 0s step-end .3s, color .3s; } 
.footer-col ul li a:hover { color: var(--color-heading); background-position-x: right; background-position-y: bottom; background-size: 100% 100%; } 
.footer-bottom { padding: 24px 0; border-top: 1px solid #FFFFFF1A; text-align: center; }
.footer-col h2 { max-width: 500px; }
.footer-col ul { display: block; }
.footer-col ul li { width: 100%; }
.footer-col ul li  .footer-contact-item span { width: 40px; height: 40px; background: hsl(209.03deg 100% 93.92% / 10%); border: 1px solid #FFFFFF; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 12px; } 
.footer-contact-item { display: flex; align-items: center; font-size: 20px; font-weight: 600; margin-bottom: 15px; }
.footer-col h2 { max-width: 500px; } 
.footer-col p { font-size: clamp(1rem, 0.885rem + 0.308vw, 1.25rem); max-width: 540px;}

/* ------ Global => Footer ------- */

.page-template-default article ul { list-style: disc; margin: 0 0 24px; padding: 0 0 0 20px; }
.page-template-default:not(.home) header , .page-template-tpl-support header{position: relative;}
.page-template-default ol > li:not(:last-child) { margin: 0 0 20px; }
.page-template-default h2, .page-template-default h2 b { font-size: clamp(1.5rem, 1.154rem + 0.923vw, 2.25rem); font-weight: 800; }
.page-template-default ol > li strong, .page-template-default { font-weight: 500; }
.page-template-default ol > li::marker { font-weight: 700; }
/* .page-template-default:not(.home) .common-padd { padding-top: 24px; } */
.page-template-default:not(.home) header h1 { text-align: center; font-size: clamp(2.25rem, 1.731rem + 1.385vw, 3.375rem); font-weight: 700; }
.page-template-default ol, .page-template-default ul { padding-left: 1.3rem; }

.focus-sec { background: #E7F2F6; z-index: 1; }
.focus-sec:before {position:absolute;content: '';background: var(--color-secondary);width: 31%;height: 100%;right: 0;top: 0;z-index: -1;} 

.support-form label{font-weight: 600; margin-bottom: 10px}



/*Media Query css*/
.container {
  max-width: var(--container-width)
}

@media only screen and (max-width:1900px) {}

@media only screen and (max-width:1799px) {
  :root {
    --container-width: 1320px;
  }


}

@media only screen and (max-width:1599px) {
  :root {
    --container-width: 1280px;
  }
  .service-item{--img-width: 74px;}
  .service-item .img-wrap img { max-width: 32px; }

}


@media only screen and (max-width:1399px) {
  :root {
    --container-width: 1140px;
  }
  .swiper-button-prev, .swiper-button-next{width: 50px; height: 50px; border-radius: 8px;}
  .download-wrap{padding: 30px 50px 60px;}
  .why-content { margin-left: 30px; }

  .customer-slider-wrapper .cust-prev { left: -50px; }
  .customer-slider-wrapper .cust-next { right: -50px; }

  .footer-col p{max-width: 500px;}

  .maintenance-text .left-content { max-width: 590px; }
}

@media only screen and (max-width: 1199px) {

  :root {
    --container-width: 960px;
  }


  html:has(.main-header.mobile-menu-open) {
    overflow: hidden;
  }
  .logo-wrap { --width: 158px;}
  .maintain-section .row{--bs-gutter-y: 30px;}
  .service-item{flex-direction: column; justify-content: center; text-align: center;}
  .service-item .img-wrap{margin: 0 auto 15px;}
  .why-content { margin-left: 0; }

  .main-header .logo { max-width: 90px; }

  .customer-slider-wrapper .cust-prev { left: -30px; }
  .customer-slider-wrapper .cust-next { right: -30px; }


  .footer-col h2{margin: 0 auto 14px;}
  footer:before{top: -55px;  height: 70px;}
  .precision-section{padding-bottom: 150px;}

  .download-wrap .row { flex-direction: column-reverse; } 
  .download-left { text-align: center; margin-top: 30px; } 
  .download-left p { max-width: 600px; margin: 0 auto 30px; }
  .download-left ul{margin: 0 auto;     justify-content: center;}
  .download-right{justify-content: center;}
}

@media only screen and (max-width: 991px) {
  :root {
    --container-width: 95%;
  }
  .mb-50 { margin-bottom: 30px; }
  .common-padd { padding-top: 80px; padding-bottom: 80px; }
  .hero-banner{min-height: auto; padding-top: 136px;}
  .banner-store a img { max-width: 16vw; }
  .why-img{margin-bottom: 30px;}
  .why-img img { max-width: 20vw; }
  .service-content-wrap p { max-width: 400px; margin: 0 auto; }



  .swiper-nav-buttons { margin-top: 30px; }
  .swiper-button-prev, .swiper-button-next { width: 40px; height: 40px;}
  .swiper-button-prev img, .swiper-button-next img{max-width: 20px;}

  .customer-img { --size: 100px;}
  .customer-card{padding: 40px 22px ;}
  .customer-slider-wrapper .cust-next { right: -10px; }
  .customer-slider-wrapper .cust-prev { left: -10px; }


  .footer-col ul {  flex-direction: column; align-items: center; justify-content: center; }
  .footer-contact-item{    flex-direction: column; gap: 10px;}
  .footer-col ul li .footer-contact-item span{margin-right: 0;}
  .footer-col p { margin: 0 auto 30px; max-width: 550px; }
  .footer-contact-item{font-size: 16px;}
}

@media only screen and (max-width: 767px) {
  
  .common-padd { padding-top: 60px; padding-bottom: 60px; }
  .logo-wrap { --width: 134px; }
  .main-header .logo { max-width: 72px; }
  .main-header .header-row{flex-direction: column;}
  .banner-call{margin: 12px 0; order:2}
  .banner-call a span{margin: 0 auto 5px;}
  .banner-call a{flex-direction: column;}
  .manu-part{order:3}
  .hero-banner{padding-top: 206px;}
  .banner-store a img { max-width: 26vw; }
  .download-left ul li{width: 100%}
  .download-right img { max-width: 28vw; }
  .download-wrap { padding: 30px 20px 40px; }
  .download-app-wrap { margin-bottom: 20px; display: flex; align-items: center; justify-content: center; gap: 10px; }
  .download-app-wrap img { max-width: 132px; }
  .swiper-button-prev, .swiper-button-next { width: 30px; height: 30px; }
  .customer-slider-wrapper .cust-prev { left: -10px; }
  .customer-slider-wrapper .cust-next { right: -10px; }
  /* .customer-slider-wrapper { padding: 0 20px; } */
  .why-img img { max-width: 35vw; }
  .download-left ul li:before{top:4px}
	
	.page-template-default ol, .page-template-default ul {
		padding-left: 1rem;
	}
  
}

@media only screen and (max-width: 413px) {
  
}


@media only screen and (max-width: 359px) {
  


  

}