

/* ======home 1 all===== */

.theme-btn1{
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 26px;
    font-family: 'Cabin', sans-serif;
    font-weight: 600;
    color: #fff !important;
    text-align: center;
    border-radius: 2px;
    padding: 16px 24px;
    z-index: 1;
    background: red;
    border-radius: 5px;
  }
  
  .theme-btn1 i{
    position: relative;
    margin-left: 10px;
    font-size: 16px;
  }
  
  .theme-btn1:hover:after{
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  }
  
  .theme-btn1:after{
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #181A1C;
    border-radius: 2px;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    border-radius: 5px;
  }
  
  .theme-btn1:hover:after {
    opacity: 1;
  }


  .theme-btn2{
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 26px;
    font-family: 'Cabin', sans-serif;
    font-weight: 600;
    color: #fff !important;
    text-align: center;
    border-radius: 2px;
    padding: 16px 24px;
    z-index: 1;
    background: red;
    border-radius: 5px;
  }
  
  .theme-btn2 i{
    position: relative;
    margin-left: 10px;
    font-size: 16px;
  }
  
  .theme-btn2:hover:after{
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  }
  
  .theme-btn2:after{
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f5a9b1;
    border-radius: 2px;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    border-radius: 5px;
  }
  
  .theme-btn2:hover:after {
    opacity: 1;
  }


  .hadding1 span {
    color: var(--main-color, #FF2640);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px; /* 100% */
  }

  .hadding1 h1 {
    color: var(--main-text-color, #181A1C);
font-size: 40px;
font-style: normal;
font-weight: 500;
line-height: 48px; /* 120% */
  }

  .hadding1 p {
    color: var(--paragraph-color, rgba(8, 17, 13, 0.60));
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 28px;
  }

  .hadding1 h4 a {
    color: var(--main-text-color, #181A1C);
font-size: 20px;
font-style: normal;
font-weight: 600;
line-height: 20px; /* 100% */
display: inline-block;
transition: all.3s;
  }

  .hadding1 h4 a:hover {
    color: #FF2640;
    transition: all.3s;
  }

  .hadding1 h3 a {
    color: #181A1C;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px; /* 100% */
    transition: all.4s;
  }

  .hadding1 h3 a:hover {
    color: #FF2640;
    transition: all.4s;
  }

  .img100 img {
    width: 100%;
  }

  .hadding1 h2 {
    color: #181A1C;
font-size: 24px;
font-style: normal;
font-weight: 600;
line-height: 24px; /* 100% */
  }

/* ======home 1 all===== */

/* =========home 2 all========== */
.theme-btn3 {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 22px;
  font-family: 'Cabin', sans-serif;
  font-weight: 600;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px 24px;
  z-index: 1;
  background: #016490;
  border-radius: 5px;
  overflow: hidden;
  transition: all.4s;
}

.theme-btn3:after{
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #fff;
  border-radius: 2px;
  transition: all.4s;
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  border-radius: 5px;
}

.theme-btn3::before{
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 0%;
  height: 100%;
  background: #fff;
  border-radius: 2px;
  transition: all.4s;
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  border-radius: 5px;
}


.theme-btn3:hover:after {
  width: 100%;
  right: 0;
  left: auto;
  transition: all.9s;
  border-radius: 5px;
}

.theme-btn3:hover::before {
  width: 100%;
  left: 0;
  right: auto;
  transition: all.9s;
  border-radius: 5px;
}

.theme-btn3:hover {
  color: #181A1C;
  transition: all.4s;
  transform: translateY(-5px);
}

.theme-btn4 {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 20px;
  font-family: 'Cabin', sans-serif;
  font-weight: 600;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px 24px;
  z-index: 1;
  background: transparent;
  border-radius: 6px;
  overflow: hidden;
  transition: all.4s;
  border: 1px solid #fff;
  box-sizing: border-box;
}


.theme-btn4:after{
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #fff;
  border-radius: 2px;
  transition: all.4s;
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  border-radius: 5px;
}

.theme-btn4::before{
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 0%;
  height: 100%;
  background: #fff;
  border-radius: 2px;
  transition: all.4s;
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  border-radius: 5px;
}


.theme-btn4:hover:after {
  width: 100%;
  right: 0;
  left: auto;
  transition: all.9s;
  border-radius: 5px;
}

.theme-btn4:hover::before {
  width: 100%;
  left: 0;
  right: auto;
  transition: all.9s;
  border-radius: 5px;
}

.theme-btn4:hover {
  color: #181A1C;
  transition: all.4s;
  transform: translateY(-5px);
}


.theme-btn5 {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 22px;
  font-family: 'Cabin', sans-serif;
  font-weight: 600;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px 24px;
  z-index: 1;
  background: #016490;
  border-radius: 5px;
  overflow: hidden;
  transition: all.4s;
  border: none;
  text-transform: capitalize;
}

.theme-btn5:after{
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #181A1C;
  border-radius: 2px;
  transition: all.4s;
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  border-radius: 5px;
}

.theme-btn5::before{
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 0%;
  height: 100%;
  background: #181A1C;
  border-radius: 2px;
  transition: all.4s;
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  border-radius: 5px;
}


.theme-btn5:hover:after {
  width: 100%;
  right: 0;
  left: auto;
  transition: all.9s;
  border-radius: 5px;
}

.theme-btn5:hover::before {
  width: 100%;
  left: 0;
  right: auto;
  transition: all.9s;
  border-radius: 5px;
}

.theme-btn5:hover {
  color: #fff !important;
  transition: all.4s;
  transform: translateY(-5px);
}

.hadding2 span {
  color: var(--5th-Main, #016490);
font-size: 12px;
font-style: normal;
font-weight: 700;
line-height: 38px; /* 100% */
display: inline;
text-transform: uppercase;
}

.hadding2 h1 {
  color: var(--Main-Text-Color, #181A1C);
font-size: 25px;
font-style: normal;
font-weight: 700;
line-height: 32px; /* 120% */
text-transform: capitalize;
}

.hadding2 p {
color: var(--Paragraph-Color, rgba(8, 17, 13, 0.60));
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 28px; /* 175% */
font-family: "Afacad Flux", sans-serif;
}

.hadding2 h3 a {
  color: #181A1C;
font-size: 20px;
font-style: normal;
font-weight: 800;
line-height: normal;
display: inline;
transition: all.4s;
text-transform: capitalize;
}

.hadding2 h3 a:hover {
  color: #016490;
  transition: all.4s;
}

.hadding2 h6 {
  color: var(--Main-Text-Color, #181A1C);
font-size: 20px;
font-style: normal;
font-weight: 700;
line-height: 20px; /* 100% */
}

/* ==========home 2 all======== */

/* ==========home 3 all======== */

.theme-btn6  {
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px; /* 100% */
  background-color: #0D4F51;
  padding: 16px 24px;
  border-radius: 5px;
  display: inline-block;
  transition: all.4s;
}

.theme-btn6:hover {
  background-color: #fff;
  color: #0D4F51;
  transition: all.4s;
  transform: translateY(-5px);
}

.theme-btn7  {
  color: #0D4F51;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px; /* 100% */
  background-color: #fff;
  padding: 16px 24px;
  border-radius: 5px;
  display: inline-block;
  transition: all.4s;
  margin-left: 16px;
}

.theme-btn7:hover {
  background-color: #0D4F51;
  color: #fff;
  transition: all.4s;
  transform: translateY(-5px);
}

.theme-btn8  {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px; /* 100% */
  background-color: #0D4F51;
  padding: 18px 24px;
  border-radius: 5px;
  display: inline-block;
  transition: all.4s;
  border: none;
}

.theme-btn8:hover {
  background-color: #13787b;
  color: #fff;
  transition: all.4s;
  transform: translateY(-5px);
}

.hadding3 span.span {
  color: var(--4th-Home-Main, #0D4F51);
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 18px; /* 100% */
display: inline-block;
}
.hadding3 h1 {
  color: var(--neutral-main-text-color, #19191B);
font-size: 40px;
font-style: normal;
font-weight: 400;
line-height: 48px; /* 120% */
text-transform: capitalize;
}

.hadding3 p {
  color: var(--Paragraph-Color, rgba(8, 17, 13, 0.60));
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 28px; /* 175% */
}

/* ==========home 3 all======== */


/* ==========home 4 all======== */

.theme-btn9 {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px; /* 100% */
  background-color: #016490;
  padding: 18px 24px;
  border-radius: 5px;
  display: inline-block;
  transition: all.4s;
  border: none;
}

.theme-btn9:hover {
  background-color: #016490;
  color: #fff;
  transition: all.4s;
  transform: translateY(-5px);
}

.theme-btn10 {
  color: #016490;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px; /* 100% */
  background: transparent;
  padding: 18px 24px;
  border-radius: 5px;
  display: inline-block;
  transition: all.4s;
  border-radius: 5px;
border: 1px solid var(--3rd-home-main, #016490);
margin-left: 10px;
}

.theme-btn10:hover {
  background-color: #016490;
  color: #fff;
  transition: all.4s;
  transform: translateY(-5px);
}


.hadding4 span {
  color: var(--3rd-home-main, #016490);
font-size: 35px;
font-style: normal;
font-weight: 700;
line-height: 18px; /* 100% */
text-transform: uppercase;
display: inline-block;
}

.hadding4 h1 {
  color: var(--neutral-main-text-color, #19191B);
font-size: 25px;
font-style: normal;
font-weight: 600;
line-height: 48px; /* 120% */
text-transform: capitalize;
}

.careers{
  color: var(--Paragraph-Color, rgba(8, 17, 13, 0.855));
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 28px; /* 155.556% */
}

.hadding4 h4 a {
  color: var(--neutral-main-text-color, #19191B);
font-size: 20px;
font-style: normal;
font-weight: 700;
line-height: 28px; /* 100% */
text-transform: capitalize;
text-decoration: none;
}

.hadding4 h4 {
  color: var(--neutral-main-text-color, #19191B);
font-size: 20px;
font-style: normal;
font-weight: 750;
line-height: 20px; /* 100% */
text-transform: capitalize;
}

.hadding4 h4 a:hover {
  color: #016490;
}

.hadding4 h4:hover {
  color: #016490;
}

.service4-box {
  border-radius: 5px;
background: #FFF;
padding: 16px;
}

.hadding4-w span {
  color: #FFF;
font-size: 35px;
font-style: normal;
font-weight: 600;
line-height: 18px; /* 100% */
text-transform: uppercase;
display: inline-block;
}
.hadding4-w h1 {
  color: #FFF;
text-align: center;
font-size: 25px;
font-style: normal;
font-weight: 750;
line-height: 48px; /* 120% */
text-transform: capitalize;
}
/* ==========home 4 all======== */

/* ==========home 5 all======== */

.hadding5 span.span {
  color: var(--2nd-HP-secendary, #6A6A9A);
font-size: 18px;
font-style: normal;
font-weight: 700;
line-height: 18px; /* 100% */
}

.hadding5 h1 {
  color: var(--Main-Text-Color, #181A1C);
font-size: 40px;
font-style: normal;
font-weight: 700;
line-height: 48px; /* 120% */
}

.hadding5 p {
  color: var(--Paragraph-Color, rgba(8, 17, 13, 0.60));
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 28px; /* 155.556% */
transition: all.4s;
}

.hadding5 h4 a {
  color: var(--Main-Text-Color, #181A1C);
text-align: center;
font-size: 20px;
font-style: normal;
font-weight: 700;
line-height: 20px; /* 100% */
transition: all.4s;
}

.google-reting-star li {
  display: inline-block;
  color: #FF845E;
}

.google-reting-star  {
  padding-left: 10px;
}

.google-reting-star {
  display: flex;
  align-items: center;
  }

  .about5-reting {
    display: flex;
    align-items: center;
  }

  .google-reting-star h5 {
    color: var(--Main-Text-Color, #181A1C);
font-size: 20px;
font-style: normal;
font-weight: 700;
line-height: 20px; /* 100% */
padding-right: 8px;
  }

  .google-reting {
    display: flex;
    align-items: center;
  }

  .google-reting-all {
    padding-left: 20px;
  }

  .google-reting-p p {
    color: var(--Main-Text-Color, #181A1C);
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: 12px; /* 100% */
padding-left: 40px;
padding-top: -10px;
  }

  .google-reting-p p a {
    color: var(--Main-Text-Color, #181A1C);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 12px; /* 100% */
    display: inline-block;
  }

  .google-reting-img img {
    padding-top: 10px;
  }

  .about5-hadding {
    padding-left: 20px;
  }



  


.theme-btn11::before, .theme-btn11::after, .theme-btn11 span::before, .theme-btn11 span::after {
  content: "";
  position: absolute;
  top: 0;
  width: 25.25%;
  height: 0;
  background: #6A6A9A;
  z-index: -1;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.theme-btn11 span::before, .theme-btn11 span::after {
  content: "";
  position: absolute;
  top: 0;
  width: 25.25%;
  height: 0;
  background: #6A6A9A;
  z-index: -1;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.theme-btn11::before {
  left: 0;
}

.theme-btn11::after {
  left: 50%;
}

.theme-btn11 span::before, .theme-btn11 span::after {
  top: auto;
  bottom: 0;
}

.theme-btn11 span::before {
  left: 25%;
}

.theme-btn11 span::after {
  left: 75%;
}
.theme-btn11:hover::before, .theme-btn11:hover::after, .theme-btn11:hover span::before, .theme-btn11:hover span::after {
  height: 100%;
}

.theme-btn11:hover {
  color: #fff;
  transform: translateY(-5px);
}
.theme-btn11 {
    position: relative;
    overflow: hidden;
    font-size: 18px;
    font-weight: 700;
    height: 58px;
    line-height: 58px;
    border-radius: 4px;
    padding: 0 24px;
    text-align: center;
    border: none;
    outline: none;
    text-transform: capitalize;
    display: inline-block;
    background: #1A1A42;
    color: #ffffff;
    z-index: 2;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.button5-all {
  display: flex;
  align-items: center;
}

.hadding5 h6 a {
  color: var(--Main-Text-Color, #181A1C);
font-size: 20px;
font-style: normal;
font-weight: 700;
line-height: 20px; /* 100% */
}



.theme-btn12::before, .theme-btn12::after, .theme-btn12 span::before, .theme-btn12 span::after {
  content: "";
  position: absolute;
  top: 0;
  width: 25.25%;
  height: 0;
  background: #F0F0F5;
  z-index: -1;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.theme-btn12 span::before, .theme-btn12 span::after {
  content: "";
  position: absolute;
  top: 0;
  width: 25.25%;
  height: 0;
  background: #F0F0F5;
  z-index: -1;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.theme-btn12::before {
  left: 0;
}

.theme-btn12::after {
  left: 50%;
}

.theme-btn12 span::before, .theme-btn12 span::after {
  top: auto;
  bottom: 0;
}

.theme-btn12 span::before {
  left: 25%;
}

.theme-btn12 span::after {
  left: 75%;
}
.theme-btn12:hover::before, .theme-btn12:hover::after, .theme-btn12:hover span::before, .theme-btn12:hover span::after {
  height: 100%;
}

.theme-btn12:hover {
  color: #181A1C;
  transform: translateY(-5px);
}
.theme-btn12 {
    position: relative;
    overflow: hidden;
    font-size: 18px;
    font-weight: 700;
    height: 58px;
    line-height: 58px;
    border-radius: 4px;
    padding: 0 24px;
    text-align: center;
    border: none;
    outline: none;
    text-transform: capitalize;
    display: inline-block;
    background: #1A1A42;
    color: #ffffff;
    z-index: 2;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

/* ==========home 5 all======== */

/* ==========home 6 all======== */

.theme-btn13 {
  position: relative;
  overflow: hidden;
  font-size: 18px;
  font-weight: 700;
  line-height: 53px;
  border-radius: 5px;
  padding: 0 24px;
  text-align: center;
  border: none;
  outline: none;
  text-transform: capitalize;
  display: inline-block;
  background: #4893FF;
  color: #fff;
  z-index: 2;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  transition: all ease 0.3s;
  overflow: hidden;
}

.theme-btn13::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0%;
  width: 100%;
  background-color: rgb(135, 188, 253);
  border-radius: 100% 100% 5px 5px;
  z-index: -1;
  transition: all.4s;
}

.theme-btn13:hover::before {
  height: 100%;
  border-radius: 5px 5px 5px 5px;
  transition: all.4s;
}

.theme-btn13:hover {
  color: #fff;
  transform: translateY(-5px);
  transition: all.4s;
}

.theme-btn14 {
  position: relative;
  overflow: hidden;
  font-size: 18px;
  font-weight: 700;
  height: 53px;
  line-height: 50px;
  border-radius: 5px;
  padding: 0 24px;
  text-align: center;
  border: none;
  outline: none;
  text-transform: capitalize;
  display: inline-block;
  background: transparent;
  color: #4893FF;
  z-index: 2;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  transition: all ease 0.3s;
  overflow: hidden;
  border: 1px solid #4893FF;
  margin-left: 12px;
}

.theme-btn14::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0%;
  width: 100%;
  background-color: rgb(135, 188, 253);
  border-radius: 100% 100% 5px 5px;
  z-index: -1;
  transition: all.4s;
}

.theme-btn14:hover::before {
  height: 100%;
  border-radius: 5px 5px 5px 5px;
  transition: all.4s;
}

.theme-btn14:hover {
  color: #fff;
  transform: translateY(-5px);
  transition: all.4s;
  border: 1px solid rgb(135, 188, 253);
}

.hadding6 h1 {
  color: var(--Main-Text-Color, #181A1C);
font-size: 40px;
font-style: normal;
font-weight: 600;
line-height: 48px; /* 120% */
text-transform: capitalize;
}

.hadding6 p {
  color: var(--Paragraph-Color, rgba(8, 17, 13, 0.60));
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 28px; /* 175% */
transition: all.4s;
}

.hadding6 span.span {
  color: var(--7th-main, #4893FF);
font-size: 18px;
font-style: normal;
font-weight: 700;
line-height: 18px; /* 100% */
display: inline-block;
}

.hadding6 h4 a {
  color: var(--Main-Text-Color, #181A1C);
text-align: center;
font-size: 20px;
font-style: normal;
font-weight: 600;
line-height: 20px; /* 100% */
transition: all.4s;
}


/* ==========home 6 all======== */


/* ==========home 7 all======== */

.theme-btn15 {
  position: relative;
  overflow: hidden;
  font-size: 18px;
  font-weight: 700;
  height: 53px;
  line-height: 50px;
  border-radius: 5px;
  padding: 0 24px;
  text-align: center;
  border: none;
  outline: none;
  text-transform: capitalize;
  display: inline-block;
  background: #B51DEE;
  color: #fff;
  z-index: 2;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  transition: all ease 0.3s;
  overflow: hidden;
  border: none;
}

.theme-btn15::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0%;
  width: 0%;
  background-color: #d262fa;
  border-radius: 100% 100% 5px 5px;
  z-index: -1;
  transition: all.4s;
}

.theme-btn15::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 0%;
  width: 0%;
  background-color: #d262fa;
  border-radius: 5px 5px 100% 100%;
  z-index: -1;
  transition: all.4s;
}

.theme-btn15:hover::after {
  height: 100%;
  width: 100%;
  border-radius: 5px 5px 5px 5px;
  transition: all.4s;
}

.theme-btn15:hover::before {
  height: 100%;
  width: 100%;
  border-radius: 5px 5px 5px 5px;
  transition: all.4s;
}

.theme-btn15:hover {
  color: #fff;
  transform: translateY(-5px);
  transition: all.4s;
}



/* video button  */

.video-play-button {
  position: relative;
  z-index: 10;
   margin: 0px 30px;
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  /* background: #fa183d; */
  border-radius: 50%;
  padding: 18px 20px 18px 28px;
}

.video-play-button:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: #B51DEE;
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}

.video-play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: #B51DEE;
  border-radius: 50%;
  transition: all 200ms;
}

.video-play-button:hover:after {
  background-color: darken(#fa183d, 10%);
}

.video-play-button img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
}

.video-play-button span {
  display: block;
  position: relative;
  z-index: 3;
  margin-top: 10px;
    margin-left: 6px;
  width: 0;
  height: 0;
  border-left: 18px solid #fff;
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

.hero-button1{
  display: flex;
  align-items: center;
  cursor: pointer;
}

.hero7-all-buttons {
  display: flex;
  align-items: center;
}

.vido-btn-pera {
  margin-left: -14px;
}

/* video btn */


.hadding7 h3 {
  color: var(--neutral-900, #111827);
font-size: 24px;
font-style: normal;
font-weight: 700;
line-height: 24px; /* 100% */
}

.hadding7 p {
  color: var(--Paragraph-Color, rgba(8, 17, 13, 0.60));
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 18px; /* 100% */
font-family: "Afacad Flux", sans-serif;
}

.hadding7 h1 {
  color: var(--Main-Text-Color, #181A1C);
font-size: 40px;
font-style: normal;
font-weight: 700;
line-height: 48px; /* 120% */
text-transform: capitalize;
}

.hadding7 p {
  color: var(--Paragraph-Color, rgba(8, 17, 13, 0.60));
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 28px; /* 155.556% */
}

.hadding7 span.span {
  color: var(--6th-Main, #B51DEE);
font-size: 18px;
font-style: normal;
font-weight: 700;
line-height: 18px; /* 100% */
display: inline-block;
}

.learn-more7 {
  color: var(--Main-Text-Color, #181A1C);
text-align: center;
font-size: 16px;
font-style: normal;
font-weight: 700;
line-height: 16px; /* 100% */
text-transform: capitalize;
display: inline-block;
transition: all.4s;
}

.learn-more7 span {
  display: inline-block;
  transform: rotate(-45deg);
  transition: all.4s;
}

.learn-more7:hover {
  color: #B51DEE;
  transition: all.4s;
}

.learn-more7:hover span {
  margin-left: 3px;
  transition: all.4s;
}

.hadding7 h4 a {
  color: var(--neutral-main-text-color, #19191B);
font-size: 20px;
font-style: normal;
font-weight: 700;
line-height: 20px; /* 100% */
text-transform: capitalize;
transition: all.4s;
}

.hadding7 h4 a:hover {
  color: #B51DEE;
}

.hadding7 h4 {
  color: var(--neutral-main-text-color, #19191B);
font-size: 20px;
font-style: normal;
font-weight: 700;
line-height: 20px; /* 100% */
text-transform: capitalize;
transition: all.4s;
}

.hadding7 h4:hover {
  color: #B51DEE;
}

.progress-list-number h4 span {
  transition: all.3s;
}

.progress-list-box.progress-list-box2:hover .progress-list-number h4 span {
  color: #B51DEE;
  transition: all.4s;
}

.hadding7 h6 a {
  color: var(--neutral-main-text-color, #19191B);
font-size: 20px;
font-style: normal;
font-weight: 700;
line-height: 28px; /* 140% */
transition: all.4s;
}

.hadding7 h6 a:hover {
  color: #B51DEE;
  transition: all.4s;
}

.learn-more1.learn-more7:hover {
  color: #B51DEE;
}

.learn-more1.learn-more7:hover span {
  color: #B51DEE;
}

.blog1-box.blog1-box7:hover {
  background-color: #FBF4FE;
}

/* ==========home 7 all======== */



.no-scroll-y {
	overflow-y: hidden;
}

/* Preloader */
.ctn-preloader {
	align-items: center;
  cursor: none;
	display: flex;
  height: 100%;
  justify-content: center;
	position: fixed;
	left: 0;
  top: 0;
	width: 100%;
  z-index: 9009999;
}

.ctn-preloader .animation-preloader {
	position: absolute;
  z-index: 100;
}

/* Spinner cargando */
.ctn-preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
	border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: #ffffff; /* No se identa por orden alfabetico para que no lo sobre-escriba */
  height: 9em;
  margin: 0 auto 3.5em auto;
  width: 9em;
}

/* Texto cargando */
.ctn-preloader .animation-preloader .txt-loading {
  font: bold 5em 'Montserrat', sans-serif;
	text-align: center;
	user-select: none;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:before {
  animation: letters-loading 4s infinite;
  color: #ffffffe1;
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transform: rotateY(-90deg);
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading {
	position: relative;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  animation-delay: 1.2s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
  animation-delay: 1.4s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading {
  color: rgba(255, 255, 255, 0.2);
}

.ctn-preloader.ctn-preloader1 .loader-section {
  background-color: transparent;
  height: 100%;
	position: fixed;
  top: 0;
  width: calc(50% + 1px);
  background-color: #016490;
}

.ctn-preloader.ctn-preloader2 .loader-section {
  background-color: transparent;
  height: 100%;
	position: fixed;
  top: 0;
  width: calc(50% + 1px);
  background-color: #0D4F51;
}

.ctn-preloader.ctn-preloader3 .loader-section {
  background-color: transparent;
  height: 100%;
	position: fixed;
  top: 0;
  width: calc(50% + 1px);
  background-color: #dd2f43;
}

.ctn-preloader.ctn-preloader4 .loader-section {
  background-color: transparent;
  height: 100%;
	position: fixed;
  top: 0;
  width: calc(50% + 1px);
  background-color: #016490;
}

.ctn-preloader.ctn-preloader5 .loader-section {
  background-color: transparent;
  height: 100%;
	position: fixed;
  top: 0;
  width: calc(50% + 1px);
  background-color: #6A6A9A;
}

.ctn-preloader.ctn-preloader6 .loader-section {
  background-color: transparent;
  height: 100%;
	position: fixed;
  top: 0;
  width: calc(50% + 1px);
  background-color: #4893FF;
}

.ctn-preloader.ctn-preloader7 .loader-section {
  background-color: transparent;
  height: 100%;
	position: fixed;
  top: 0;
  width: calc(50% + 1px);
  background-color: #B51DEE;
}

.ctn-preloader.ctn-preloader12 .loader-section {
  background-color: transparent;
  height: 100%;
	position: fixed;
  top: 0;
  width: calc(50% + 1px);
  background-color: #DE8E59;
}

.ctn-preloader.ctn-preloader13 .loader-section {
  background-color: transparent;
  height: 100%;
	position: fixed;
  top: 0;
  width: calc(50% + 1px);
  background-color: #02341c;
}

.ctn-preloader.ctn-preloader8 .loader-section {
  background-color: transparent;
  height: 100%;
	position: fixed;
  top: 0;
  width: calc(50% + 1px);
  background-color: #E50114;
}

.ctn-preloader.ctn-preloader9 .loader-section {
  background-color: transparent;
  height: 100%;
	position: fixed;
  top: 0;
  width: calc(50% + 1px);
  background-color: #FE6032;
}

.ctn-preloader.ctn-preloader10 .loader-section {
  background-color: transparent;
  height: 100%;
	position: fixed;
  top: 0;
  width: calc(50% + 1px);
  background-color: #9400FF;
}

.ctn-preloader .loader-section {
  
  height: 100%;
	position: fixed;
  top: 0;
  width: calc(50% + 1px);
}

.ctn-preloader .loader-section.section-left {
  left: 0;
}

.ctn-preloader .loader-section.section-right {
  right: 0;
}

/* Efecto de fade en la animación de cargando */
.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}

/* Efecto de cortina */
.loaded .loader-section.section-left {
  transform: translateX(-101%);
  transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1.000);
}

.loaded .loader-section.section-right {
  transform: translateX(101%);
  transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1.000);
}

/* Animación del preloader */
@keyframes spinner {
	to {
		transform: rotateZ(360deg);
	}
}

/* Animación de las letras cargando del preloader */
@keyframes letters-loading {
  0%,
  75%,
  100% {
  	opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

/* Tamaño de portatil hacia atras (portatil, tablet, celular) */
@media screen and (max-width: 767px) {
	/* Preloader */
	/* Spinner cargando */	
	.ctn-preloader .animation-preloader .spinner {
		height: 8em;
		width: 8em;
	}

	/* Texto cargando */
	.ctn-preloader .animation-preloader .txt-loading {
	  font: bold 3.5em 'Montserrat', sans-serif;
    color: #fff;
	}
}

@media screen and (max-width: 500px) {
	/* Prelaoder */
	/* Spinner cargando */
	.ctn-preloader .animation-preloader .spinner {
		height: 7em;
		width: 7em;
	}

	/* Texto cargando */
	.ctn-preloader .animation-preloader .txt-loading {
	  font: bold 2em 'Montserrat', sans-serif;
	}
}







/*============================
++++PAGE-PROGRESS-SATRT+++++
=============================*/

.blok:nth-of-type(odd) {
  background-color: white;
}

.blok:nth-of-type(even) {
  background-color: black;
}

@-webkit-keyframes border-transform {
  0%,
  100% {
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%;
  }
}

/* #Progress
================================================== */

/*============================
++++PAGE-PROGRESS-SATRT+++++
=============================*/

.blok:nth-of-type(odd) {
  background-color: white;
}

.blok:nth-of-type(even) {
  background-color: black;
}

@-webkit-keyframes border-transform {
  0%,
  100% {
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%;
  }
}

/* #Progress
================================================== */

.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 56px;
  width: 56px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  z-index: 99;
}
.progress-wrap::after {
  position: absolute;
  font-family: "FontAwesome";
  content: "\f062";
  text-align: center;
  line-height: 56px;
  font-size: 18px;
  color: #03256c;
  left: 0;
  top: 0;
  height: 56px;
  width: 56px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.progress-wrap:hover::after {
  opacity: 0;
}
.progress-wrap::before {
  position: absolute;
  font-family: "FontAwesome";
  content: "\f062";
  text-align: center;
  line-height: 56px;
  font-size: 18px;
  opacity: 0;
  left: 0;
  top: 0;
  height: 56px;
  width: 56px;
  cursor: pointer;
  display: block;
  z-index: 2;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.progress-wrap:hover::before {
  opacity: 1;
}
.progress-wrap svg path {
  fill: none;
}
.progress-wrap svg.progress-circle path {
  stroke: #03256c; /* --- Lijn progres kleur --- */
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

/*============================
++++PAGE-PROGRESS-END+++++
=============================*/


.theme-btn16 {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px; /* 100% */
  background-color: #E50114;
  padding: 18px 24px;
  border-radius: 5px;
  display: inline-block;
  transition: all.4s;
  border: none;
}

.theme-btn16:hover {
  background-color: #cf0e1e;
  color: #fff;
  transition: all.4s;
  transform: translateY(-5px);
}

.theme-btn17 {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px; /* 100% */
  background: transparent;
  padding: 18px 24px;
  border-radius: 5px;
  display: inline-block;
  transition: all.4s;
  border-radius: 5px;
border: 1px solid var(--3rd-home-main, #fff);
margin-left: 10px;
}

.theme-btn17:hover {
  background-color: #E50114;
  color: #fff;
  transition: all.4s;
  transform: translateY(-5px);
  border: 1px solid var(--3rd-home-main, #E50114);
}

.hero8-all-images {
  margin-right: -250px;
  margin-top: -150px;
}

.main-hadding8 {
  margin-top: -150px;
}

.header-area.header-area8.header-area2.header-area-all.d-none.d-lg-block.sticky {
  background-color: #19191b9d;
}



/*============================
++++HOME PAGE 8+++++
=============================*/

.hadding8 span.span {
  color: var(--8th-Main, #E50114);
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 16px; /* 100% */
text-transform: capitalize;
display: inline-block;
border-radius: 16px;
background: rgba(229, 1, 20, 0.10);
padding: 8px 16px;
}

.hadding8 h1 {
  color: var(--Main-Text-Color, #181A1C);
font-size: 40px;
font-style: normal;
font-weight: 600;
line-height: 48px; /* 120% */
text-transform: capitalize;
}

.hadding8 p {
  color: var(--Paragraph-Color, rgba(8, 17, 13, 0.60));
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 28px; /* 175% */
transition: all.4s;
}


.hadding8 h1 span.after {
  position: relative;
}

.hadding8 h1 span.after::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 15px;
  width: 100%;
  background-image: url(../img/shapes/hadding8-shape.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}


.learn-more8 {
  color: var(--Main-Text-Color, #181A1C);
text-align: center;
font-size: 16px;
font-style: normal;
font-weight: 700;
line-height: 16px; /* 100% */
text-transform: capitalize;
display: inline-block;
transition: all.4s;
}

.learn-more8 span {
  display: inline-block;
  transform: rotate(-45deg);
  transition: all.4s;
}

.learn-more8:hover {
  color: #E50114;
  transition: all.4s;
}

.learn-more8:hover span {
  margin-left: 3px;
  transition: all.4s;
}

.hadding8 h4 a {
  color: var(--neutral-main-text-color, #19191B);
font-size: 20px;
font-style: normal;
font-weight: 700;
line-height: 20px; /* 100% */
text-transform: capitalize;
display: inline-block;
transition: all.4s;
}

.hadding8 h4 a:hover {
  color: #E50114;
  transition: all.4s;
}
.hadding8-w h4 a {
	color: #FFF;
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 20px;
	display: inline-block;
	padding: 4px;
}
.hadding8-w p {
  color: #FFF;
text-align: center;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 24px; /* 150% */
}

.learn-more8-w {
  color: #FFF;
text-align: center;
font-size: 16px;
font-style: normal;
font-weight: 700;
line-height: 16px; /* 100% */
text-transform: capitalize;
display: inline-block;
}

.learn-more8-w:hover {
  color: #fff;
}

.learn-more8-w:hover span {
  transition: all.4s;
  margin-left: 3px;
}

.hadding8 h2 a {
  color: var(--Main-Text-Color, #181A1C);
font-size: 24px;
font-style: normal;
font-weight: 600;
line-height: 32px; /* 133.333% */
display: inline-block;
transition: all.4s;
}

.hadding8 h2 a:hover {
  color: #E50114;
  transition: all.4s;
}

.blog-8-hadding a.date {
  color: var(--Paragraph-Color, rgba(8, 17, 13, 0.60));
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 16px; /* 100% */
display: inline-block;
}

/*============================
 ++++ HOME PAGE 8+++++
=============================*/

/*============================
 ++++ HOME PAGE 9+++++
=============================*/

.theme-btn18 {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 22px;
  font-family: 'Cabin', sans-serif;
  font-weight: 600;
  color: #fff !important;
  text-align: center;
  border-radius: 2px;
  padding: 16px 24px;
  z-index: 1;
  background: #FE6032;
  border-radius: 5px;
  border: none;
}

.theme-btn18 i{
  position: relative;
  margin-left: 10px;
  font-size: 16px;
}

.theme-btn18:hover:after{
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.theme-btn18:after{
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #181A1C;
  border-radius: 2px;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  border-radius: 5px;
}

.theme-btn18:hover:after {
  opacity: 1;
}

.hadding9 span.span {
  color: var(--Main-Text-Color, #181A1C);
font-size: 16px;
font-style: normal;
font-weight: 700;
line-height: 16px; /* 100% */
text-transform: capitalize;
border-radius: 16px;
background: rgba(254, 96, 50, 0.20);
padding: 8px 16px;
display: inline-block;
}

.hadding9 h1 {
  color: var(--Main-Text-Color, #181A1C);
font-size: 40px;
font-style: normal;
font-weight: 700;
line-height: 48px; /* 120% */
}

.hadding9 p {
  color: var(--Paragraph-Color, rgba(8, 17, 13, 0.60));
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 28px; /* 175% */
}


.learn-more9 {
  color: var(--Main-Text-Color, #181A1C);
text-align: center;
font-size: 16px;
font-style: normal;
font-weight: 700;
line-height: 16px; /* 100% */
text-transform: capitalize;
display: inline-block;
transition: all.4s;
}

.learn-more9 span {
  display: inline-block;
  transform: rotate(-45deg);
  transition: all.4s;
}

.learn-more9:hover {
  color: #FE6032;
  transition: all.4s;
}

.learn-more9:hover span {
  margin-left: 3px;
  transition: all.4s;
}

/*============================
 ++++ HOME PAGE 9+++++
=============================*/


/* video button 9 */

.video-play-btn9 .video-play-button {
  position: relative;
  z-index: 10;
   margin: 0px 30px;
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  /* background: #fa183d; */
  border-radius: 50%;
  padding: 18px 20px 18px 28px;
}

.video-play-btn9 .video-play-button:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: #FE6032;
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}

.video-play-btn9 .video-play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: #FE6032;
  border-radius: 50%;
  transition: all 200ms;
}

.video-play-btn9 .video-play-button:hover:after {
  background-color: darken(#fa183d, 10%);
}

.video-play-btn9 .video-play-button img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
}

.video-play-btn9 .video-play-button span {
  display: block;
  position: relative;
  z-index: 3;
  margin-top: 10px;
    margin-left: 6px;
  width: 0;
  height: 0;
  border-left: 18px solid #fff;
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

.hero-button1{
  display: flex;
  align-items: center;
  cursor: pointer;
}

.hero7-all-buttons {
  display: flex;
  align-items: center;
}

.vido-btn-pera {
  margin-left: -14px;
}

/* video btn 9 */


.theme-btn19 {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 22px;
  font-family: 'Cabin', sans-serif;
  font-weight: 600;
  color: #fff !important;
  text-align: center;
  border-radius: 2px;
  padding: 16px 24px;
  z-index: 1;
  background: #FE6032;
  border-radius: 5px;
  border: none;
}

.theme-btn19 i{
  position: relative;
  margin-left: 10px;
  font-size: 16px;
}

.theme-btn19:hover:after{
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.theme-btn19:after{
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #f05425;
  border-radius: 2px;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  border-radius: 5px;
}

.theme-btn19:hover:after {
  opacity: 1;
}

/*============================
 ++++ HOME PAGE 10+++++
=============================*/



.theme-btn20 {
  position: relative;
  overflow: hidden;
  font-size: 18px;
  font-weight: 700;
  line-height: 53px;
  border-radius: 5px;
  padding: 0 24px;
  text-align: center;
  border: none;
  outline: none;
  text-transform: capitalize;
  display: inline-block;
  background: #9400FF;
  color: #fff;
  z-index: 2;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  transition: all ease 0.3s;
  overflow: hidden;
}

.theme-btn20::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0%;
  width: 100%;
  background-color: #a72dff;
  border-radius: 100% 100% 5px 5px;
  z-index: -1;
  transition: all.4s;
}

.theme-btn20:hover::before {
  height: 100%;
  border-radius: 5px 5px 5px 5px;
  transition: all.4s;
}

.theme-btn20:hover {
  color: #fff;
  transform: translateY(-5px);
  transition: all.4s;
}








.theme-btn22 {
  position: relative;
  overflow: hidden;
  font-size: 18px;
  font-weight: 700;
  line-height: 53px;
  border-radius: 5px;
  padding: 0 24px;
  text-align: center;
  border: none;
  outline: none;
  text-transform: capitalize;
  display: inline-block;
  background: transparent;
  color: #9400FF;
  z-index: 2;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  transition: all ease 0.3s;
  overflow: hidden;
  border: 1px solid #9400FF;
  margin-left: 20px;
}

.theme-btn22::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0%;
  width: 100%;
  background-color: #a72dff;
  border-radius: 100% 100% 5px 5px;
  z-index: -1;
  transition: all.4s;
}

.theme-btn22:hover::before {
  height: 100%;
  border-radius: 5px 5px 5px 5px;
  transition: all.4s;
}

.theme-btn22:hover {
  color: #fff;
  transform: translateY(-5px);
  transition: all.4s;
}


/* video button 9 */

.video-play-btn10 .video-play-button {
  position: relative;
  z-index: 10;
   margin: 0px 30px;
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  /* background: #fa183d; */
  border-radius: 50%;
  padding: 18px 20px 18px 28px;
}

.video-play-btn10 .video-play-button:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: #9400FF;
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}

.video-play-btn10 .video-play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: #9400FF;
  border-radius: 50%;
  transition: all 200ms;
}

.video-play-btn10 .video-play-button:hover:after {
  background-color: darken(#9400FF, 10%);
}

.video-play-btn9 .video-play-button img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
}

.video-play-btn10 .video-play-button span {
  display: block;
  position: relative;
  z-index: 3;
  margin-top: 10px;
    margin-left: 6px;
  width: 0;
  height: 0;
  border-left: 18px solid #fff;
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

.hero-button1{
  display: flex;
  align-items: center;
  cursor: pointer;
}

.hero7-all-buttons {
  display: flex;
  align-items: center;
}

.vido-btn-pera {
  margin-left: -14px;
}

/* video btn 9 */

.hadding10 span.span {
  color: var(--Main-Text-Color, #181A1C);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px; /* 100% */
  text-transform: capitalize;
  border-radius: 16px;
  background: rgba(148, 0, 255, 0.20);
  display: inline-block;
  padding: 8px 16px;
}

.hadding10 h1 {
  color: var(--Main-Text-Color, #181A1C);
font-size: 40px;
font-style: normal;
font-weight: 700;
line-height: 48px; /* 120% */
}

.hadding10 p {
  color: var(--Paragraph-Color, rgba(8, 17, 13, 0.60));
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 28px; /* 175% */
}

.hadding10 h4 a {
  color: var(--Main-Text-Color, #181A1C);
font-size: 20px;
font-style: normal;
font-weight: 700;
line-height: 20px; /* 100% */
text-transform: capitalize;
display: inline-block;
}

.hadding10 h4 a:hover {
  color: #9400FF;
  transition: all.4s;
}

/*============================
 ++++ HOME PAGE 10+++++
=============================*/


/*============================
 ++++ HOME PAGE 12+++++
=============================*/


.theme-btn21 {
  position: relative;
  overflow: hidden;
  font-size: 18px;
  font-weight: 700;
  height: 53px;
  line-height: 53px;
  border-radius: 5px;
  padding: 0 24px;
  text-align: center;
  border: none;
  outline: none;
  text-transform: capitalize;
  display: inline-block;
  background: #DE8E59;
  color: #fff;
  z-index: 2;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  transition: all ease 0.3s;
  overflow: hidden;
  border: none;
  margin-left: 0;
}

.theme-btn21::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0%;
  width: 0%;
  background-color: #0b5531;
  border-radius: 100% 100% 5px 5px;
  z-index: -1;
  transition: all.4s;
}

.theme-btn21::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 0%;
  width: 0%;
  background-color: #0b5531;
  border-radius: 5px 5px 100% 100%;
  z-index: -1;
  transition: all.4s;
}

.theme-btn21:hover::after {
  height: 100%;
  width: 100%;
  border-radius: 5px 5px 5px 5px;
  transition: all.4s;
}

.theme-btn21:hover::before {
  height: 100%;
  width: 100%;
  border-radius: 5px 5px 5px 5px;
  transition: all.4s;
}

.theme-btn21:hover {
  color: #fff;
  transform: translateY(-5px);
  transition: all.4s;
}

.hadding7 .span.span2 {
  color: #DE8E59;
}

.hadding7.hadding12 h4 a:hover {
  color: #DE8E59;
}

.learn-more7.learn-more12:hover {
  color: #DE8E59;
}
/*============================
 ++++ HOME PAGE 12+++++
=============================*/


.preview-button {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 26px;
  font-family: 'Cabin', sans-serif;
  font-weight: 600;
  color: #fff !important;
  text-align: center;
  border-radius: 2px;
  padding: 14px 24px;
  z-index: 1;
  border-radius: 5px;
  border: 1px solid #fff;
  margin-left: 10px;
}

.preview-button i{
  position: relative;
  margin-left: 10px;
  font-size: 16px;
}

.preview-button:hover::after{
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.preview-button::after{
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: red;
  border-radius: 2px;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  border-radius: 5px;
}


.preview-button:hover::after {
  opacity: 1;
}

#search-container {
  margin-top: 20px;
}

#search {
  background: white;
  border-radius: 50px;
  padding: 4px 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  width: 90%;
  max-width: 400px;
}

#search input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 16px;
}

#search img {
  display: inline-block;
}

.days2{
  color: #016490!important;
  font-weight: bold;
  font-size: 12px;
}
.days2 {
  display: inline-block;
  animation: zoomInOut 2s infinite ease-in-out;
}

@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.payment-section {
  text-align: left;
  background: #f3f6f6;
  padding: 20px;
  border-radius: 0px;
  font-family: 'jost', sans-serif;
}

.payment-section h3 {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  font-family: "Jost", sans-serif;
}

.payment-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    justify-content: center;
}

.payment-icons img {
  height: 35px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.payment-icons img:hover {
  transform: scale(1.1);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #202020;
    color: #fff;
    border-radius: 6px;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 500;
    border: 2px solid #25D366;
    transition: all 0.3s ease;
    font-size: 17px;
    font-family: "Afacad Flux", sans-serif;
}

.whatsapp-btn i {
  color: #25D366;
  margin-right: 10px;
  font-size: 18px;
}

.whatsapp-btn:hover {
  background: #25D366;
  color: #fff;
}

.whatsapp-btn:hover i {
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .payment-icons {
    justify-content: center;
  }
  .whatsapp-btn {
    width: 80%;
    justify-content: center;
  }
}
.about-sn {
  padding: 20px 0;
  font-family: "Afacad Flux", sans-serif;
  color: #333;
}
.section-title h2 {
  color: #016490;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 40px;
  font-family: "Afacad Flux", sans-serif;
}
.title {
  color: #016490;
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 15px;
  font-family: "Afacad Flux", sans-serif;
}
.subtitle {
  color: #016490;
  font-weight: 600;
  font-size: 20px;
  margin-top: 25px;
  margin-bottom: 10px;
  font-family: "Afacad Flux", sans-serif;
}
.list, .sub-list {
  list-style: none;
  padding-left: 0;
}
.list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}
.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #01659000;
  font-weight: bold;
  font-family: "Afacad Flux", sans-serif;
}
.sub-list {
  padding-left: 25px;
  margin-top: 8px;
}
.sub-list li::before {
  content: "-";
  color: #016490;
  left: 0;
  font-weight: bold;
  font-family: "Afacad Flux", sans-serif;
}
.about-img img {
  max-width: 100%;
  border-radius: 8px;
}
.shadow {
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
.about-gallery {
  padding: 60px 0;
  font-family: 'Poppins', sans-serif;
}

.section-title h5 {
  color: #016490;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 40px;
  font-family: "Afacad Flux", sans-serif;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

.shadow {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.our-mission {
  padding: 20px 0;
  font-family: 'Poppins', sans-serif;
  color: #333;
}
.section-title h5 {
  color: #016490;
  font-weight: 600;
  font-family: "Afacad Flux", sans-serif;
  letter-spacing: 1px;
  margin-bottom: 40px;
}


.list {
  list-style: none;
  padding-left: 0;
  font-family: "Afacad Flux", sans-serif;
}
.list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}
.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-family: "Afacad Flux", sans-serif;
  color: #01659000;
  font-weight: bold;
}
.profile-img img {
  max-width: 100%;
  border-radius: 8px;
}
.shadow {
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}




.owl-prev{
    display: none !important;
}



    .bottom-features .booking-icon {
    width: 30px;
    height: 30px;
    display: block;
    margin: 0 auto;
    overflow: visible;
    transition: all 0.3s ease;
}

.bottom-features .booking-icon:hover {
    transform: translateY(-4px) scale(1.06);
    filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.15));
}

@media (max-width: 767px) {
    .bottom-features .booking-icon {
        width: 52px;
        height: 52px;
    }
}


/* CSS Styles */
.trust-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #0d0d0d;
    padding: 0px 0px;
    border-radius: 12px;
    border: 1px solid #222;
    border-radius: 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-box {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Accent Color Variations */
.icon-yellow { color: #facc15; background: rgba(250, 204, 21, 0.1); }
.icon-amber  { color: #f59e0b; background: rgba(245, 158, 11, 0.1); }
.icon-blue   { color: #3b82f6; background: rgba(59, 130, 246, 0.1); }
.icon-orange { color: #f97316; background: rgba(249, 115, 22, 0.1); }
.icon-indigo { color: #6366f1; background: rgba(99, 102, 241, 0.1); }

.text h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.text p {
    color: #9ca3af;
    font-size: 12px;
    margin: 2px 0 0 0;
}




/* Premium Card Base */
.premium-contact-card {
    position: relative;
    background: rgba(18, 22, 31, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    height: 100%;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Hover Floating Effect */
.premium-contact-card:hover {
    transform: translateY(-6px);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 12px 30px -10px rgba(99, 102, 241, 0.25);
}

/* Gradient Glow on Hover */
.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.12) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.premium-contact-card:hover .card-glow {
    opacity: 1;
}

.card-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 18px;
}

/* Icon Box Animation */
.contact-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(168, 85, 247, 0.15) 100%);
    border: 1px solid rgba(168, 85, 247, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #016490;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.premium-contact-card:hover .contact-icon-wrapper {
    background: linear-gradient(135deg, #6366f1 0%, #016490 100%);
    color: #ffffff;
    transform: scale(1.08) rotate(-4deg);
    box-shadow: 0 8px 18px rgba(168, 85, 247, 0.35);
}

/* Typography Details */
.contact-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #818cf8;
    margin-bottom: 4px;
}

.contact-info h4 {
    color: #f8fafc;
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 8px 0;
    letter-spacing: -0.3px;
}

.contact-info p {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
}

.contact-link {
    color: #cbd5e1;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    word-break: break-all;
    position: relative;
    transition: color 0.3s ease;
}

.contact-link::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 1px;
    bottom: -2px;
    left: 0;
    background: #016490;
    transition: width 0.3s ease;
}

.contact-link:hover {
    color: #ffffff;
}

.contact-link:hover::after {
    width: 100%;
}


.sn-reviews-section {
    padding: 85px 0;
    background: #080808;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #ffffff;
}

.sn-reviews-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
}

.sn-reviews-badge {
    display: inline-block;
    color: #7ED321;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.sn-reviews-header h2 {
    font-size: 38px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 14px;
    line-height: 1.25;
}

.sn-reviews-header h2 strong {
    color: #7ED321;
    font-weight: 700;
}

.sn-reviews-subtext {
    font-size: 15.5px;
    font-weight: 400;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

.sn-reviews-space {
    height: 40px;
}

.sn-review-card {
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
    margin: 10px 5px;
    height: 300px;
}

.sn-review-card:hover {
    border-color: rgba(34, 197, 94, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px -10px rgba(34, 197, 94, 0.2);
}

.sn-review-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    position: relative;
}

.sn-avatar-box {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: #ffffff;
    flex-shrink: 0;
}

.sn-bg-purple {
    background: #6b21a8;
}

.sn-avatar-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sn-user-details {
    flex: 1;
}

.sn-user-name {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sn-g-check {
    width: 15px;
    height: 15px;
}

.sn-local-guide {
    font-size: 11px;
    background: rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 500;
}

.sn-review-meta {
    display: block;
    font-size: 12px;
    color: #64748b;
    margin-top: 2px;
}

.sn-g-logo {
    margin-left: auto;
}

.sn-stars-row {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 12px;
}

.sn-star {
    color: #fbbf24;
    font-size: 16px;
}

.sn-badge-new {
    font-size: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
    font-weight: 600;
}

.sn-review-text {
    font-size: 15.5px;
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .sn-reviews-header h2 {
        font-size: 28px;
    }
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
    background: 0 0;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
    background-color: #fff!important;
    display: none;
}

.sn-counter-section {
    padding: 30px 0;
    background: transparent;
}

.sn-counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.sn-counter-card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    backdrop-filter: blur(12px);
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.sn-counter-card:hover {
    background: rgba(30, 30, 30, 0.8);
    border-color: rgba(126, 211, 33, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

.sn-counter-icon-wrap {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.sn-counter-card:hover .sn-counter-icon-wrap {
    transform: scale(1.1);
}

.sn-counter-icon {
    width: 48px;
    height: 48px;
}

.sn-counter-info {
    display: flex;
    flex-direction: column;
}

.sn-counter-num {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin: 0 0 4px 0;
    letter-spacing: -0.5px;
}

.sn-counter-lbl {
    font-size: 13.5px;
    color: #94a3b8;
    margin: 0;
    font-weight: 500;
    line-height: 1.3;
}

/* Responsive Grid */
@media (max-width: 991px) {
    .sn-counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .sn-counter-grid {
        grid-template-columns: 1fr;
    }
}


.sn-leader-section {
    padding: 40px 0;
    background: #050505;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #ffffff;
}

.sn-leader-wrapper {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.sn-leader-img-box {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
    aspect-ratio: 4 / 5;
    max-height: 420px;
    margin: 0 auto;
}

.sn-leader-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.sn-leader-img-box:hover img {
    transform: scale(1.04);
}

.sn-leader-badge-floating {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: #7ED321;
    color: #050505;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(126, 211, 33, 0.4);
}

.sn-leader-content {
    padding-left: 15px;
}

.sn-leader-subtitle {
    display: inline-block;
    color: #7ED321;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.sn-leader-title {
    font-size: 25px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.3;
}

.sn-leader-role {
    font-size: 18px;
    font-weight: 400;
    color: #bdbdbd;
    font-style: italic;
    display: inline-block;
}

/* Stats Cards Grid */
.sn-leader-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.sn-stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-top: 3px solid #7ED321;
    padding: 16px 14px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.sn-stat-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-3px);
}

.sn-stat-num {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: #7ED321;
    line-height: 1.2;
    margin-bottom: 4px;
}

.sn-stat-lbl {
    display: block;
    font-size: 12.5px;
    color: #cbd5e1;
    font-weight: 500;
    line-height: 1.4;
}

.sn-leader-desc {
    font-size: 15.5px;
    color: #bdbdbd;
    line-height: 1.7;
    margin: 0;
}

/* Responsive Media Queries */
@media (max-width: 991px) {
    .sn-leader-wrapper {
        padding: 30px;
    }
    .sn-leader-content {
        padding-left: 0;
    }
    .sn-leader-title {
        font-size: 26px;
    }
    .sn-leader-role {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .sn-leader-section {
        padding: 50px 0;
    }
    .sn-leader-wrapper {
        padding: 20px;
        border-radius: 16px;
    }
    .sn-leader-img-box {
        max-height: 350px;
    }
    .sn-leader-stats-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .sn-stat-card {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.07);
        border-left: 3px solid #7ED321;
    }
    .sn-stat-num {
        margin-bottom: 0;
        font-size: 18px;
        min-width: 65px;
    }
    .sn-leader-role {
        display: block;
        margin-top: 4px;
    }
}

/* Card Base Styling */
.choose-box {
    padding: 28px 24px;
    color: #ffffff;
}

.choose-box h4 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: #ffffff;
}

/* Bullet List Styling */
.styled-bullet-list {
    list-style: none; /* Default list style removed for custom bullets */
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.styled-bullet-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14.5px;
    line-height: 1.5;
    color: #cbd5e1;
}

/* Custom Bullet Dots (Glow Effect) */
.bullet-dot {
    width: 8px;
    height: 8px;
    min-width: 8px;
    border-radius: 50%;
    background-color: #8bcf16;
    box-shadow: 0 0 10px #8bcf16;
    margin-top: 7px;
}

/* Hover Effect on List Items */
.styled-bullet-list li:hover .bullet-dot {
    background-color: #4ade80; /* Changes to Green on Hover */
    box-shadow: 0 0 10px rgba(74, 222, 128, 0.8);
    transform: scale(1.25);
    transition: all 0.2s ease;
}


/* Base Container */
.values-box {
    padding: 28px 24px;
    backdrop-filter: blur(12px);
    color: #ffffff;
}

/* Heading Font Size Raised */
.values-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: #ffffff;
    letter-spacing: -0.3px;
}

/* Grid Layout */
.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

/* Individual Cards */
.value-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 16px;
    transition: all 0.25s ease;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Header with Icon & Label */
.value-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

/* Icon Size Increased */
.value-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Value Title Font Size Raised */
.value-label {
    font-size: 16px;
    font-weight: 700;
    color: #f8fafc;
}

/* Description Font Size Raised */
.value-desc {
    font-size: 13.5px;
    line-height: 1.45;
    color: #94a3b8;
    margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
    .value-grid {
        grid-template-columns: 1fr;
    }
}


/* Base Section */
.sn-bottom-features {
    padding-bottom: 40px;
    background-color: #050505;
}

/* 4 Column Grid Layout */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Feature Card */
.feature-card {
    background: rgba(20, 24, 33, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    backdrop-filter: blur(12px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.feature-card:hover {
    background: rgba(30, 36, 50, 0.85);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

/* Icon Container */
.feature-icon-box {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon-box {
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* SVG Icon Size */
.feature-svg {
    width: 38px;
    height: 38px;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
}

/* Text Content */
.feature-content {
    display: flex;
    flex-direction: column;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #f8fafc;
    margin: 0 0 8px 0;
    letter-spacing: -0.3px;
    line-height: 1.25;
}

.feature-desc {
    font-size: 15.5px;
    color: #bdbdbd;
    margin: 0;
    line-height: 1.5;
    font-weight: 400;
}

/* Responsive Grid */
@media (max-width: 991px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 20px;
    }
}

/* CSS Animations */
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 15px rgba(134, 212, 32, 0.15); border-color: rgba(134, 212, 32, 0.6); }
    50% { box-shadow: 0 0 25px rgba(134, 212, 32, 0.35); border-color: rgba(134, 212, 32, 1); }
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

@keyframes spinSlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.promo-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-left: 4px solid #86d420;
    border-radius: 0 12px 12px 0;
    padding: 16px 18px;
    margin-bottom: 0px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.promo-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.promo-title {
    color: #86d420;
    margin: 0 0 6px 0;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.2px;
}

.promo-tagline {
    margin: 0 0 8px 0;
    font-size: 13px;
    color: #f1f5f9;
    font-weight: 500;
    line-height: 1.4;
}

.promo-subtext {
    margin: 0 0 12px 0;
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.4;
    /* display: flex; */
    align-items: center;
    gap: 6px;
}

.pizza-alert-title {
    color: #38bdf8;
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
}

.celebration-banner {
    background: rgba(134, 212, 32, 0.08);
    border: 1px solid #86d420;
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
    animation: pulseGlow 3s infinite ease-in-out;
}

.anim-float { animation: floatIcon 3s infinite ease-in-out; }
.anim-spin { animation: spinSlow 12s infinite linear; }

/* Hero Section Reset & Styling */
.hero-left-wrapper {
    max-width: 580px;
    font-family: 'Inter', sans-serif !important;
    color: #ffffff;
    box-sizing: border-box;
}

/* Main Heading */
.hero-left-wrapper h1 {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 52px !important;
    font-weight: 800 !important;
    line-height: 1.15 !important;
    letter-spacing: -1.5px !important;
    color: #ffffff !important;
    margin: 0 0 16px 0 !important;
}

.hero-left-wrapper h1 span {
    color: #86d420 !important; /* Bright Neon Accent */
}

/* Paragraph Text */
.hero-left-wrapper p.hero-desc {
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    color: #a1a1aa !important;
    margin: 0 0 28px 0 !important;
}

/* Review Badge */
.hero-review-card {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
}

.hero-avatars {
    display: flex;
    align-items: center;
}

.hero-avatars img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid #050505;
    margin-right: -10px;
    object-fit: cover;
}

.hero-avatars .avatar-count {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #18181b;
    border: 2px solid #050505;
    color: #86d420;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-review-info {
    display: flex;
    flex-direction: column;
}

.hero-review-info strong {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.hero-review-info small {
    font-size: 13px;
    color: #a1a1aa;
    margin-top: 2px;
}

/* Action Buttons */
.hero-btn-group {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 36px;
}

.btn-primary-apply {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #86d420;
    color: #000000 !important;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 26px;
    border-radius: 10px;
    text-decoration: none !important;
    transition: all 0.25s ease-in-out;
}

.btn-primary-apply:hover {
    background: #99e632;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(134, 212, 32, 0.2);
}

.btn-secondary-expert {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: 10px;
    text-decoration: none !important;
    transition: all 0.25s ease-in-out;
}

.btn-secondary-expert:hover {
    background: #1f1f1f;
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Bottom Ratings Footer */
.hero-stats-row {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-item .stat-text h3 {
    font-size: 20px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin: 0 !important;
    line-height: 1 !important;
}

.stat-item .stat-text p {
    font-size: 13px !important;
    color: #a1a1aa !important;
    margin: 4px 0 0 0 !important;
}

.stat-item .star-rating {
    color: #ffc107;
    font-size: 11px;
    margin-top: 2px;
    letter-spacing: 1px;
}

@media (max-width: 576px) {
    .hero-left-wrapper h1 { font-size: 38px !important; }
    .hero-btn-group { flex-direction: column; width: 100%; }
    .btn-primary-apply, .btn-secondary-expert { width: 100%; }
    .hero-stats-row { gap: 20px; }
}

/* Hero Parent Section */
.country-hero-section {
    position: relative;
    width: 100% !important;
    height: 350px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Swiper Wrapper Fix for Full Width */
.hero-background-slider {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1;
}

.hero-background-slider .swiper-wrapper {
    width: 100% !important;
    height: 100% !important;
}

.hero-background-slider .swiper-slide {
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

/* Dark Tint Layer */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Image ke upar halka dark shade */
    z-index: 2;
    pointer-events: none;
}

/* Hero Content Layer */
.hero-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
}

.page-hero-heading h1 {
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
    text-transform: capitalize;
    margin: 0;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .country-hero-section {
        height: 250px;
    }
    .page-hero-heading h1 {
        font-size: 30px;
    }
}

