@charset "UTF-8";

:root {
  /* UN COLOR */
  --primary-color: #062D51;
  --secondary-color: #171d2e;
  --secondary-color: #171d2e;
  --tertiary-color: #007b7f;
  --white: #ffffff;
  --black: #000000;
  --hover-color: #2088e8;

  /* UN FONTS FAMILY  */
  --main-font: "Inter", sans-serif;
  --secondary-font: "Manrope", sans-serif;

  /* UN FONTS SIZE */
  --h1: clamp(2rem, 4vw, 3.5rem);
  --h2: clamp(1.6rem, 3vw, 2.5rem);
  --h3: clamp(1.3rem, 2.5vw, 2rem);
  --h4: clamp(1.1rem, 2vw, 1.6rem);
  --h5: clamp(1rem, 1.5vw, 1.3rem);
  --h6: clamp(0.9rem, 1.2vw, 1.1rem);
}

html {
  font-size: 16px;
}



body {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: var(--white);
  opacity: 1;
  transition: opacity 0.5s ease;
}

body.fade-out {
  opacity: 0;
}

*,
::after,
::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

h1 {
  font-size: var(--h1);
  font-weight: 700;
  line-height: 1.2;
  text-transform: capitalize;
}


h2 {
  font-size: var(--h2);
  font-weight: 600;
  line-height: 1.3;
}

h3 {
  font-size: var(--h3);
  font-weight: 600;
}

h4 {
  font-size: var(--h4);
}

h5 {
  font-size: var(--h5);
}

h6 {
  font-size: var(--h6);
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--main-font);
  font-weight: 600;
  /* color: var(--black); */
}

p,
li,
a,
span,
div {
  font-family: var(--secondary-font);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
}

button {
  all: unset;
  cursor: pointer;
}

.btn span {
  color: var(--white);
}


body .btn:hover {
  /* background-color: var(--hover-color); */
  color: var(--white);
}

body a {
  text-decoration: none;
}

main {
  margin: 0;
}

section {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 0;
}

.container {
  padding: 0 20px;
}

li {
  list-style: none;
  text-decoration: none;
}

header {
  background: transparent;
  padding: 10px 0;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 999;
  display: flex;
  align-items: center;

}

.fixed-header {
  position: fixed;
  background-color: var(--secondary-color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 0 4px 2px rgb(255 255 255 / 10%);
  box-shadow: 0 0 4px 2px rgb(255 255 255 / 10%);
}

.fixed-header ul li a,
.fixed-header .menu-toggle i {
  color: var(--white);
}

#nav-menu.show a {
  color: var(--black);

}

nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}

.nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#nav-menu {
  display: none;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

.menu-toggle i {
  color: var(--black);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.siteLogo img {
  width: 100%;
  max-width: 130px;
  height: auto;
}

header ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

header ul li {
  list-style: none;
}

header ul li a {
  color: var(--black);
  font-size: 17px;
  text-decoration: none;
  list-style: none;
  font-weight: 700;
  position: relative;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

header ul li a:hover,
.menu-toggle i:hover {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: var(--hover-color);
}

/* Active page underline */
header ul li a.is-active {
  color: var(--hover-color);
}

header ul li a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  /* uses text color */
}


/* Base button */
.btn {
  display: inline-block;
  padding: 10px 18px;
  font-weight: 700;
  border-radius: 30px;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease;

  /* Light theme default */
  color: #fff;
  background: linear-gradient(90deg, #4f46e5, #06b6d4);
  text-transform: capitalize;
  transition: all 0.4s ease;
}

/* Hover effect */

.btn::before,
.theme-toggle::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #06b6d4, #9333ea);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.btn:hover::before,
.theme-toggle:hover::before {
  opacity: 1;
}

/* Hover lift */
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
}

/* Active (click feel) */
.btn:active {
  transform: scale(0.96);
}



.hs-button .btn:hover i {
  -webkit-animation: kul11 0.5s ease-in-out alternate both;
  animation: kul11 0.5s ease-in-out alternate both;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.hs-button .btn:hover {
  -webkit-box-shadow: 0 0.15rem 0 0 #a2a4a9;
  box-shadow: 0 0.15rem 0 0 #a2a4a9;
  background-color: var(--hover-color);
  text-decoration: none;
  color: var(--white);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}



/* main */

/* hero-section */
.overlay {
  padding-top: 75px;
  height: auto;
  margin: auto;
  background-size: cover;
  background-position: top;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.verify-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  border-radius: 100px;
  color: var(--tertiary-color);
  background-color: var(--white);
  text-transform: capitalize;
  margin-bottom: 10px;

}

.verify-info span {
  font-size: 13px;
  font-weight: 500;
}

.verify-tag {
  color: var(--white);
  background-color: var(--tertiary-color);
  padding: 5px 9px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 7px;
  text-transform: capitalize;
}

.verify-date {
  padding-right: 10px;
}

.overlay h1 {
  background: linear-gradient(90deg, #ef1313, #4422ee, #180258);
  /* background-size: 200% auto; */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);

}

/* Your hero section */
.overlay {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Animated gradient layer */
.overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      #4f46e5,
      #06b6d4,
      #9333ea,
      #4f46e5);
  background-size: 300% 300%;
  animation: gradientMove 10s ease infinite;
  opacity: 0.15;
  z-index: -2;
}

/* Soft glowing blobs */
.overlay::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.4), transparent 70%);
  top: -100px;
  left: -100px;
  animation: floatBlob 12s ease-in-out infinite;
  z-index: -1;
  filter: blur(80px);
}

/* Gradient animation */
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Floating animation */
@keyframes floatBlob {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(200px, 150px);
  }
}

.hero-section {
  min-height: 300px;


}

.hero-section .container {
  padding: 20px 20px;
}

/* heading-section */

.hero-sectiontext {
  color: #f1f1f1;
  position: relative;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.hero-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
  /* width: 50%; */
}

.hero-sectiontext h2 {
  color: var(--white);
  font-size: 40px;
  font-weight: 600;
}

.hero-sectiontext p {
  color: var(--black);
  font-size: 18px;

}

@-webkit-keyframes kul11 {
  to {
    -webkit-transform: translateX(0.5rem);
    transform: translateX(0.5rem);
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
}

@keyframes kul11 {
  to {
    -webkit-transform: translateX(0.5rem);
    transform: translateX(0.5rem);
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
}

/* cards section */

/* PINNED CARD STYLING */
.rating-badge {
  position: absolute;
  top: 0;
  left: 7rem;
  transform: translate(-50%, -50%);
  background: var(--tertiary-color);
  color: var(--white);
  border: none;
  cursor: pointer;
  padding: 3px 8px;
  border-radius: 6px;
  display: none;
  z-index: 444;
  text-transform: capitalize;
  text-align: center;
}

/* .rating-badge.active {
  background: gold;
  color: black;
} */
.pinned .rating-badge {
  display: block;
}

.card1.pinned {
  border: 2px solid gold;
}


/* CARD STYLING */
.card1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-radius: 10px;
  padding: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-shadow: 0 1px 2px 1px rgba(60, 64, 67, 0.3), 0 1px 2px 0 rgba(60, 64, 67, 0.15);
  box-shadow: 0 1px 2px 1px rgba(60, 64, 67, 0.3), 0 1px 2px 0 rgba(60, 64, 67, 0.15);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: var(--white);
  margin-bottom: 30px;
  position: sticky;
  top: 0;
}

.card-link {
  position: absolute;
  inset: 0;
  z-index: 10;
}

/* Keep buttons & inner links clickable */
.card1 button,
.card1 .available-on ul li span,
.card1 a:not(.card-link) {
  position: relative;
  z-index: 20;
}

.card1:hover {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}

/* discount value  */
.discount {
  border-top-right-radius: 6px;
  position: absolute;
  overflow: hidden;
  height: 50px;
  width: 100px;
  z-index: 5;
}

.discount-new {
  right: 0;
  top: 0;
}

.discount-text {
  z-index: 5;
  text-align: right;
  right: 5px;
  top: 5px;
  position: absolute;
  font-family: sans-serif;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.2em;
  width: 50%;
  color: var(--white);
}

.triangle-bg {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 100px 50px 0;
  border-color: transparent var(--primary-color) transparent transparent;
  z-index: 1;
}

.content-area {
  width: 75%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 25%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;

  /* margin: 30px; */
  border-radius: 10px;
  padding: 70px 0;
  border-right: 2px solid #d8d8d87d;
}

.left p {
  font-size: 16px;
  color: var(--black);
  margin: 1rem 0;
}

.rank {
  position: absolute;
  left: 1.25rem;
  top: 10px;
  font-size: 4.25rem;
  color: transparent;
  -webkit-text-stroke: 2px var(--tertiary-color);
  text-shadow: none;
  font-weight: 700;
  line-height: 1em;
}

.store-logo {
  max-width: 180px;
  border-radius: 6px;
  /* -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1); */
}

.content-area .content {
  padding: 10px 20px;
}

.content-area .content h3 {
  color: var(--tertiary-color);
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 1rem;
  position: relative;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: space-between;
}

.content-area .content h3 b {
  color: #f20f22;
  font-weight: 700;
}

.content-area .content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.content-area .content li {
  margin: 5px 0;
}

.content-area .content li::before {
  content: "✔";
  color: #f30e22;
  margin-right: 8px;
}

.price-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: right;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 5px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 200px;
  flex: 1 1 200px;
}

.rating {
  font-size: 2em;
  font-weight: bold;
  color: var(--tertiary-color);
}

/* stars ratting */
.rating-widget {
  text-align: center;
  background: rgba(0, 0, 0, 0);
}

.stars {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.stars-empty,
.stars-filled {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2px;
}

.stars-empty {
  color: #ddd;
  z-index: 1;
}

.stars-filled {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 0;
  -webkit-transition: width 1.2s ease;
  -o-transition: width 1.2s ease;
  transition: width 1.2s ease;
}

.stars-empty span,
.stars-filled span {
  min-width: 24px;
  min-height: 24px;
  background: var(--primary-color);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  z-index: 5;
}

.stars-filled span {
  background: var(--tertiary-color);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #f2c405;
}

.rating-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}

.rating-value {
  font-size: 1rem;
  font-weight: 700;
}

.rating-meta {
  font-size: 0.8rem;
  color: #666;
}

.pulse {
  -webkit-animation: pulseAnim 650ms ease;
  animation: pulseAnim 650ms ease;
}

@-webkit-keyframes pulseAnim {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  40% {
    -webkit-transform: scale(1.06);
    transform: scale(1.06);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes pulseAnim {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  40% {
    -webkit-transform: scale(1.06);
    transform: scale(1.06);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/* stars ratting end */
.approx-rate {
  font-size: 1.2em;
  /* color:#333; */
}

.approx-rate b {
  color: var(--tertiary-color);
}

.available-on {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.available-on ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  text-decoration: none;
  gap: 10px;
  flex-wrap: wrap;
}

.available-on>li {
  font-size: 20px;
  font-weight: 700;
  /* color: #444; */
}

.available-on li::before {
  display: none;
}

/*  */
.available-on li {
  position: relative;
}

.available-on i {
  font-size: 26px;
  /* color: #444; */
  -webkit-transition: color 0.3s, -webkit-transform 0.3s;
  transition: color 0.3s, -webkit-transform 0.3s;
  -o-transition: transform 0.3s, color 0.3s;
  transition: transform 0.3s, color 0.3s;
  transition: transform 0.3s, color 0.3s, -webkit-transform 0.3s;
  cursor: pointer;
}

/* Tooltip hover effect */
.available-on ul li span[title]:hover::after {
  content: attr(title);
  position: absolute;
  bottom: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #333;
  color: var(--white);
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 1;
  pointer-events: none;
  -webkit-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.available-on ul li span[title]:hover i {
  color: #E74C3C;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.hs-button .btn {
  background-color: var(--primary-color);
  color: var(--white);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.visit-btn {
  color: var(--white);
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 1em;
  background-color: var(--primary-color);
  /* cursor: pointer; */
  margin-top: 10px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
}

.visit-btn:hover {
  color: var(--white);
  background-color: #E74C3C;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  -webkit-filter: brightness(1.08);
  filter: brightness(1.08);
}

.card-section .card1:nth-of-type(4n + 1) .visit-btn {
  background: -webkit-gradient(linear, left top, right top, from(#7C3AED), to(#3B82F6));
  background: -o-linear-gradient(left, #7C3AED, #3B82F6);
  background: linear-gradient(to right, #7C3AED, #3B82F6);
  color: var(--white);
}

.card-section .card1:nth-of-type(4n + 2) .visit-btn {
  background: -webkit-gradient(linear, left top, right top, from(#2563EB), to(#06B6D4));
  background: -o-linear-gradient(left, #2563EB, #06B6D4);
  background: linear-gradient(to right, #2563EB, #06B6D4);
  color: var(--white);
}

.card-section .card1:nth-of-type(4n + 3) .visit-btn {
  background: -webkit-gradient(linear, left top, right top, from(#ff4800), to(#5f46f0));
  background: -o-linear-gradient(left, #ff4800, #5f46f0);
  background: linear-gradient(to right, #ff4800, #5f46f0);
  color: var(--white);
}

.card-section .card1:nth-of-type(4n + 4) .visit-btn {
  background: -webkit-gradient(linear, left top, right top, from(#059669), to(#34D399));
  background: -o-linear-gradient(left, #059669, #34D399);
  background: linear-gradient(to right, #059669, #34D399);
  color: var(--white);
}

.card-section .card1:nth-of-type(4n + 1) .visit-btn {
  background: -webkit-gradient(linear, left top, right top, from(#7C3AED), to(#3B82F6));
  background: -o-linear-gradient(left, #7C3AED, #3B82F6);
  background: linear-gradient(to right, #7C3AED, #3B82F6);
  color: var(--white);
  background-size: 160% 100%;
  background-position: left center;
}

.card-section .card1:nth-of-type(4n + 1) .visit-btn:hover {
  background-position: right center;
}

.card-section .card1:nth-of-type(4n + 2) .visit-btn {
  background: -webkit-gradient(linear, left top, right top, from(#2563EB), to(#06B6D4));
  background: -o-linear-gradient(left, #2563EB, #06B6D4);
  background: linear-gradient(to right, #2563EB, #06B6D4);
  color: var(--white);
  background-size: 160% 100%;
  background-position: left center;
}

.card-section .card1:nth-of-type(4n + 2) .visit-btn:hover {
  background-position: right center;
}

.card-section .card1:nth-of-type(4n + 3) .visit-btn {
  background: -webkit-gradient(linear, left top, right top, from(#ff4800), to(#5f46f0));
  background: -o-linear-gradient(left, #ff4800, #5f46f0);
  background: linear-gradient(to right, #ff4800, #5f46f0);
  color: var(--white);
  background-size: 160% 100%;
  background-position: left center;
}

.card-section .card1:nth-of-type(4n + 3) .visit-btn:hover {
  background-position: right center;
}

.card-section .card1:nth-of-type(4n + 4) .visit-btn {
  background: -webkit-gradient(linear, left top, right top, from(#059669), to(#34D399));
  background: -o-linear-gradient(left, #059669, #34D399);
  background: linear-gradient(to right, #059669, #34D399);
  color: var(--white);
  background-size: 160% 100%;
  background-position: left center;
}

.card-section .card1:nth-of-type(4n + 4) .visit-btn:hover {
  background-position: right center;
}

/* /Privacy Policy */
.sim-other-pages {
  margin-bottom: 0;
  padding: 50px 0;
}

.sim-other-pages .container {
  padding: 30px;
  border-radius: 20px;
  background-color: var(--white);
  border: 2px solid #d8d8d87d;
}

.sim-other-pages .container div {
  margin: 30px 0;
}

.sim-other-pages h1 {
  margin-bottom: 20px;
  padding-left: 17px;
  border-left: 6px solid var(--primary-color);
}

.sim-other-pages h2 {
  font-size: 30px;
  padding-bottom: 10px;
}

/* Disclaimer Section */
.disclaimer-section {
  padding-bottom: 40px;
  padding-top: 20px;
}

.disclaimer-section .disclaimer-box {
  padding: 20px;
  border-radius: 10px;
  -webkit-box-shadow: 0 1px 2px 1px rgba(60, 64, 67, 0.3), 0 1px 2px 0 rgba(60, 64, 67, 0.15);
  box-shadow: 0 1px 2px 1px rgba(60, 64, 67, 0.3), 0 1px 2px 0 rgba(60, 64, 67, 0.15);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.disclaimer-section .container h2 {
  border-left: 4px solid var(--primary-color);
  padding-left: 10px;
  font-size: 25px;
}

.disclaimer-section .container p {
  padding: 10px 0;
  font-size: 14px;
  margin: auto;
}

/* faq page */

.faq-page .faq-item {
  margin-bottom: 25px;
  padding: 20px;
  border-radius: 10px;
  background: var(--white);
}

/* .faq-page .faq-item p {
  color: var(--white)
} */

.faq-page .faq-item h2 {
  margin-bottom: 10px;
  font-size: 22px;
}

/* FAQ Preview Section On Home Page*/
.faq-preview {
  padding-bottom: 40px;
}

.faq-grid {
  display: flex;
  /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
  gap: 30px;
  /* max-width: 1200px; */
  margin: 30px auto;
  flex-wrap: wrap;
}

.faq-item {
  min-width: 300px;
  flex: 1 1 calc(33.33% - 20px);
  background: #f9f9f9;
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s;
  box-shadow: 0 1px 2px 1px rgba(60, 64, 67, 0.3), 0 1px 2px 0 rgba(60, 64, 67, 0.15);

}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 2px 2px 3px 1px rgba(0, 0, 0, 0.1);
}

.faq-item h4 {
  color: var(--black);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.faq-item p {
  color: var(--black);
  line-height: 1.4;
  margin-bottom: 0;
}

.faq-item a {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: transform 0.3s;
}

.faq-item a:hover {
  transform: translateX(5px);
}


/* About us page Css */
.about-content-section {
  padding: 50px 0;
  /*padding-top: 20px;*/
}

.inner-banner {
  min-height: 350px;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
}

.inner-banner .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.inner-text {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  margin-bottom: auto;
  padding: 20px 10px;
}

.inner-text h1 {
  color: var(--white);
  padding-bottom: 20px;
}

.inner-text p {
  color: var(--black);
  max-width: 600px;
}

.about-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  gap: 30px;
  padding: 30px 10px;
  margin-bottom: 40px;
  background-color: var(--white);
  border-radius: 10px;
  border: 2px solid #d8d8d87d;
}

.about-card-text {
  width: 49%;
}

.card-flex {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.about-card img {
  width: 49%;
  max-width: 510px;
}

.about-card-text h2 {
  padding-bottom: 10px;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: capitalize;
}

.about-card-text p {
  font-weight: 500;
  /* color: #000; */
}

.get-in-touch {
  padding: 40px;
  background-color: #e6f3fe;
  border-radius: 40px;
}

.get-in-touch h2 {
  padding-bottom: 20px;
  color: var(--primary-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.get-in-touch p {
  color: #000000;
}

.get-in-touch p a {
  color: var(--tertiary-color);
}

.get-in-touch p a:hover {
  color: var(--hover-color);
}

.get-in-touch h2 img {
  height: 55px;
}

/* Blogs Page CSS */
.editor-pick-container {
  padding-top: 20px;
}

.blog-editor-pick-header {
  padding-bottom: 15px;
}

.blog-editor-pick-header h2 {
  color: var(--primary-color);
  padding-bottom: 15px;
  font-weight: 600;
}

.editor-pick-container .blog-editor-card {
  margin: 0;
  background-color: var(--secondary-color);
  border-radius: 20px;
  -webkit-box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 2px 0 rgba(60, 64, 67, 0.15);
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 2px 0 rgba(60, 64, 67, 0.15);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.blog-editor-card h3 {
  /* font-size: 34px; */
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--white);
}

.blog-editor-card p {
  color: var(--white);
  font-size: 17px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-editor-card .featured-blog-image {
  margin: 0;
  padding: 0;
}

.blog-editor-card img {
  padding: 0;
  max-height: -moz-max-content;
  max-height: -webkit-max-content;
  max-height: max-content;
  width: 100%;
  min-height: -webkit-fill-available;
  border-radius: 10px;
  -o-object-fit: cover;
  object-fit: cover;
}

.blog-editor-card .blog-editor-content {
  padding: 20px;
  padding-left: 30px;
  margin: auto 0;
  color: var(--white);
}

.latest-research-section {
  padding: 50px 0;
}

.blog-read-more {
  /*display: block;*/
  margin-top: 1rem;
}
.blog-read-more .btn{
    width: max-content;
}

.latest-research-container .latest-research-card {
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-bottom: 20px;
  gap:20px;
}

.latest-research-card .single-card {
  width: calc(50% - 10px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
      border: 2px solid #d8d8d87d;
      border-radius: 10px;
    padding: 0;
}

.single-card img {
  width: 100%;
  height: 302px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 10px 10px 0 0;
}

.blog-editor-content.col {
    padding: 20px;
}

.latest-research-card .single-card h4 {
  font-size: 20px;
  line-height: 1.4;
  /*padding-top: 15px;*/
}

.blog-load-more {
  display: flex;
  padding-top: 20px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* functional blog page, single post css */
form label {
  display: block;
  color: var(--white);
}

form input {
  padding: 10px;
  margin-top:10px;
}

.container.single-post {
  padding-top: 40px;
  padding-bottom: 30px;
}

.single-post .content {
  width: 70%;
}

.single-post .featured-image {
  width: 100%;
  margin-bottom: 20px;
  -o-object-fit: cover;
  object-fit: cover;
}

.single-post .content img {
  width: 100%;
  max-height: 470px;
  margin: 20px 0;
  -o-object-fit: cover;
  object-fit: cover;
}

.single-post h1 {
  font-size: 34px;
  font-weight: 600;
}

.single-post h2 {
  font-size: 28px;
  font-weight: 600;
}

.single-post h3 {
  font-size: 22px;
  font-weight: 600;
}

.single-post p,
.single-post li {
  font-size: 16px;
}

.single-post ol,
.single-post ul {
  margin: 0;
  padding: 0 0 20px 20px;
}

.single-post ol li {
  list-style-type: decimal;
}

.single-post ul li {
  list-style-type: disc;
}


.single-post .content h2 {
  font-size: 25px;
}

/* Contact Page CSS */
.contact-page {
  padding-top: 80px;
  height: auto;
  min-height: 600px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contact-page .container-form {
  background: linear-gradient(45deg, #ffffff, transparent);
  padding: 50px 30px;
  border-radius: 20px;
  /* -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;

}

.container-form h1 {
  text-align: center;
  font-weight: 700;
  color: var(--primary-color);
}

.container-form p {
  margin: 2rem;
  text-align: center;
  color: var(--white);
  text-shadow: 2px 2px 0 #000;
}

.common-form input,
.common-form textarea {
  margin: 0.1rem 0;
  padding: 0.4rem;
  width: 90%;
  min-width: 150px;
  max-width: 600px;
  font-size: 1rem;
  border-radius: 0.65rem;
  border: 1px solid #b3b3b3;
  display: block;
}

.container-form .submit {
  font-size: 17px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
        display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.container-form .submit:hover {
  background-color: var(--hover-color);
}

.contact-page form {
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.popup-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.container-form {
  color: #f1f1f1;
  text-align: center;
  position: relative;
  /* max-width: 550px; */
  width: 50%;
  margin: 0 auto;
}

.contact-image {
  width: 50%;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.contact-image img {
  position: relative;
  /* max-width: 550px; */
  width: 100%;
  margin: 20px auto;
}

.form-section .container-form {
  max-width: 28rem;
}

/* form popup */
.form-section .form-popup form {
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 28rem;
  background-color: #eef;
  border-radius: 2rem;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  gap: 0;
  padding: 30px;
}

.form-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 50px 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 9999;
}

.form-section .form-popup h1 {
  text-shadow: 0 2px 5px rgba(22, 0, 0, 0.5);
  margin-bottom: 10px;
  padding: 10px 15px;
  color: #525151;
  border-radius: 10px;
}

/* input,
textarea,
.submit {
  -webkit-box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
} */
/* Overlay */
.form-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 99999;
}

/* Show state */
.form-section.active {
  display: flex;
  opacity: 1;
}

/* Popup box */
.form-popup {
  transform: scale(0.8);
  opacity: 0;
  transition: all 0.3s ease;
}

/* Animate popup */
.form-section.active .container-form {
  transform: scale(1);
  opacity: 1;
}

/* Prevent background scroll */
body.no-scroll {
  overflow: hidden;
}


/* floting vpn offer */
.flooting-offer {
  position: fixed;
  bottom: 20px;
  left: 0;
  right: 0;
  z-index: -1;
  padding-top: 20px;
  transition: all 0.4s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.flooting-offer.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 9999;
}

.flooting-offer .vpn-banner .vpn-left a,
.flooting-offer .vpn-banner .vpn-right a,
.flooting-offer .vpn-banner button {
  position: relative;
  z-index: 20;
}


.flooting-offer .vpn-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  border: 2px solid #222;
  border-radius: 12px;
  background: #f5f5f5;
  gap: 20px;
  /* opacity: 0; */
  /* visibility: hidden; */
  /* transform: translateY(20px);  */
  transition: all 0.4s ease;
  width: calc(100% - var(--size-200) * 2);


}



/* LEFT SIDE */
.flooting-offer .vpn-banner .vpn-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* LOGO */
.flooting-offer .vpn-logo img {
  width: 100%;
  min-width: 100px;
  max-width: 200px;
  min-height: 60px;
  object-fit: contain;
}

/* CONTENT */
/* .vpn-content {
  max-width: 650px;
} */

.flooting-offer .vpn-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

/* BADGE */
.badge {
  background: #111;
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
}

/* RATING */
.flooting-offer .rating {
  background: #eee;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 14px;
}

/* TEXT */
.flooting-offer .vpn-text {
  font-size: 14px;
  line-height: 1.4;
  color: #222;
  margin-bottom: 0;
}

.flooting-offer .vpn-text strong {
  font-weight: 700;
}

/* RIGHT BUTTON */
.flooting-offer .vpn-btn {
  background: #0b0b0b;
  color: #fff;
  padding: 14px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  display: inline-block;
  min-width: 120px;
}

.flooting-offer .vpn-btn:hover {
  background: #222;
}


/* AD POPUP  */
/* SECTION = OVERLAY */
#vpnPopupSection {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);

  display: none;
  /* hidden by default */

  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#vpnPopupSection .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* CONTAINER = POPUP BOX */
#vpnPopupSection .popup-container {
  background: #fff;
  max-width: 750px;
  width: 95%;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

/* CLOSE */
#vpnPopupSection .close-btn {
  position: absolute;
  top: 0px;
  right: 16px;
  font-size: 40px;
  cursor: pointer;
}

/* FLEX */
#vpnPopupSection .popup-content {
  display: flex;
}

/* LEFT */
#vpnPopupSection .popup-left {
  width: 50%;
  background: #eef3ff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

#vpnPopupSection .popup-left .card-link {
  display: flex;
  justify-content: center;
  align-items: center;
}

#vpnPopupSection .popup-left img {
  width: 80%;
}

/* RIGHT */
#vpnPopupSection .popup-right {
  width: 50%;
  padding: 20px;
}

/* BADGE */
#vpnPopupSection .pop-badge {
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 12px;
  background: #111;
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
}

/* TEXT */
#vpnPopupSection .popup-right h2 {
  font-size: 22px;
  margin: 15px 0;
  color: var(--black);
}

#vpnPopupSection .popup-right p {
  color: #555;
  margin-bottom: 20px;
}

/* BUTTON */
#vpnPopupSection .cta-btn {
  width: 100%;
  padding: 14px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  justify-content: center;
}

/* NO THANKS */
#vpnPopupSection .no-thanks {
  margin-top: 12px;
  text-align: center;
  color: #777;
  cursor: pointer;
}

/* AD POPUP END */

/* 404 Page Styling */
.error-wrapper {
  min-height: 80vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: -o-linear-gradient(315deg, #0f172a, #1e293b);
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
}

.error-box h1 {
  font-size: 120px;
  margin: 0;
  letter-spacing: 5px;
  -webkit-animation: float 3s ease-in-out infinite;
  animation: float 3s ease-in-out infinite;
}

.error-box h2 {
  margin: 10px 0 20px;
  font-weight: 500;
}

.error-box p {
  max-width: 500px;
  margin: 0 auto 30px;
  opacity: 0.8;
}

.error-btns a {
  display: inline-block;
  padding: 12px 25px;
  margin: 5px;
  border-radius: 30px;
  text-decoration: none;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.home-btn {
  background: #3b82f6;
  color: #fff;
}

.home-btn:hover {
  background: #2563eb;
}

.blog-btn {
  border: 1px solid #fff;
  color: #fff;
}

.blog-btn:hover {
  background: #fff;
  color: #000;
}

/* Floating animation */
@-webkit-keyframes float {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  50% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }

  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@keyframes float {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  50% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }

  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

/* Glowing dots background */
.background-dots {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
  z-index: 0;
}

.background-dots span {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  -webkit-animation: move 10s linear infinite;
  animation: move 10s linear infinite;
}

@-webkit-keyframes move {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
    opacity: 0;
  }
}

@keyframes move {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
    opacity: 0;
  }
}

/*404 error page styling end*/

/* footer styling */
/* ===== BASE ===== */

.footer {
  padding: 40px 20px;
  background-color: var(--secondary-color);
  position: relative;
  color: var(--white);
  /* padding-bottom: 180px; */
}

.footer-container {
  margin: auto;
}

/* ===== ROW 1 ===== */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 20px;
}

/* LOGO */
.footer-logo img {
  max-width: 170px;
}

/* EMAIL */
.footer-email a {
  color: var(--white);
  text-decoration: none;
  transition: 0.3s;
}

/* ===== ROW 2 ===== */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LINKS */
.footer-links {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}

footer a {
  color: var(--white);
  text-decoration: none;
  transition: 0.3s;
}

footer a:hover {
  color: var(--hover-color);
  text-decoration: underline;
}

/* COPYRIGHT */
.footer-copy {
  font-size: 0.85rem;
  opacity: 0.8;
}

.footer-copy p {
  margin: 0;
}

/* scroll to top button */
.smooth-scroll {
  position: fixed;
  position: fixed;
  bottom: 15px;
  right: 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  cursor: pointer;
  z-index: 99999;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.smooth-scroll a {
  position: fixed;
  inset: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

.smooth-scroll i {
  color: var(--white);
  font-size: 24px;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.smooth-scroll:hover {
  background: var(--hover-color);
}

.smooth-scroll:hover i {
  transform: translateY(-5px);
}

#goTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}



/* light theme start*/

/* toggle button of light and dark mode */

:root {
  --bg-color: #ffffff;
  --text-color: #111111;
}

body.dark {
  --bg-color: #0b0f19;
  --text-color: #ffffff;
}

/* Apply variables */
body {
  background: var(--bg-color);
  color: var(--text-color);
  transition: all .01s ease, background-color 0.1s ease,
    color 0.01s ease,
    border-color 0.01s ease;
}

/* Toggle button styling */
.theme-toggle {
  border: none;
  background: none;
  padding: 8px;
  border-radius: 13px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin-right: 20px; */
  position: relative;
  background: linear-gradient(90deg, #4f46e5, #06b6d4);
  overflow: hidden;
}

/* .fixed-header .sun,
.fixed-header .moon {
  color: var(--white);
} */

.sun {
  display: inline;
  color: var(--white);
}

.moon {
  display: none;
  color: var(--white);
}

body.dark .sun {
  display: none;
}

body.dark .moon {
  display: inline;
}

/* make changes */

body.dark .blog-editor-pick-header h2 {
  color: #88c5ff;
}

body.dark .overlay::before {
  opacity: 0.25;
}

body.dark header ul li a,
body.dark .menu-toggle i,
body.dark .hero-sectiontext p,
body.dark .inner-text p,
body.dark .faq-item p,
body.dark .faq-item h4,
body.dark .latest-research-card .single-card h4 {
  color: var(--white);
}

body.dark .overlay::after {
  background: radial-gradient(circle, rgba(0, 138, 197, 0.35), transparent 70%);
}


body.dark .overlay h1 {
  background: linear-gradient(90deg, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* body.dark .overlay.contact-page h1 {
  background: linear-gradient(45deg,  #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
} */

body.dark .about-card,
body.dark .sim-other-pages .container {
  background: var(--secondary-color);
}

body.dark .card1,
body.dark .faq-item {
  background: var(--secondary-color);
  /* padding-top: 60px; */
}


body.dark .store-logo {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

body.dark .about-card-text h2 {
  color: var(--hover-color);
}

body.dark .hero-section .hs-button .btn {
  background: linear-gradient(90deg, #6366f1, #22d3ee);
  box-shadow: 0 0 0 transparent;
}

body.dark .hero-section .hs-button .btn:hover {
  box-shadow: 0 10px 30px rgba(34, 211, 238, 0.35);
}


/* Responsive Styles */
@media (max-width: 991px) {

  .nav-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 220px;
    background: #fff;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 20px 0;
    height: 70vh;
    overflow-y: scroll;
  }

  .nav-menu ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  #nav-menu.show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  #nav-menu ul li {
    list-style: none;
    border-bottom: 1px solid #000000;
    width: 90%;
  }

  header ul li a {
    color: #333;
  }

  header ul li a:hover {
    color: var(--hover-color);
  }

  #nav-menu .hs-button {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border: none;
  }

  .hambar-hs-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  /* hero section  */

  .hero-content {
    text-align: left;
    align-items: flex-start;
  }

  .hero-sectiontext {
    justify-content: flex-start;
  }

  .hero-sectiontext p {
    max-width: 530px;
  }

  .card1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    /* padding-top: 60px; */
  }

  .content-area {
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .left {
    width: 100%;
    gap: 0;
    border-right: 0;
    border-bottom: 2px solid #d8d8d87d;
    padding: 30px 0;
  }

  /* .rating-badge{
    position: static;
  } */

  .faq-preview .faq-item {
    flex: 1 1 calc(50% - 20px);
  }

  /* blog */
  .blog-editor-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .blog-editor-card h3 {
    font-size: 22px;
  }

  .blog-editor-card img {
    width: 100%;
    min-height: 230px;
  }

  /* footer */

  /* floating offer */
  .vpn-logo img {
    max-width: 100px;
    min-height: 60px;
    object-fit: contain;
  }
}

@media (max-width: 767px) {
  .hero-sectiontext h2 {
    font-size: 30px;
  }


  .hero-sectiontext p {
    font-size: 16px;
  }


  .btn {
    font-size: 16px;
    padding: 0.5em 1.8em;
  }

  .card1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .content-area {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .left {
    width: 100%;
    gap: 0;
  }

  .store-logo {
    width: 100%;
    max-width: 250px;
  }

  .price-section {
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 0;
    justify-content: space-around;
  }

  .card-section .card1 {
    position: relative;
    margin-bottom: 25px;
  }

  .faq-preview .faq-item {
    flex: 1 1 100%;
  }

  /* FLOOTING BANNER */
  .vpn-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .vpn-right {
    width: 100%;
  }

  .vpn-btn {
    width: 100%;
    text-align: center;
  }

  /* about */
  .about-inner-banner .container {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .inner-text {
    width: 100%;
    min-width: auto;
    /* max-width: 576px; */
  }

  .about-card {
    display: block;
  }

  .about-card-text {
    width: 100%;
  }

  .about-card img {
    width: 100%;
  }

  .latest-research-container .latest-research-card {
    margin: 0;
  }

  /* blog */
  .blog-editor-content {
    padding-top: 20px;
  }

  .latest-research-container .latest-research-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .latest-research-card .single-card {
    width: 100%;
  }

  .latest-research-card .single-card h4 {
    font-size:18px;
  }
  .single-card img{
      height: 230px;
  }

  .featured-image {
    width: 100%;
    height: 200px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
  }

  .single-post h1 {
    font-size: 28px;
  }

  .single-post .content {
    width: 100%;
  }

  /* contact */
  .popup-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .container-form {
    width: 100%;
  }

  .contact-image {
    width: 100%;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
    /* text-align: center; */
    gap: 15px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .vpn-banner {
    gap: 0;
  }

  .flooting-offer.show {
    display: none;
  }
}

@media (max-width: 575px) {
  section {
    padding-top: 25px;
  }


  .hero-sectiontext {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .hero-sectiontext h2 {
    font-size: 25px;
  }

  .hero-content {
    width: 100%;
    height: 50%;
    gap: 0;
  }

  .left {
    padding: 20px 10px;
  }

  .sim-other-pages .container {
    margin: 20px auto;
    padding: 20px;
  }

  .sim-other-pages h1::before {
    height: 35px;
    width: 4px;
  }

  .available-on {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 10px;
  }

  .hero-section .hs-button {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: self-start;
    -ms-flex-align: self-start;
    align-items: self-start;
  }

  /* ad popup  */
  #vpnPopupSection .popup-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  #vpnPopupSection .popup-left {
    width: 90%;
    margin: 20px auto;
  }

  #vpnPopupSection .popup-right {
    width: 100%;
  }

  #vpnPopupSection .popup-left .card-link {
    position: relative;
  }

  .rank {
    position: static;
  }

  .form-popup form {
    width: 100%;
    padding: 20px;
  }

  .form-section .form-popup form {
    height: 24rem;
  }

  .single-post .content h1 {
    font-size: 30px;
  }

  .single-post .content h2 {
    font-size: 25px;
  }

  .bottom-bar p {
    font-size: 14px;
  }

  .vpn-banner {
    padding: 10px;
  }

  .vpn-left {
    gap: 10px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 300px) {
  .available-on {
    display: block;
  }

  .available-on i {
    font-size: 20px;
  }

  .available-on>li {
    font-size: 17px;
  }

  .sm-logos {
    display: block;
    text-align: start;
  }

  .sm-logos ul {
    flex-wrap: wrap;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .vpn-top {
    flex-direction: column;
  }
}

@media (min-width:768px){
  .footer {
    padding-bottom: 180px;
  }
}