@import 'https://fonts.googleapis.com/css2?family=Catamaran:wght@100;200;300;400;500;600;700;800;900&display=swap';


/* homepage top main text */
.topmain-image {
  width: 70%;
  margin-left: 80px;
}

.top-main-title {
  color: #a6d3ff;
  line-height: 2;
  font-weight: 700;
  font-size: 36px;
}

.top-main h2 {
  font-weight: 500;
  font-size: 28px;
}

.top-main h3 {
  font-weight: 400;
}

.top-container {
  margin-top: 145px;
}


/* homepage features */

.container {
  margin: 0 auto;
  padding: 20px;
  padding-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.box {
  padding: 20px;
  margin: 10px;
  text-align: center;
  background-image: linear-gradient(to bottom right, #2a3c57, #20314f, #1d2a45);
  border-radius: 10px;
  height: 350px;
  width: 350px;
}


.box img {
  max-width: 100%;
  height: auto;
}

.box h4 {
  color: #a6d3ff;
  font-size: 28px;
  margin-bottom: 30px;
}

.box p {
  color: rgba(255, 255, 253, 1);
  padding-left: 20px;
  padding-right: 20px;
  font-size: 18px;
  line-height: 1.6;
}


/* homepage brand and blog */

.single-brand-product img {
  width: 200px;
  height: 200px;
  border-radius: 15px;
}

.brand-item {
  width: 25%;
  float: left;
  padding: 0 27.5px;
}

.single-brand-product {
  position: relative;
}

.single-brand-product img {
  transition: transform 0.3s ease-in-out;
}

.image-title-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #141f32;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease-in-out;
}

.image-title {
  color: #fff;
  max-width: 100%;
  text-align: left;
  padding: 10px;
  font-size: 18px;
  line-height: 1.5;
  transition: opacity 0.3s ease-in-out;
}

.single-brand-product:hover img {
  transform: scale(1.1);
}

.single-brand-product:hover .image-title-container {
  opacity: 1;
}

#load-more {
 
  color: #a6d3ff;
  border: none;
  padding: 10px 10px;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 10px;
  font-size: 14px;
}

#load-more:hover {
  color: #0056b3;
}


/* homepage social widget*/
.social-media-widget {
  position: fixed;
  top: 35%;
  left: 5px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Main toggle button */
.social-toggle {
  width: 50px;
  height: 50px;
  background-color: #a6d3ff;
  color: #333;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
}

/* Social icons container */
.social-icons {
  display: none;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

/* Individual social icons */
.social-icons .social-icon {
  width: 40px;
  height: 40px;
  background-color: none;
  color: #a6d3ff;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.social-icons .social-icon:hover {
  background-color: #555;
}

.social-icons .social-icon i {
  font-size: 20px;
}

/* on screens 768px or less */
@media screen and (max-width: 768px) {
  .social-media-widget {
    display: flex;
    top: 25%;
  }

  .social-toggle {
    width: 35px;
    height: 35px;
  }
}



/* homepage VPN section*/

.fa-3x {
  padding-top: 25px;
  margin-bottom: 30px;
}

.vpn-section {
  padding-top: 80px;
}

.vpn-section .row {
  align-items: center;
  padding-top: 30px;
}

.vpn-section img {
  max-width: 80%;
  height: auto;
  margin-bottom: 20px;
  margin-left: 80px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  border-radius: 10px;
}

.vpn-section .section-title {
  margin-bottom: 40px;
  text-align: center;
}

.vpn-para p {
  text-align: left;
  line-height: 2.5;
  font-size: 20px;
  line-height: 1.8;
}

.vpn-para h2 {
  margin-bottom: 40px;
  text-align: left;
}

.app-image {
  max-width: 50%;
  height: auto;
}

/* faq */
.faq-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.faq-item h3 {
  color: #9d9e9f;
  margin-left: 30px;
}

.faq-question {
  cursor: pointer;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 5px;
}

.faq-container {
  text-align: center;
  margin-top: 10vh;
}

.widget-search-box {
  margin-bottom: 20px;
}

.search-input-container {

  max-width: 40%;
  margin: 0 auto;
}

.search-input-container input {
  margin-right: 5px;
  margin-top: 30px;
  border-radius: 10px;
}

.search-input-container button {
  background: none;
  border: none;
  cursor: pointer;
}

.faq-section {
  padding: 0px;
}

.faq-columns {
  display: flex;
  text-align: left;
  flex-direction: column;
}

.faq-list {
  list-style: none;
  padding-top: 5px;
  text-align: left;
}

.faq-list h2 {
  font-weight: 400;
  color: #a6d3ff;
  padding-bottom: 15px;
  padding-top: 15px;
}

.faq-item {
  margin-bottom: 10px;
  padding-bottom: 10px;
  position: relative;
  transition: color 0.3s;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item h3 {
  font-size: 16px;
  letter-spacing: .5px;
}

.arrow-icon {
  margin-left: 10px;
}

.categories {
  text-align: left;
}

.categories ul {
  padding-left: 15px;
}

.categories li {
  font-size: 16px;
  font-weight: 600;
  list-style-type: none;
}

.faq-answer {
  display: none;
  border: .5px solid #818080;
  border-radius: 10px;
  margin-bottom: 30px;
  letter-spacing: normal;
}

.faq-answer p {
  font-size: 16px;
  margin-top: 15px;
  margin-left: 15px;
  line-height: 1.6;
  ;
}

.selected-answer {
  display: block;
}

.faq-question-text.selected-question {
  color: #a6d3ff;
  font-weight: 720;
  padding-bottom: 20px;
}

.faq-answer.selected-answer {
  display: block;
  border: .5px solid #575656;
  padding: 10px;
}

.faq-answer {
  display: none;
}

#noResultsMessage {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin-top: 20px;
  font-size: 24px;
  text-align: center;
}

@media (max-width: 767px) {
  .hide-on-small {
    display: none !important;
  }
}

/* about page */
.about-section {
  text-align: center;
}

.about-content p {
  text-align: left;
  line-height: 2.5;
  font-size: 20px;
  line-height: 1.8;
}

.about-content h3 {
  color: #c4c5c5;
  font-weight: 700;
}

.section-title h1 {
  color: #a6d3ff;
}

.about-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.about-column {
  width: 100%;
  margin-bottom: 30px;
  margin-left: 80px;
  margin-top: 30px;
  text-align: left;
  font-size: 20px;
}

.about-column ul {
  margin-left: 20px;
  margin-top: 30px;
  line-height: 1.5;
}

.about-image {
  width: 100%;
  max-width: 400px;
  display: block;
  margin: 0 auto;
}


/* box */
.blogbox {
  padding: 20px;
  margin: 10px;
}

.blogbox img {
  border-radius: 10px;
  object-fit: cover;
  height: 200px;
  width: 100%;
}

.text-left p {
  color: rgb(255, 255, 253);
  margin-left: 20px;
}

.text-left h5 {
  color: #a6d3ff;
  margin-left: 20px;
}

.read-more-link {
  margin-left: 20px;
  font-size: 16px;
}

#noResultsMessage {
  width: 60%;
}


/* Download & Business page  */

.download {
  padding-top: 50px;
}

.download-title {
  margin: 30px;
  font-weight: 700;
  margin-bottom: 50px;
}

.download-para {
  font-size: 20px;
  text-align: center;
  padding-bottom: 20px;
  color: rgba(255, 255, 253, 1);
}

.download-description p {
  padding-top: 10px;
  padding-bottom: 30px;
  font-size: 50px;
  color: rgba(255, 255, 253, 1);
}

.google-btn img {
  width: 250px;

}

.google-btn {
  margin-bottom: 100px;
}


.download-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  padding-top: 40px;
  width: 100%;

}

.row {
  border-radius: 10px;
}

.image-widget {
  height: 90px;
}

.image-widget img {
  height: 83px;
  width: 198px;
}

.d-image {
  padding-top: 40px;
  padding-bottom: 40px;
  width: 400px;
  margin-left: 50px;
}

.section-heading {
  padding-top: 50px;
  padding-left: 0px;
  font-weight: 600;
  color: #a6d3ff;
}

.download-text h2 {
  padding-left: 0px;
}

.download-text ul {
  font-size: 22px;
  padding-top: 40px;
}

.bus-section-heading {
  padding-top: 60px;
  padding-left: 30px;
  font-weight: 700;
  color: #a6d3ff;
}

.business-text {
  padding-left: 30px;
}

.business-text p {
  font-size: 18px;
  line-height: 1.5;
}

.business-text ul {
  padding-left: 40px;
  padding-right: 40px;
  font-size: 22px;
  line-height: 26px;
  padding-top: 10px;
  padding-bottom: 0px;
}

.business-btn {
  margin-left: 30px !important;
  margin-bottom: 40px !important;
  margin-top: 0px !important;
}

.b-image {
  margin-left: 50px;
  margin-top: 60px;
  margin-bottom: 60px;
}

.b-image-2 {
  margin-left: 40px;
  margin-right: 40px;
  margin-top: 60px;
  margin-bottom: 60px;
}

.rounded-image {
  border-radius: 10px;
}

.bus-text {
  padding-left: 60px;
}

.bus-text ul {
  font-size: 20px;
}

.bus-text li {
  font-size: 18px;
}

.bus-text p {
  font-size: 18px;
  line-height: 1.5;
}

.section-heading-2 {
  color: #a6d3ff;
}

.business {
  padding-top: 50px;
}

.business h3 {
  text-align: center;
  padding-bottom: 40px;
  font-weight: 700;
}




/* blog main post */
.blog-details-photo {
  position: relative;
  overflow: hidden;
}

.blog-details-photo img {
  width: 30%;
  height: 250px;
  object-fit: cover;
}

.widget-categories {
  margin-left: 55px;
}

.blog-details-title {
  color: #666;
  font-weight: 700;
  line-height: 16px;
}

.blog-description h1,
.blog-description h2,
.blog-description h3 {
  font-size: 16px;
}

.blog-description p,
.blog-description li {
  font-size: 13px;
}



/*  blog share tags */
.blog-share-tags {
  padding: 15px 20px;
}

.share-tags-title {
  color: #666666;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 0;
  margin-right: 30px;
  text-transform: uppercase;
}

.blog-tags-list li {
  display: inline-block;
}

.blog-tags-list li+li {
  margin-left: 20px;
}

#blog-titles-list {
font-size: 14px;

}
.blog-tags-list li a {
  color: #999;
  font-size: 13px;
  line-height: 30px;
}

.blog-section-title {
  color: rgb(255, 255, 253);
  font-size: 18px;
  font-weight: 700;
  line-height: 14px;
  text-transform: uppercase;
}

/*Blog Pagination*/
#pagination-controls {
  text-align: center;
  margin-top: 20px;
}

.page-button {
  padding: 5px 10px;
  margin: 0 5px;
  cursor: pointer;
  background-color: #f0f0f0;
  border: none;
  border-radius: 5px;
}

.page-button:hover {
  background-color: #d4d4d4;
}

/* Section titles */
.section-title h2 {
  font-size: 38px;
}

.section-title h3 {
  margin-top: 0px;
  line-height: 27px;
}

.section-title h6 {
  margin-top: 0px;
  line-height: 27px;
}

a:hover h6 {
  color: #a6d3ff;
}

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

.section-title .title-line {
  padding: 10px 0
}

.section-title .title-line:before {
  background: #4FC1F0;
  content: "";
  display: block;
  height: 2px;
  margin: 0 auto;
  width: 220px;
}

.section-title .title-line:after {
  background: #4FC1F0;
  content: "";
  display: block;
  height: 6px;
  position: relative;
  top: -6px;
  margin: 0 auto;
  width: 60px;
}


/* Privacy Policy & Terms of Service */
.fa-5x {
  margin-bottom: 80px;
}

.policy-block {
  padding: 20px;
  margin-bottom: 20px;
  text-align: left;
}

.policy-block h3 {
  font-weight: bold;
  color: #a6d3ff;
}

.policy-block p {
  font-size: 16px;
  line-height: 1.5;
  color: rgb(245, 246, 239, 1);
}

.policy-block ul {
  margin-left: 25px;
}


/* Torrent */
.torrent-block {
  height: 300px;
  overflow: hidden;
  padding: 20px;
  margin-bottom: 20px;
}

.torrent-block h3 {
  font-weight: bold;
  color: #a6d3ff;
}

.torrent-block p {
  font-size: 16px;
  line-height: 1.5;
  color: rgb(245, 246, 239, 1);
  margin-bottom: 20px;
}

/* not found */
.not-found p {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* delete account request */
.request p {
  display: flex;
  justify-content: center;
  align-items: center;
}

.delete-request {
  margin-top: 50px;
}

#email {
  width: 400px;
  border-radius: 5px;
}

.delete-request-button {
  border: 0 none;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.03) inset;
  cursor: pointer;
  display: inline-block;
  margin-left: 20px;
  margin-top: 10px;
  overflow: hidden;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
  background-color: #575757;
  color: #ebf5fa;
  font-size: 15px;
}

/*poll container*/
.poll-container {
  width: 100%;
  margin: 30px auto;
  text-align: center;
  border: none;
  padding: 20px;
}

form {
  margin-top: 20px;
}

input[type="radio"] {
  margin-left: 20px;
}

input[type="text"]#region {
  width: 20%;
  padding: 10px;
  border-radius: 10px;
}

.poll-container button {
  padding: 5px 30px;
  background-color: #0f0f10;
  color: white;
  border-radius: 10px;
  cursor: pointer;
}
/* Dark theme (default) styles */
body {
  background: #0a0c18;
  background-image: linear-gradient(to bottom right, #090b17, #0c1320, #141f32, #182a4a, #005aff);
}

p {
  color: #c4c5c5;
}

.theme-icon {
  color: #a6d3ff;
}

/* Light theme styles */
body.light-theme {
  background-color: #ffffff;
  background-image: none;
}

body.light-theme .wrapper {
  background: #a2a1a1;
}

body.light-theme .footer-area {
  background-color: #adacac;
}

body.light-theme .footer-top-inner {
  background-color: #adacac;
}

body.light-theme .theme-icon {
  color: rgb(43, 43, 43);
}

body.light-theme .main-menu>li>a {
  color: rgb(63, 63, 63)
}

body.light-theme .logo .dark-logo {
  display: none;
}

body.light-theme .logo .light-logo {
  display: block;
}

body:not(.light-theme) .logo .light-logo {
  display: none;
}

body:not(.light-theme) .logo .dark-logo {
  display: block;
}

body.light-theme .sticky {
  left: 0;
  margin: auto;
  position: fixed;
  top: 0;
  width: 100%;
  background: rgb(246, 245, 245);
  box-shadow: 0 1px 3px rgba(50, 50, 50, 0.4)
}

body.light-theme .table td,
body.light-theme .table th {
  padding: 15px;
  color: rgb(63, 63, 63);
  font-size: 18px;
}

body.light-theme h6 {
  color: rgb(63, 63, 63);
}

body.light-theme h2 {
  color: rgb(63, 63, 63);
}

body.light-theme h3 {
  color: rgb(63, 63, 63);
}

body.light-theme h1 {
  color: rgb(63, 63, 63);
}

body.light-theme h4 {
  color: rgb(89, 88, 88);
}

body.light-theme h5 {
  color: rgb(63, 63, 63);
}

body.light-theme p {
  color: rgb(63, 63, 63);
}

body.light-theme .slider-info {
  background-color: #999999;
}

body.light-theme .pbox {
  border: 1px solid #cccdcd;
  padding: 20px;
  margin: 10px;
  text-align: center;
  background-image: linear-gradient(to top left, #a4a4a4, #bbbaba, #cacacb, #d2d4d6, #e7e7e9);
  border-radius: 15px;
  height: 300px;
  width: 700px;
}

body.light-theme .box {
  border: 1px solid #cccdcd;
  padding: 20px;
  margin: 10px;
  text-align: center;
  background-image: linear-gradient(to bottom right, #a4a4a4, #bbbaba, #cacacb, #d2d4d6, #e7e7e9);
  border-radius: 15px;
  height: 350px;
  width: 350px;
}

body.light-theme .footer-message p {
  color: rgb(63, 63, 63);
}

body.light-theme .footer-brief p {
  color: rgb(63, 63, 63);
}

body.light-theme li {
  color: rgb(63, 63, 63);
  margin-left: 25px;
}

body.light-theme .footer-menu li a {
  color: rgb(63, 63, 63);
}

body.light-theme .faq-item h3 {
  color: rgb(63, 63, 63);
}

body.light-theme .blue-bg {
  background: #ececec;
}

body.light-theme .footer-social li a {
  border: 1px solid rgb(63, 63, 63);
  color: rgb(63, 63, 63);
}

@media only screen and (max-width: 1200px) {
  body.light-theme .box {
    width: calc(100% - 10px);
  }
}