@import url(../fonts/icomoon/style.css);

@import url(../fonts/general-font/stylesheet.css);
:root {
  /* Font family */
  --Poppins: "Poppins";
  --WixMadeforDisplay: "Wix Madefor Display";
  --WorkSans: 'Work Sans';
  /* Background & Text color */
  --primaryColor1: #1c1c46;
  --primaryColor2: #f15b25;
  --primaryColorHover2: #d14715;
  --primaryColor3: #f1f0e7;
  --grey1: #fff9f7;
  --grey2: #c9ced9;
  --grey3: #a0a0a0;
  --grey4: #4B4B4B;
  --grey5: #B1B1B1;
  --grey6: #D9D9D9;
  --grey7: #FAFAFA;
  --bgColor1: #f1f0e7;
  --white: #fff;
  --white50: #ffffff80;
  --black: #000;
  --red: #DD9476;
  --lightBlue: #67C5FF;
  --purple: #9F9FFD;
  --blueGradient: linear-gradient(91deg, #2e5ed9 4.64%, #e757ff 95.81%);

  
  /* space */
  --bs-gutter-x: 15px;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

*,
*::before,
*::after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
}

html {
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  background-color: #f1f0e7;
  scroll-behavior: smooth;
  font-family: var(--Poppins);
  overflow-x: hidden;
  color: #000;
}

.wrapper {
  background-color: #f1f0e7;
  display: block;
  min-height: 100%;
}

.wrapper .btn.focus,
.wrapper .btn:focus {
  outline: none;
  box-shadow: none;
}

button:focus {
  outline: none;
}

.container {
  max-width: 1180px;
  padding: 0 20px;
}

.container-1280 {
  max-width: 1320px;
}

.page-link:focus {
  box-shadow: none;
}

a {
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}

p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.33;
  color: var(--blackColor);
}

.h1, h1 {
  font-size: 54px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}

.blue-text-gredient, h1 b {
  /* background: var(--blueGradient); */
  background: rgb(231, 87, 255);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(
    91.1deg,
    rgb(19, 56, 148),
    rgb(46, 94, 217),
    rgb(231, 87, 255),
    rgb(19, 56, 148)
  );
  background-size: 200% 200%;
  background-clip: text;
  -webkit-background-clip: text;
  animation: move 5s linear infinite;
}

@-webkit-keyframes move {
    0% {
      background-position: 0% center;
    }
    100% {
      background-position: -200% center;
    }
  }
  @-moz-keyframes move {
    0% {
      background-position: 0% center;
    }
    100% {
      background-position: -200% center;
    }
  }
  @keyframes move {
    0% {
      background-position: 0% center;
    }
    100% {
      background-position: -200% center;
    }
  }
  
h2 {
  font-size: 44px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 54px;
}

h3 {
  font-size: 34px;
  letter-spacing: 0;
  font-weight: 500;
  line-height: 50px;
}

h4 {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0;
}

li {
    list-style-type: none;
    text-align: left;
}

.row {
  --bs-gutter-x: 30px;
}

.small-container {
  padding: 0 92px;
}


/* Button common css */


.btn.btn-primary {
    min-height: 46px;
    padding: 20px 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
    border-radius: 42px;
    text-transform: uppercase;
    background-color: var(--primaryColor2);
    border: 1px solid var(--primaryColor2);
    box-shadow: none;
    outline: none;
    transition: all 0.3s;
}
  
.btn.btn-primary:focus,
.btn.btn-primary:hover {
    background-color: var(--primaryColorHover2);
    border-color: var(--primaryColorHover2);
}

.btn.btn-primary.btn-primary-white {background-color: #fff; color: var(--primaryColor2); padding: 15px 35px; border: 1px solid #fff;}
.btn.btn-primary.btn-primary-white:hover {background-color: transparent; color: #fff;}

.link-btn {
    color: var(--primaryColor2); font-size: 16px; font-weight: 600; line-height: normal; text-transform: uppercase; font-family: var(--WorkSans); font-weight: 500; display: inline-flex; align-items: center; justify-content: flex-start;
}
.link-btn .arrow-right {display: inline-block; width: 24px; height: 24px; margin-left: 3px; transition: all 0.8s ease-in-out;}

.link-btn:hover {color: var(--primaryColor2); }
.link-btn:hover .arrow-right{transform: translateX(10px); transition: all 0.8s ease-in-out;}
button {border: none; background-color: transparent; padding: 0;}

/* grid common css */

.grid-col-2 {display: grid; grid-template-columns: 1fr 1fr;}
.grid-col-3 {display: grid; grid-template-columns: repeat(3, 1fr);}
.grid-col-4 {display: grid; grid-template-columns: repeat(4, 1fr);}
.full-col {grid-column: 1/3;}


/* slider common css */

.swiper-pagination {font-size: 16px; font-weight: 600; letter-spacing: -1px; text-align: left; display: inline-block; width: auto; bottom: 30px;}

.swiper-button-next, 
.swiper-rtl .swiper-button-prev,
.swiper-button-prev, 
.swiper-rtl .swiper-button-next {width: 50px; height: 50px; background: var(--grey6); border-radius: 100%; position: absolute; bottom: 0; top: auto; right: 0; transition: all 0.4s ease-in-out;}

.swiper-button-prev, .swiper-rtl .swiper-button-next {transform: rotate(180deg); left: auto; right: 80px; transition: all 0.4s ease-in-out;}

.swiper-button-next:after, 
.swiper-button-prev:after {font-size: 0; background: url(../images/arrow-left.svg) no-repeat; background-position: center center; background-size: 24px; width: 24px; height: 24px; transition: all 0.4s ease-in-out;}

.swiper-button-next:hover, 
.swiper-rtl .swiper-button-prev:hover,
.swiper-button-prev:hover, 
.swiper-rtl .swiper-button-next:hover {background-color: #000; transition: all 0.4s ease-in-out;}

.swiper-button-next:hover:after, 
.swiper-button-prev:hover:after {filter: invert(1) brightness(1); transition: all 0.4s ease-in-out;}

/* Common form css  */

form {
  background-color: #fff;
  padding: 50px 30px 30px;
  border-radius: 20px;
}

input, 
textarea,
select {
  border-radius: 12px !important;
  border: 1px solid var(--grey5);
  padding: 15px 21px;
  font-size: 16px;
  color: #000;
  width: 100%;
  line-height: 1.5;
  font-family: var(--Poppins);
}

input::placeholder, 
textarea::placeholder {
  font-size: 16px;
  color: var(grey5);
}

.form-group:not(:last-child) {
  margin-bottom: 25px;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: '';
  background: url(../images/chevron-down.svg) no-repeat;
  background-size: 24px;
  background-position: center right 12px;
}

textarea {
  resize: none;
  height: 146px;
}

.form-group .btn {padding: 11px 24px;}
.contact-grid {display: grid; grid-template-columns: 1fr 617px; gap: 100px; align-items: center; padding-bottom: 110px; padding-top: 60px;}
.full-link { position: absolute; top: 0; left: 0; width: 100%; height: 100%;}


@media (max-width: 1280px) {
  .btn.btn-primary {padding: 13px 22px;}
  h4 {font-size: 20px;}
  h3 {font-size: 30px;}
  h2 {font-size: 38px;}
  p {font-size: 16px; line-height: normal;}
}


@media (max-width: 1199px) {
  .h1, h1 {font-size: 48px;}
  .container {max-width: 100%;}
  input, textarea, select {padding: 12px 18px;}
  .form-group:not(:last-child) {margin-bottom: 24px;}
  form {padding: 40px 25px 30px;}
}

@media (max-width: 991px) {
  .h1, h1 {font-size: 34px;}
  h2 {font-size: 30px;}
  h3 {font-size: 24px;}
  .btn.btn-primary {padding: 13px 26px;}
  .grid-col-3 {grid-template-columns: repeat(2, 1fr);}
  .btn.btn-primary.btn-primary-white {padding: 13px 25px;}
  .small-container {padding: 0 30px;}
  .full-col {grid-column: 1;}
}

@media (max-width: 767px) {
  .h1, h1 {font-size: 32px;}
  h2 {font-size: 28px; line-height: normal;} 
  h3, 
  h4{line-height: normal;}
  .grid-col-2,
  .grid-col-3 {grid-template-columns: 1fr;}
  .swiper-pagination {bottom: 10px;}
  .grid-col-4 {grid-template-columns: repeat(2, 1fr);}
  .btn.btn-primary {padding: 10px 20px; font-size: 14px;}
  .swiper-button-next, 
  .swiper-rtl .swiper-button-prev, 
  .swiper-button-prev, 
  .swiper-rtl .swiper-button-next {width: 40px; height: 40px;}
  .swiper-button-prev, .swiper-rtl .swiper-button-next {right: 50px;}
  input, textarea, select {font-size: 14px;}

  input::placeholder, textarea::placeholder, select::placeholder {
    font-size: 14px;
  }
}

@media (max-width: 350px) {
  .h1, h1 {font-size: 30px;}
  h2 {font-size: 24px;}
  h3 {font-size: 20px;}
  h4 {font-size: 18px;}
  p {font-size: 14px;}
}

.radio-group input[type="radio"] {
  opacity: 0;
  visibility: hidden;
  position: absolute;;
}

.radio-group {
  display: inline-block;
  margin-right: 19px;
}

.radio-group label {
  position: relative;
  margin-bottom: 0 !important;
  padding-left: 20px;
  cursor: pointer;
}

.radio-group label:before {
  content: '';
  width: 11px;
  height: 11px;
  border: 1px solid var(--primaryColor2);
  position: absolute;
  border-radius: 100%;
  left: 0;
  top: 7px;
}

.radio-group label:after {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--primaryColor2);
  position: absolute;
  border-radius: 100%;
  left: 3px;
  top: 10px;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.radio-group input[type="radio"]:checked + label:after {
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

input[type="file"] {
  display: none;
}

input[type="file"] + label {
  border: 1px solid #B1B1B1;
  border-radius: 8px;
  padding: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
  justify-content: center;
  min-height: 90px;
  cursor: pointer;
}

input[type="file"] + label p {
  display: block;
  color: #F15B25;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.42;
  width: 100%;
  margin-bottom: 0;
}

input[type="file"] + label p span {
  display: block;
  margin-top: 8px;
  color: #B1B1B1;
  font-size: 12px;
  font-weight: normal;
}

.checbox-input input[type="checkbox"]{
  display: inline-block;
  width: auto;
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.checbox-input label {
  position: relative;
  padding-left: 26px;
  cursor: pointer;
}

.checbox-input label:before {
  content: '';
  width: 16px;
  height: 16px;
  border: 2px solid var(--primaryColor2);
  position: absolute;
  border-radius: 4px;
  left: 0;
  top: 4px;
}

.checbox-input label:after {
  content: '';
  width: 6px;
  height: 12px;
  border-bottom: 2px solid red;
  border-right: 2px solid red;
  position: absolute;
  transform: rotate(45deg);
  left: 6px;
  top: 4px;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.checbox-input input[type="checkbox"]:checked + label:after {
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.coupon-section { margin: 10px 0; }
.coupon-code { padding: 5px; width: 150px; }
.apply-coupon { padding: 5px 10px; background: #4CAF50; color: white; border: none; cursor: pointer; }
.coupon-message { margin-top: 5px; font-size: 14px; color: #d00; }
.discount-info { background: #f9f9f9; padding: 10px; border-radius: 4px; }
.pwa-install-button {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    background: #4361ee;
    color: white !important;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 15px 0;
}

.pwa-install-button:hover {
    background: #3a56e0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}