@charset "UTF-8";
/*Theme default CSS*/
:root {
  --vb-font:"Bricolage Grotesque", sans-serif;
  --vb-title:'Montserrat Alternates', sans-serif;
  --vb-text:"Bricolage Grotesque", sans-serif;
  --vb-primary:#1060ff;
  --vb-secondary:#0340bb;
  --vb-tertiary:#ff007d;	
  --vb-base:#61CE70;
  --vb-accent:#ff781f;
  --vb-black:#010039;
  --vb-white:#ffffff;
  --vb-text-body:#363636;
  --vb-text-dark:#1d1e20;
  --vb-text-light:#d27bfd;
  --vb-bg-dark:#23013c;
  --vb-bg-primary:#f2edf9;
  --vb-bg-secondary:#e5eeff;
  --vb-bg-light:#f4f5ff;
  --vb-bg-light-2:#F3F7FA;
  --vb-bg-light-3:#f5f6fc;
  --vb-border-dark:#212529;
  --vb-border-light:#eeebf2;
	
  /*@font family declaration*/
  --vb-ff-heading:"Plus Jakarta Sans", sans-serif;
  --vb-ff-body: "Inter", sans-serif;
  --vb-ff-fontawesome: "Font Awesome 6 Pro";
  /*@color declaration*/
  --vb-common-white: #FFFFFF;
  --vb-common-black: #000000;
  --vb-common-placeholder: #4A5764;
  --vb-body-primary: #fff;
  --vb-theme-primary:#ffe607;
  --vb-heading-primary: #453030;
  --vb-text-body: rgba(5, 5, 19, 0.6);
  --vb-text-primary: #151515;
  --vb-shadow-primary: 0px 30px 60px 0px rgba(0, 15, 32, 0.1);
  --vb-background-hero-2-bg: #EEEEEE;
  --vb-background-body-bg: #F6F0E9;
  --vb-border-primary: 1px solid rgba(5, 5, 19, 0.14);
  /*@font weight declaration*/
  --vb-fw-normal: normal;
  --vb-fw-thin: 100;
  --vb-fw-elight: 200;
  --vb-fw-light: 300;
  --vb-fw-regular: 400;
  --vb-fw-medium: 500;
  --vb-fw-sbold: 600;
  --vb-fw-bold: 700;
  --vb-fw-ebold: 800;
  --vb-fw-black: 900;
  /*@font size declaration*/
  --vb-fs-body: 18px;
  --vb-fs-body2: 18px;
  --vb-fs-p: 15px;
  --vb-fs-h1: 70px;
  --vb-fs-h2: 100px;
  --vb-fs-h3: 90px;
  --vb-fs-h4: 24px;
  --vb-fs-h5: 20px;
  --vb-fs-h6: 15px;
  --vb-lh-body: 28px;
  --vb-lh-body2: 28px;
  --vb-lh-p: 24px;
  --vb-lh-h1: 72px;
  --vb-lh-h2: 105px;
  --vb-lh-h3: 100px;
  --vb-lh-h4: 28px;
  --vb-lh-h5: 32px;
  --vb-lh-h6: 30px;	
}
body {
  line-height: 24px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  visibility: visible;
  font-family:var(--vb-ff-body);
  color:var(--vb-text-body);
}
h1, h2, h3, h4, h5, h6 {
  font-family:var(--vb-ff-heading);	
  color:var(--vb-black);
  font-weight: bold;
  margin-top: 0;
}
p:last-child {
  margin-bottom: 0;
}
a, button {
  color: inherit;
  display: inline-block;
  line-height: inherit;
  text-decoration: none;
}
a, i, button, img, input, span,
*:before, *:after {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
*:focus {
  outline: 0px solid;
}
a:focus {
  color: inherit;
  outline: medium none;
  -webkit-transform: scale(1);
          transform: scale(1);
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
::selection {
  color:var(--vb-white);
  background:var(--vb-primary);
}
ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}
.rotate-315 {
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
}
.opacity-60 {
  opacity: 0.6 !important;
}
/*Common Class*/
.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

.float-start {
  float: left;
}

.float-end {
  float: right;
}

.section {
  width: 100%;
  overflow:hidden;	
}

.bg-gray {
  background-color:var(--vb-bg-light-2);
}

.section.bg-white {
  background-color: #fff;
}
.bg-primary-cv {
  background: var(--vb-bg-primary);
}
.bg-secondary {
  background: var(--vb-secondary) !important;
}
/*Color*/
.color-white {
  color: var(--vb-common-white);
}
.color-heading-primary {
  color: var(--vb-heading-primary);
}
/*background*/
.white-bg {
  background-color: var(--vb-common-white);
}
.black-bg {
  background-color: var(--vb-common-black);
}
.heading-bg {
  background-color: var(--vb-heading-primary);
}
/*Slider Gap Start Here*/
.slick-list {
  margin-right: -30px;
}
.slick-list .slick-slide {
  margin-right: 30px;
}
/*Container Width For Mobile Device*/
@media only screen and (max-width: 767px) {
  .container {
    width: 450px;
  }
}
@media only screen and (max-width: 479px) {
  .container {
    width: 300px;
  }
}
/*-- Form Input  --*/
input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
input[type=url],
textarea {
  outline: none;
  height: 56px;
  width: 100%;
  line-height: 56px;
  font-size: 14px;
  padding-left: 26px;
  padding-right: 26px;
  color:var(--vb-common-placeholder);
  border:1px solid rgba(30, 30, 30, 0.1);
  background-color: var(--vb-white);
}
input[type=text]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=url]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color:var(--vb-common-placeholder);
}
input[type=text]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=number]::-moz-placeholder,
input[type=password]::-moz-placeholder,
input[type=url]::-moz-placeholder,
textarea::-moz-placeholder {
  /* Firefox 19+ */
  color:var(--vb-common-placeholder);
}
input[type=text]:-moz-placeholder,
input[type=email]:-moz-placeholder,
input[type=tel]:-moz-placeholder,
input[type=number]:-moz-placeholder,
input[type=password]:-moz-placeholder,
input[type=url]:-moz-placeholder,
textarea:-moz-placeholder {
  /* Firefox 4-18 */
  color:var(--vb-common-placeholder);
}
input[type=text]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=url]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  /* IE 10+  Edge*/
  color:var(--vb-common-placeholder);
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=number]::placeholder,
input[type=password]::placeholder,
input[type=url]::placeholder,
textarea::placeholder {
  /* MODERN BROWSER */
  color:var(--vb-common-placeholder);
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=url]:focus,
textarea:focus {
  border-color:#87abf4;
}
input[type=text]:focus::placeholder,
input[type=email]:focus::placeholder,
input[type=tel]:focus::placeholder,
input[type=number]:focus::placeholder,
input[type=password]:focus::placeholder,
input[type=url]:focus::placeholder,
textarea:focus::placeholder {
  opacity: 0;
}
textarea {
  line-height: 1.4;
  padding-top: 17px;
  padding-bottom: 17px;
}
input[type=color] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  padding: 0;
  border-radius: 50%;
}
::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}
:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}
::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}
::placeholder {
  color: inherit;
  opacity: 1;
}
/*-- Section Title --*/
.section-title .title {
  font-size: 42px;
  color: var(--vb-black);
  line-height: 28px;
  padding-bottom: 20px;
  margin: 0;
  position: relative;
  font-weight: 800;
  font-family: var(--vb-ff-heading);
  letter-spacing: 2px;	
}
.section-title .title span {color:var(--vb-secondary);}
.section-title p {
  color:var(--vb-border-dark);
  font-size:18px;
  font-weight: 600;
}
.section-title p img {
  margin-right: 10px;
  margin-left: 10px;
}
@media only screen and (max-width: 767px) {
  .section-title .title {
    font-size: 30px;
    line-height: 22px;
  }
}
@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
.section-title .title {font-size: 36px;}
}
@media only screen and (max-width: 479px) {
  .section-title .title {
    font-size:27px;
    line-height:32px;
    padding-bottom: 15px;
  }
}
.section-title.title-white h1 {
  color: #fff;
}
.section-title.title-white h1::before {
  border-color: #fff;
}

.primary-btn {
  background:var(--vb-primary);
  color:var(--vb-white);
  display: inline-block;
  padding:22px 45px;
  border: 0;
  text-transform: uppercase;
  -webkit-backface-visibility: hidden;
  z-index: 1;
  position: relative;
  border-radius:3px;
  font-weight: 600;
  font-size:18px;
  line-height:18px;
}
.primary-btn:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius:3px;
  background:var(--vb-secondary);
  opacity: 0;
  z-index: -1;
}
.primary-btn:hover, .primary-btn:focus, .primary-btn:active  {
  background:var(--vb-secondary);
  color: var(--vb-white);
}
.primary-btn:hover:after {
  opacity: 1;
}
@media (max-width: 991px) {
  .primary-btn {
    font-size: 18px;
    font-size: 1.2rem;
  }
}
@media (max-width: 767px) {
  .primary-btn {
    padding:18px 32px;
    font-size: 14px;
  }
}
.secondary-btn {
  background:var(--vb-theme-primary);
  color: var(--vb-black);
  display: inline-block;
  padding:18px 45px;
  border-radius:0px;
  font-weight: 600;	
  text-transform:uppercase;
  font-size: 18px;	
  line-height:18px;	
}
@media (max-width: 991px) {
  .secondary-btn {
    font-size: 14px;
    font-size: 0.9333333333rem;
  }
}
.secondary-btn:hover, .secondary-btn:focus, .secondary-btn:active {
  background: #d2b808;
  color: var(--vb-black);
}

@media (max-width: 767px) {
  .secondary-btn {
    padding:18px 32px;
    font-size: 13px;
  }
}
.tertiary-btn {
  background:var(--vb-secondary);
  color:var(--vb-white);
  display: inline-block;
  padding: 18px 45px;
  border: 0;
  text-transform: uppercase;
  -webkit-backface-visibility: hidden;
  z-index: 1;
  position: relative;
  border-radius:3px;
  font-weight: 600;
  font-size:18px;
  line-height:18px;
}
.tertiary-btn:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius:18px;
  background:var(--vb-primary);
  opacity: 0;
  z-index: -1;
}
.tertiary-btn:hover, .tertiary-btn:focus, .tertiary-btn:active  {
  background:var(--vb-primary);
  color:var(--vb-white);
}
.tertiary-btn:hover:after {
  opacity: 1;
}
@media (max-width: 991px) {
  .tertiary-btn {
    font-size: 18px;
    font-size: 1.2rem;
  }
}
@media (max-width: 767px) {
  .tertiary-btn {
    padding:18px 36px;
    font-size: 14px;
  }
}
/*Bootstrap Custom Container*/
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container,
.container-sm {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container,
.container-md,
.container-sm {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container,
.container-lg,
.container-md,
.container-sm {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    max-width: 1140px;
  }
}
@media (min-width: 1600px) {
  .container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    max-width: 1440px;
  }
}
/*Hero Section Start Here*/
.vpsbaba-hero-banner { 
  margin: 30px;
  background: url(../images/hero-bg.jpg) no-repeat center;
  background-size: cover;
  border-radius:50px;
}
.hero-heading {
  font-family: var(--vb-ff-heading);
  font-size: 66px;
  font-weight: 600;
  color:var(--vb-white);
  line-height: 85px;
  padding-top:27px;	
}
.vpsbaba-hero-banner .txt {
  font-size: 24px;
  line-height:36px;
  font-weight:500;
}
.vpsbaba-hero-banner .caption-txt {
  font-size: 16px;
  font-weight: 400;
  background: #DBE9FF;
  display: initial;
  padding: 8px;
  border-radius: 6px;
  color: #000;
}	
.vpsbaba-btn-one {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  line-height: 55px;
  border-radius: 10px;
  padding: 0 40px;
  background: #1060ff;
  box-shadow: 0px 15px 40px rgba(0, 57, 170, 0.5);
}
.vpsbaba-btn-one:hover {color:#000;}
.vpsbaba-btn-two {
    font-size: 20px;
    font-weight: 500;
    color: #efc42e;
    line-height: 51px;
    border: 2px solid #efc42e;
    border-radius: 10px;
    padding: 0 40px;
    box-shadow: 0px 15px 40px rgba(0, 57, 170, 0.5);
}
.vpsbaba-btn-two:hover {color:#fff;}	
.tran3s {transition: all .3s ease-in-out;}
  .vpsbaba-hero-img {position: absolute;right:90px;bottom: 0;max-width: 52%;}
}	
@media (min-width: 1400px) {
  .vpsbaba-hero-banner {padding-left: 20px; padding-right: 20px;}
}
/*(max-width: 1399px)*/
/*Between Grid xl*/
@media (min-width: 1200px) and (max-width: 1399px) {
  .vpsbaba-hero-banner {margin: 15px; border-radius: 30px;}
  .vpsbaba-hero-banner .hero-heading {font-size: 65px;}
}
/*(min-width: 1200px) and (max-width: 1399px)*/
/* (min-width: 992px) and (max-width: 1399px) */
/*Grid lg Start*/
@media (max-width: 1199px) {
  .vpsbaba-hero-banner {margin:10px; border-radius:20px;padding-top:125px;}
}
/*(max-width: 1199px)*/
/*Between Grid lg*/
@media (min-width: 992px) and (max-width: 1199px) {
  .vpsbaba-hero-banner .hero-heading {font-size: 50px;}
}
/*(min-width: 992px) and (max-width: 1199px)*/
/*Grid md Start*/
@media (max-width: 991px) {
  .vpsbaba-hero-banner .caption-txt {font-size:12px;}	
  .vpsbaba-hero-banner .hero-heading {font-size:27px;line-height:36px;}
  .vpsbaba-hero-banner .txt {font-size:16px;line-height:27px;font-weight:400;margin-top:10px;}	
  .vpsbaba-hero-banner .vpsbaba-hero-img {position:relative;margin-left:auto;max-width:330px;top:10px;left:11px}
}
/*Hero Section End Here*/

/*VPS Hosting Domain Finder Area Start Here*/
.vps-hosting-domain-finder-area {padding:20px 0; position:relative;}	
.gradient-card {background:url("../images/cta-bg.jpg") right center / cover no-repeat;justify-content:space-between;flex-direction:column;min-height:280px;border-radius:18px;position:relative;width:100%;color:var(--vb-white);padding:30px;overflow:hidden;display:flex;}
.gradient-card .vb-title {font-size:27px;font-weight:700;margin-bottom:8px;margin-bottom:16px;color:var(--vb-white);}
.gradient-card p {margin-bottom:28px;font-size:16px;line-height:27px;color:var(--vb-white);max-width:370px;}
.plan-link {display:block;width:100%;text-decoration:none;color:inherit;}
.plan-card {cursor:pointer;}
.card-content {height:100%;display:flex;flex-direction:column;transition:transform 0.35s ease;}
.plan-card:hover .card-content {transform:scale(1.02);}
/* Arrow icon */
.arrow-icon {position:absolute;top:20px;right:20px;font-size:22px;opacity:0.9;transform:rotate(-36deg);transition:transform 0.3s ease;}
.plan-card:hover .arrow-icon {transform: rotate(0deg) scale(1.05);}
.price {margin-top: auto; /* aligns with search box */font-size: 18px;}
.price-label {font-size:14px;opacity:0.9;margin-bottom:4px;}
.price-amount {display:flex;align-items:baseline;gap:0px;}
.old-price {font-size:24px;text-decoration:line-through;opacity: 0.7;padding-right:10px;}
.new-price {font-size:24px;font-weight:700;}
.per {font-size:18px;opacity: 0.9;}
.search-box {margin-top: auto;background:var(--vb-white);border-radius:50px;padding:6px 8px;display:flex;align-items:center;gap:10px;}
.search-icon {color:#6b7280;font-size: 16px;padding-left: 14px;}
.search-box input {border:none;outline:none;flex:1;padding:12px 10px;font-size:18px;}
.search-box button {background:#1e1b4b;border:none;color:var(--vb-white);padding:12px 28px;border-radius:40px;font-weight:600;white-space:nowrap;text-transform:uppercase;}
@media (max-width: 768px) {
    .gradient-card {min-height:auto;}
}

.vpsbaba-subhero-banner { 
  margin: 30px;
  background: url(../images/hero-bg.jpg) no-repeat center;
  background-size: cover;
  border-radius:50px;
}
.vpsbaba-subhero-banner .section-title .title {color: var(--vb-white);}
.vpsbaba-subhero-banner .section-title p {color: var(--vb-white);}
@media (min-width: 1400px) {
  .vpsbaba-subhero-banner {padding-left: 20px; padding-right: 20px;}
}
/*(max-width: 1399px)*/
/*Between Grid xl*/
@media (min-width: 1200px) and (max-width: 1399px) {
  .vpsbaba-subhero-banner {margin: 15px; border-radius: 30px;}
  .vpsbaba-subhero-banner .hero-heading {font-size: 65px;}
}
/*(min-width: 1200px) and (max-width: 1399px)*/
/* (min-width: 992px) and (max-width: 1399px) */
/*Grid lg Start*/
@media (max-width: 1199px) {
  .vpsbaba-subhero-banner {margin: 10px; border-radius: 20px;padding-top:115px;padding-bottom:0;}
}
/*(max-width: 1199px)*/
/*Between Grid lg*/
@media (min-width: 992px) and (max-width: 1199px) {
  .vpsbaba-subhero-banner .hero-heading {font-size: 50px;}
}
/*(min-width: 992px) and (max-width: 1199px)*/
/*Grid md Start*/
@media (max-width: 991px) {
  .vpsbaba-subhero-banner .hero-heading {font-size:27px;line-height:36px;}
  .vpsbaba-subhero-banner .txt {font-size:16px;line-height:27px;font-weight:400;margin-top:10px;}	
}
/*VPS Hosting Domain Finder Area End Here*/
/* =====================================================
   PRICING AREA – BASE
   Future note:
   - Keep all pricing-related styles inside this block
   - Avoid inline styles from JS (use utility classes)
===================================================== */
.pricing-section {
  padding:40px 0;
  position: relative;
}

.pricing-section .hidden {
  display: none !important;
}

/* =====================================================
   PRICING CARD WRAPPER
===================================================== */
.pricing-section .hosting-plan-wrapper {
  background: var(--vb-white);
  border: 1px solid var(--vb-border-light);
  border-radius: 20px;
  padding: 30px 18px 15px;
  box-shadow: 1px 1px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease-in-out;
	position:relative;
}

.pricing-section .hosting-plan-wrapper p {
  color: #000;
}

/* Hover scale (desktop) */
.pricing-section .hosting-plan-wrapper:hover {
  transform: scale(1.05);
}

/* =====================================================
   POPULAR / FEATURED PLAN
   Future note:
   - JS should toggle `.popular-vps`
===================================================== */
.pricing-section .hosting-plan-wrapper.popular-vps {
  position: relative;
  border: 3px solid var(--vb-theme-primary);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.17);
}

/* Best selling badge */
.pricing-section .hosting-plan-wrapper.popular-vps .best-selling {
  position: absolute;
  top: -22px;
  right: 80px;
  background: var(--vb-theme-primary);
  color: var(--vb-bg-dark);
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  text-transform: uppercase;
  text-align: center;
}

/* =====================================================
   PLAN TITLE & PRICE
===================================================== */
.pricing-section .hosting-plan-wrapper .vps-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--vb-black);
  margin: 0 0 10px;
}

.pricing-section .hosting-plan-wrapper .hosting-plan-price {
  position: relative;
  margin: 20px 0 16px;
  text-align: left;
}

/* Duration label (updated via JS) */
.plan-duration-disply {
  margin-top: 6px;
  padding-bottom: 16px;
  font-size:16px;
  font-weight: 400;
  color: #475254;
  /*text-align: center;*/
}
.plan-duration-disply strong {
	color:var(--vb-primary);
}
/* Main price */
.pricing-section .hosting-plan-wrapper .hosting-plan-price span {
  font-family: var(--vb-title);
  font-size: 40px;
  font-weight: 700;
  color: #15222E;
  padding-bottom: 16px;
}

.pricing-section .hosting-plan-wrapper .hosting-plan-price small,
.pricing-section .hosting-plan-wrapper .hosting-plan-price i {
  font-size: 18px;
  font-weight: 500;
  color: #15222E;
  font-style: normal;
}
.pricing-section .hosting-plan-wrapper .hosting-plan-price i{font-size: 40px; font-weight: 700;}
/* =====================================================
   DISCOUNT / ACTUAL PRICE BLOCK
   Future note:
   - Toggle `.no-discount` when no offer exists
===================================================== */
.actual-price-save {
  display: flex !important; /* overrides inline JS styles */
  /*justify-content: center;*/
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}

.hosting-plan-wrapper.no-discount .actual-price-save {
  display: none;
}

.actual-price {
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  font-weight: 400;
  color: #394E63;
  position: relative;
}

.actual-price::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -4px;
  width: calc(100% + 8px);
  height: 1px;
  background: #61646e;
}

/* Discount badge */
.save-badge {
  display: inline-flex !important;
  align-items: center;
  gap: 5px;
  padding: 7px 16px;
  font-size: 16px;
  font-weight: 700;
  background: #FFEDE6;
  border: 1px solid #FFD7C9;
  border-radius: 10px;
  color: #FF4400;
  white-space: nowrap;
}

/* =====================================================
   FEATURE LIST
===================================================== */
.pricing-section .hosting-plan-wrapper .hosting-plan-list {
  padding: 5px 0;
}

.pricing-section .hosting-plan-wrapper .hosting-plan-list ul {
  list-style: none;
  margin: 0 0 15px;
  padding: 0;
  text-align-last: left;
}

.pricing-section .hosting-plan-wrapper .hosting-plan-list ul li {
  margin: 15px 0;
  color: #15222E;
  overflow: visible;
}

.pricing-section .hosting-plan-wrapper .hosting-plan-list ul li::before {
  font-family: "Font Awesome 6 Pro";
  content: '\f00c';
  margin: 0 10px 0 3px;
  font-size: 15px;
  font-weight: 600;
  color: #41C281;
}

/* Tooltip text */
.feature-tooltip {
  display: inline-block;
  cursor: help;
  border-bottom: 2px dotted #cbc8d2;
  background: linear-gradient(0deg, #67ff7f6b 0%, rgba(253,187,45,0) 16%);
  padding-bottom: 1px;
}

/* =====================================================
   CTA BUTTON
===================================================== */
.pricing-section .hosting-plan-wrapper .btn {
  height: 50px;
  padding: 12px 90px;
  line-height: 24px;
  background: var(--vb-primary);
  color: var(--vb-white);
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
}

.pricing-section .hosting-plan-wrapper .btn:hover {
  background: var(--vb-secondary);
  color: var(--vb-white);
}

.pricing-section .hosting-plan-wrapper .btn.popular-vps {
  background: var(--vb-theme-primary);
  color: var(--vb-bg-dark);
}

/* =====================================================
   TAB SWITCHER (PLAN DURATION)
   Future note:
   - Controlled via Bootstrap + JS
===================================================== */
.vps-paln-tab {
  background: var(--bs-white);
  max-width: fit-content;
  margin: 5px auto 25px;
  border-radius: 20px;
  user-select: none;
}
.vps-paln-tab.inner-pages {margin-bottom:15px;}
.pricing-section .nav-tabs {
  border-bottom: none;
}

.pricing-section .nav-tabs .nav-link {
  margin: 10px;
  padding: 12px 35px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 20px;
  background: #f1f8ff;
  text-transform: uppercase;
  border: none;
  color: #15222e;
}

.pricing-section .nav-tabs .nav-link.active {
  background: var(--vb-bg-secondary);
}

/* =====================================================
   RESPONSIVE FIXES
===================================================== */
@media (max-width: 767px) {
  .pricing-section .hosting-plan-wrapper .btn {
    height: 40px;
    padding: 8px 25px;
  }
}

@media (max-width: 575px) {
  .pricing-section .nav-tabs .nav-link {
    padding: 7px 11px;
    font-size: 12px;
    margin: 0;
  }
  .vps-paln-tab.inner-pages {
  	margin-bottom: 0px;
  }	
}
.plan-same-renewal {
  font-weight: 500;
  font-size: 13px;
  color: #06a831;
  padding: 6px 8px;
  background: #effbf4;
  background: #E9FFF0;
  border: 1px solid #D7FBE2;
  border-radius: 5px;
  text-align: center;
  margin-top: 20px;
}
.feature-tooltip {
 
  display: inline-flex;
  align-items: center;
  cursor: help;
  color: inherit;
  text-decoration: none;
  border-bottom: 2px dotted #cbc8d2;
  background: linear-gradient( 0deg, rgba(103, 255, 127, 0.4) 0%, rgba(253, 187, 45, 0) 20% );
  padding: 0 4px;              /* minimal padding like image 1 */
}

.feature-tooltip .far.fa-question-circle {
  position: absolute;
  right:18px;
  font-size: 14px;
  color: #15222E;
  float: right;
  line-height: 24px;
}


.pricing-section :focus {outline: none;box-shadow: none;border-color:var(--vb-primary); /* red primary */}
.pricing-section  .form-control:focus, .form-select:focus {box-shadow: none;border-color:var(--vb-primary);}

.vpsbaba-modal input{
  border-radius:12px;
  background:transparent;
  height:52px;
}
/* Input padding to show icon */
.vpsbaba-modal input.is-valid,
.vpsbaba-modal input.is-invalid {
    padding-right: 2.5rem;
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem 1rem;
}
/* Green checkmark */
.vpsbaba-modal input.is-valid {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' xml:space='preserve'%3E%3Cpath d='M31.535 72.231C39.849 59.45 70.43 26.55 95.79 9.457c1.077-.726 2.293.7 1.4 1.642-24.092 25.444-49.845 54.223-64.635 79.109-.412.693-1.406.717-1.837.035C23.276 78.455 16.893 61.51 3.211 56.316c-1.016-.386-.919-1.823.138-2.077 13.111-3.16 19.255 8.054 28.186 17.99z' fill='%23198754'/%3E%3C/svg%3E");
}

/* Red exclamation */
.vpsbaba-modal input.is-invalid {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60' xml:space='preserve'%3E%3Cg fill='%23dc3545'%3E%3Cpath d='M58.519 58.599c-.56.54-1.45.53-2.01 0L30 33.96 3.491 58.599c-.56.53-1.45.54-2.01 0-.61-.56-.64-1.49-.09-2.1L25.9 30.14 2.361 8.27c-4.05-4.03 1.85-9.97 5.91-5.91L30 25.729 51.729 2.36c4.06-4.06 9.96 1.88 5.91 5.91L34.1 30.14l24.509 26.359c.55.61.52 1.54-.09 2.1'/%3E%3Cpath d='M10.788 14.494a1 1 0 0 1-.7-.286L3.207 7.461c-.618-.529-1.001-1.362-1.001-2.242 0-.39.073-.769.218-1.125a1 1 0 1 1 1.854.749 1.01 1.01 0 0 0 .283 1.145l6.929 6.791a1 1 0 0 1-.7 1.714z'/%3E%3C/g%3E%3C/svg%3E");
}

.vpsbaba-modal .modal-title {
  font-size:24px;
  font-weight: 700;
  color: var(--vb-primary);
}
.vpsbaba-modal .btn-modal {
    position: relative;
    display: inline-block;
    background: var(--vb-primary);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1em;
    text-transform: uppercase;
    color: var(--vb-white);
    padding: 16px 55px 16px 36px;
    overflow: hidden;
    border: none;
    transition: color 0.4s ease-in-out;
    z-index: 0; /* base stacking context */
}
/* arrow */
.vpsbaba-modal .btn-modal::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 25px;
    width: 24px;
    height: 24px;
    background: url('../images/arrow-primary.svg') no-repeat center;
    background-size: contain;
    transform: translateY(-50%);
    transition: transform 0.4s ease, filter 0.4s ease;
    z-index: 3; /* always above background */
}
/* hover effects */
.vpsbaba-modal .btn-modal:hover::before,
.vpsbaba-modal .btn-modal:focus-visible::before {
    transform: translateY(-50%) rotate(45deg);
    filter: none; /* remove invert to ensure arrow stays visible */
}
/* hover background */
.vpsbaba-modal .btn-modal::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    background: var(--vb-black);
	color: var(--vb-white);
    transition: width 0.4s ease-in-out;
    z-index: -1; /* below text & arrow */
}
.vpsbaba-modal .btn-modal:hover::after,
.vpsbaba-modal .btn-modal:focus-visible::after {width: 100%;left: 0;right: auto;}

/* =====================================================
   PRICING AREA – END
===================================================== */


/*VPS Plan includes Start Here*/
.vps-plan-includes .card {
	padding:60px 36px 8px;
	border:none;
	border-radius:0;
}
.vps-plan-includes .card h4 {
	font-family:var(--vb-ff-heading);
  	font-size:24px;
  	font-weight: 600;
  	line-height: 1.277em;
  	letter-spacing: -1px;
  	margin:24px 0 10px;
}
.vps-plan-includes .card .icon {
    height: 90px;
    img {
      max-height: 100%;
    }
  }
.vps-plan-includes .card p {
	line-height: 1.6818em;
    margin-bottom: 60px;
	color: var(--vb-common-black);
	font-size:15px;
}

@media (max-width: 1199px) {
  .vps-plan-includes .card {
    padding: 40px 20px 28px;
	  border-radius: 0 !important;
  }
}
/* Hide discount elements when 1 Month selected */
.no-discount .save-badge,
.no-discount .actual-price-save{
    display:none !important;
}
.hidden{
    display:none !important;
}


.card-style-six { 
  padding: 35px 50px 40px;
  border: 1px solid #E3E3E3;
  border-radius: 30px;
}
.card-style-six:hover {
    border-color:var(--vb-primary);
    box-shadow: 0px 25px 50px rgba(0, 34, 144, 0.07);
}
.card-style-six .icon:hover {
      background: #6ea0ff;
    }
  
  .icon {
    width:90px;
    height: 75px;
    background: #fff;
    padding: 10px;
	  border-radius: 10px;
  }
  .card-style-six h4 {
    font-family:var(--vb-ff-heading);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -1px;
    margin: 39px 0 19px;
	  color: var(--vb-primary);
  }
  .card-style-six p {
    font-size:16px;
    line-height: 1.7em;
  }


.block-feature-eighteen { 
	margin-top: 50px;}

.block-feature-eighteen .bg-wrapper {
  border-radius: 50px;
  background: #004fed;
  padding: 120px 90px 95px;
  overflow: hidden;
}
.block-feature-eighteen .bg-wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 34%;
  background: linear-gradient(180deg, rgba(0, 79, 237, 0) 2.55%, rgba(0, 79, 237, 0.75) 45.71%, #004FED 100%);
  bottom: 0;
  left: 0;
}
.block-feature-eighteen .logo-wrapper {
  margin: 0 -10px;
}
 .block-feature-eighteen .logo-wrapper .logo {
  margin: 30px 10px;
  width:112px;
  height:112px;
  border-radius: 30px;
  background: #fff;
  padding: 10px;
  box-shadow: 0 35px 45px rgba(7,14,39,.05);
}

 .card-service-wrapper{
    width: 100%;
    background-color:#eae9e9;
    background-image: url('../images/hover-bg-02.png');
    background-position: top left;
    background-repeat: no-repeat;
    background-size: 0% auto;
    padding:2px 2px 2px 2px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: all 1s ease;
}

.card-service-wrapper::before{
    content: '';
    opacity: 1;
    background-image: url('../images/hover-bg-01.png');
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: 0% auto;
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    z-index: 0;
    transition: all 1s ease;
}

.card-service-wrapper:hover{
    background-size: 100% auto;
    /*box-shadow: 0px 0px 50px 0px rgba(95, 22, 255, 0.6);*/
}

.card-service-wrapper:hover::before{
    background-size: 100% auto;
}
	  
.card-service{
    position: relative;
    display: flex;
    flex-direction: column;
    background-color:#fff;
    color:#15222E;
    gap: 20px 20px;
    padding:2em 2em 2em 2em;
    position: relative;
    overflow: hidden;
	line-height:27px;
    z-index: 1;
}

.card{
    border: none;
    border-radius: 15px 15px 15px 15px;
}


.fancy-banner-seven .bg-wrapper {
  background: url(../images/cta-bg.jpg) no-repeat center bottom;
    background-size: auto;
  background-size: cover;
  border-radius: 50px;
}
.fancy-banner-seven h2 {
  font-family:var(--vb-ff-heading);
  font-weight: 600;
  font-size:62px;
  letter-spacing: -3px;
  line-height: 1.1219em;
  color: var(--vb-white);
}
.fancy-banner-seven p {
	font-size: 24px;
  color: var(--vb-white);
  line-height: 36px;
}
@media (max-width: 768px) {
	.fancy-banner-seven h2 {font-size:32px; line-height:42px;letter-spacing:0;}
	.fancy-banner-seven p {font-size: 18px;line-height: 27px;}
}
/*VPSBABA Features Features End Here*/
.vps-competitors {
	position:relative;
	padding:120px 0 40px;
}
.vb-compare-paln {
    width:100%;
    margin:0 auto;
    position:relative;
}
.vb-compare-paln .vb-price {
  color: #262626 !important;
	font-family: var(--vb-title);
	font-size:36px;
	font-weight: 700;
}
.vb-compare-paln .vb-price i {
  font-size: 24px;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-weight: 600;
  vertical-align: super;
  font-family: var(--vb-text);
}
.vb-compare-paln .vb-price span {
  font-size: 20px;
}
.vb-compare-paln .dc-location {margin: 10px 0;}
.vb-compare-paln .vb-plan {
 font-size:27px;
 font-weight: 700;
 color: var(--vb-primary);
 margin: 0;
 margin-bottom:15px;
}
.vb-compare-paln .vb-compare-table thead th .vb-best-plan {
  	background: #fc5185;
	margin: auto;
	text-align: center;
	padding: 3px 20px;
	color: #fff;
	border-radius: 25px;
	font-weight: 500;
	letter-spacing: 1px;
	font-size: 13px;
	line-height: 20px;
	position: relative;
	top: -32px;
	width: fit-content;	
}
.vb-compare-paln-list {
    display:flex;
    top:0;
    z-index:10;
    padding-bottom:14px;
	border-radius:9px;
	background: var(--vb-primary);
	padding: 0;
	margin-bottom: 25px;
}
.vb-compare-paln-list li {
    list-style:none;
    flex:1;
}
.vb-compare-paln-list li:last-child {
    border-right:none;
}
.vb-compare-paln-list li button {
    width:100%;
    border: none;
    padding:7px;
    background-color:transparent;
    font-size:10px;
    font-weight:bold;
    height:60px;
    color:var(--vb-white);
	text-transform:uppercase;
}
.vb-compare-paln-list li button:focus{outline: none}
.vb-compare-paln-list li.active button {
  background: #5b0797;
  border-radius: 9px;
  color: var(-vb-white);
}
.vb-compare-table {border-collapse:collapse; table-layout:fixed; width:100%; background-color: #fff;/*box-shadow:  0 0 7px 0 rgba(0,0,0,.10);*/}
.vb-compare-table th { background:#F5F5F5; display:none; }

.vb-compare-table thead th:first-child{background-color: transparent !important; text-align: left; /*border: none*/}
.vb-compare-table thead th{background-color:transparent; font-size: 18px; line-height: 36px; color: #000; padding: 20px 25px 0; font-weight:400;border: 1px solid #d8e4ef;}
.vb-compare-table tbody td:first-child{font-size: 16px;line-height: 24px;color: var(-vb-primary);font-weight:600;text-align:left;}
.vb-compare-table tbody td{padding:16px 18px;border: 1px solid #d8e4ef;font-weight:500 !important;color:#15222E;}
.vb-compare-table td, .vb-compare-table th { border: none; empty-cells:show}
.vb-compare-table td, .vb-compare-table th {
    text-align:center;
}
.vb-compare-table tbody tr:nth-child(even){background-color:#eef3fc}
.vb-compare-table td.default {display:table-cell;color:var(--vb-secondary);}
.sep {background:var(--vb-primary);font-size:18px !important; line-height:30px; color:var(--vb-white) !important; font-weight:500;}
.txt-l { font-size:28px; font-weight:bold; }
.txt-top { position:relative; top:-9px; left:-2px}
.hide {border:0; background:none}
.vb-compare-table td+td, .vb-compare-table th+th {
    text-align:center;
    display:none;
}
.vb-compare-table {
  border-collapse: collapse;
}
.vps-pro-col-highlight-top {
  border: 2px solid #007fff !important;
  border-radius: 8px;
  background: #f0f8ff !important;
  border-bottom:none !important;
}
.vps-pro-col-highlight-left-right{
	background: #f0f8ff !important;
	border-left: 2px solid #007fff !important;
	border-right: 2px solid #007fff !important;
}
.vps-pro-col-highlight-bottom{border-bottom: 2px solid #007fff !important;background: #f0f8ff !important;}
@media (min-width: 768px) {
    .vb-compare-paln-list {
        display:none;
    }
    .vb-compare-table td, .vb-compare-table th {
        display:table-cell !important;
    }
    .vb-compare-table thead th:first-child, .vb-compare-table tbody td:first-child {
        width:290px;
    }
}
@media only screen and (max-width: 991px) {
.vb-compare-paln .vb-price {font-size:30px;}
.vb-compare-paln .vb-price span {font-size:16px;}	
.sep {font-size: 16px !important;}	
.vb-compare-table thead th:first-child, .vb-compare-table tbody td:first-child {
  width: 150px;
}
.vb-compare-paln .vb-price i {font-size: 16px;display:initial;}	
  .vb-compare-table .btn {
	padding:10px 18px;
	font-size:14px;
	line-height: 14px;
}
}
@media only screen and (max-width: 1199px) {
.vb-compare-paln .vb-plan {
	font-size: 27px;
}	
.vb-compare-paln .vb-price {font-size: 27px;}
.vb-compare-paln .vb-price i {font-size: 16px;}
.vb-compare-paln .vb-price span {
  font-size: 14px;
  font-weight: 600;
}	
.vb-compare-paln .vb-compare-table thead th .vb-best-plan {
	padding: 3px 12px;
	background: #fc5185;
	font-size: 12px;
}
.vb-compare-table .btn {
	padding:10px 18px !important;
	font-size:14px !important;
	line-height: 14px !important;
}
}
@media only screen and (max-width: 480px) {
 .vb-compare-table tbody td {padding: 10px 6px;font-size: 14px;}
 .vb-compare-table tbody td:first-child {font-size: 14px;}
}
.vb-compare-table .btn {
font-size: 16px;
line-height: 16px;
display: inline-block;
font-weight: 500;
color: var(--vb-white);
background-color: var(--vb-primary);
border-radius:5em;
padding: 15px 30px;
margin-top: 10px;
transition: all ease-in-out 0.5s;
border: 1px solid var(--vb-primary);
}
.vb-compare-table .btn:hover{
	border: 1px solid var(--vb-primary);
	background-color:var(--vb-white);
	color:var(--vb-primary)
}
.vb-compare-table .vb-check {
	font-size:20px;
	color:#18ab63;
}
.btn-one {
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    line-height:48px;
    border-radius: 10px;
    padding: 0 40px;
      background: #1060ff;
	text-transform:uppercase;
  }
  .btn-one:hover {color:#000;}
/*VPSBABA Competitor End Here*/
/*FAQ Code comes here*/
 .faq-area {
    padding:120px 0;
     position: relative;
}
 .faq-area .section-title .title {
    font-size: 48px;
    line-height: 59px;
    font-weight: 700;
}
 .faq-wrap {
    margin-left:0;
}
 .faq-wrap .accordion-item {
     background-color: #eef3fc;
  border: 1px solid #e6eefb;
     box-shadow: 0px 15px 30px rgba(61, 90, 125, 0.05);
     border-radius: 20px;
     overflow: hidden;
     margin-bottom: 15px;
}
 .faq-wrap .accordion-item .accordion-header{
    line-height:0;
}
 .faq-wrap .accordion-item:last-child {
    margin-bottom: 0;
}
 .faq-wrap .accordion-button {
     padding:40px 30px 40px 30px;
     font-weight:600;
     font-size:21px;
     color:var(--vb-black);
     text-align: left;
     background-color:#eef3fc;
     border-bottom: 1px solid #F4F4F4;
}
 .faq-wrap .accordion-button:not(.collapsed) {
     font-weight:600;
     font-size:21px;
     background-color:#eef3fc;
     box-shadow: none;
     border-bottom: 1px solid #F4F4F4;
}
 .faq-wrap .accordion-button:focus {
     border-color:#F4F4F4;
     box-shadow: none;
}
 .faq-wrap .accordion-item:first-of-type .accordion-button {
     border-top-left-radius: 0;
     border-top-right-radius: 0;
}
 .faq-wrap .accordion-item:last-of-type .accordion-button.collapsed {
     border-bottom-right-radius: 0;
     border-bottom-left-radius: 0;
}
 .faq-wrap .accordion-button::after {
     position: absolute;
     content: "\f067";
     top:22px;
     right: 25px;
     width: 37px;
     height: 37px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 16px;
     font-weight: 300;
     color:var(--vb-white);
     border-radius: 50%;
     background:var(--vb-primary);
     transition: .3s linear;
     font-family: "Font Awesome 6 Pro";
}
 .faq-wrap .accordion-button:not(.collapsed)::after {
     background-image: none;
     transform: rotate(0);
     content: '\f068';
}
 .faq-wrap .accordion-body {
     padding:18px 30px 30px 30px;
}
 .faq-wrap .accordion-body p {
     margin-bottom: 0;
     text-transform: capitalize;
     font-size: 14px;
     font-weight:400;
     line-height: 27px;
}
/*iPad 3 125% Scale Inch Monitor*/
 @media (max-width: 1536px) {
     .faq-wrap .accordion-button {
        line-height:18px;
    }
}
 @media only screen and (max-width: 767px) {
     .faq-area .section-title .title {
        font-size:36px;
        line-height:45px;
    }
     .faq-area .faq-img {
        margin-bottom:15px;
    }
}
 @media only screen and (max-width: 479px) {
     .faq-area .section-title {
        margin-left:0;
         text-align:center;
    }
     .faq-wrap {
        margin-left:0px;
    }
     .faq-wrap .accordion-button {
        line-height: 20px;
		padding: 18px 70px 18px 30px;
    }
     .faq-wrap .accordion-button::after {
        top:22px;
    }
	 
}
/*FAQ Code end Here*/
/*Search Domain Section Start Here*/
.search_domain {
	position:relative;
	
	margin: 30px;
  background: url(../images/hero-bg.jpg) no-repeat center;
    background-size: auto;
  background-size: cover;
  border-radius: 50px;
}
.search_domain .section-title {margin-bottom:5px}
.search_domain .section-title .title {
	color: var(--vb-white);
}
.search_domain .section-title .subtitle {
  padding-bottom: 15px;
  color: var(--vb-white);
}
.search_domain form {
  position: relative;
}
.domain-search-form input {
  width:100%;
  height:90px;
  background:var(--vb-bg-light-3);
  padding: 0 33px;
  font-weight: 400;
  font-size:21px;
  color:var(--vb-text-dark);
  border:none;
  border-radius:4px;
}
input:-moz-placeholder {
  color:#262626;
}
input:-webkit-placeholder {
  color:#262626;
}
input:placeholder {
  color:#262626;
}
.btn.btn-form i {
  margin-right: 5px;
}
.btn.btn-form {
  position: absolute;
  right: 0px;
  top:0;	
  padding:18px 50px;
  background: var(--vb-primary);
  color: var(--vb-white);
  text-transform: uppercase; 
  margin: 14px 14px 0 0px;	
  border-radius:4px;
  font-weight:600;	
}
.btn.btn-form:hover {background:var(--vb-theme-primary);color:var(--vb-black);}
.search_domain ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.search_domain li {
    color: var(--vb-white);
	padding: 0px 15px 0px 15px;
	font-size: 16px;
	font-weight: 500;
	display: inline-block;;
}
.search_domain li strong {
	color: var(--vb-theme-primary);
	font-weight: 500;
	font-weight: 600;
    font-family: "Arial"
}
@media only screen and (max-width: 767px) {

}
@media only screen and (max-width: 479px) {
.btn.btn-form {position: relative;padding:18px 85px; border-radius:20px; }
.search_domain li {padding: 0px 15px 10px 15px;}	
}
@media (max-width: 1199px) {
  .search_domain {margin:10px; border-radius:20px;padding-top:125px;padding-bottom:30px;}
	.domain-search-form input {
  height: 60px;
  padding: 0 12px;
	}
}
/*Search Domain Section End Here*/
.domain-extensions{
	position:relative;
	padding-top:60px;
}
.domain-card {background-color:#eef3fc;border-radius: 20px;border: none;transition: all 0.35s ease;}
.domain-card:hover {transform: translateY(-8px) scale(1.03);}
.domain-title {color: var(--vb-primary);font-size: 2rem;font-weight: 700;}
.domain-card p{margin-top:1rem;color:var(--vb-white);}
.domain-card p.black{color:var(--vb-black);}
.domain-card .price {color:var(--vb-black);font-size:2rem;font-weight:700;}
.domain-card .price span {font-size: 1rem;font-weight: 400;}
.domain-card .hot-badge {position: absolute;top: 15px;right: 20px;}
.domain-card .btn-outline-primary {color:var(--vb-primary);border-color:var(--vb-primary);}
.domain-card .btn-outline-primary:hover {color:var(--vb-white);}
/*Call to Action Start Here*/
.cta-area {
	background: #f2edf9;
	position:relative;
	padding:40px 0;
}
.cta__wrapper {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position:relative;
  z-index:2;
}
.cta__wrapper .cta__title {
  color: var(--vb-primary);
  font-size:50px;
  font-weight: 800;
}
.cta__wrapper .cta__subtitle{
  color: var(--vb-border-dark);
  font-size:21px;
  font-weight: 600;
}
.cta__wrapper .primary-btn {padding:18px 20px; text-transform:capitalize;}
@media only screen and (max-width: 479px) {
  .cta__wrapper .cta__title {font-size: 32px;}
  .cta__wrapper .cta__subtitle {font-size: 18px;}
  .cta__wrapper .primary-btn {font-size: 18px;font-weight: 700;}
}
/*Call to Action End Here*/
.rts-breadcrumb-area {
  background: var(--vb-bg-secondary);	
  position: relative;
  z-index: 1;
  height:660px;
  padding-top: 180px;
}
@media (max-width: 992px) {
  .rts-breadcrumb-area {
    height: auto;
    padding-bottom: 60px;
  }
}
.rts-breadcrumb-area .breadcrumb-content .heading-title {
  font-size: 64px;
  line-height: 70px;
  color:var(--vb-primary);
  font-weight: 700;
}
@media (max-width: 1200px) {
  .rts-breadcrumb-area .breadcrumb-content .heading-title {
    font-size: 60px;
    line-height: 70px;
  }
}
@media (max-width: 576px) {
  .rts-breadcrumb-area .breadcrumb-content .heading-title {
    font-size: 54px;
    line-height: 64px;
  }
}
@media (max-width: 450px) {
  .rts-breadcrumb-area .breadcrumb-content .heading-title {
    font-size: 36px;
    line-height: 46px;
  }
}
.rts-breadcrumb-area .breadcrumb-content .desc {
  color: var(--vb-text-dark);
  font-size: 18px;
  font-weight: 600;
}
.rts-breadcrumb-area .breadcrumb-image-area {
  text-align: end;
}
@media (max-width: 992px) {
  .rts-breadcrumb-area .breadcrumb-image-area {
    text-align: start;
    margin-bottom: 30px;
  }
}
.rts-breadcrumb-area .breadcrumb-shape-area {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

/*Service Css */
.contact-info-section {
	padding:60px 0;
	position:relative;
}
.contact-info-card {
  background-color:#e4eeff;
  border-radius: 10px;
  padding: 30px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-bottom: 18px;	
}
.contact-info-card:hover {
  background-color: #f0f8ff;
  box-shadow: 0 35px 41.5px -16px rgba(0, 69, 64, 0.08);
  transition: all 0.3s;
}
.contact-info-card:hover .contact-info-top i{
  background-color: var(--vb-primary);
  border: 2px solid var(--vb-primary);
  color: var(--vb-white);
  transition: all 0.3s;
}
.contact-info-card .contact-info-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.contact-info-card .contact-info-top h4 {
  max-width:127px;
  width:100%;
  font-weight:600;
  font-size:28px;
  line-height:36px;
  color:var(--vb-primary);
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .contact-info-card .contact-info-top h4 {
    font-size: 24px;
    line-height: 1.4;
  }
}
@media (max-width: 991px) {
  .contact-info-card .contact-info-top h4 {
    font-size: 22px;
    line-height: 1.3;
  }
}
.contact-info-card .contact-info-top i {
  width: 70px;
  height: 70px;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 17px 15px;
  background-color: var(--vb-white);
  border-radius: 100%;
  border:1px solid #c5d7f4;
  box-shadow: 0px 15px 32.2px -9px rgba(0, 24, 25, 0.2);
  color: var(--vb-primary);	
}
@media (min-width: 992px) and (max-width: 1199px) {
  .contact-info-card .contact-info-top i{
    font-size: 24px;
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 991px) {
  .contact-info-card .contact-info-top i {
    font-size: 20px;
    width: 50px;
    height: 50px;
  }
}
.contact-info-card .contact-info-content p {
  width: 80%;
  padding-bottom: 10px;
  font-size: 18px;
  color: var(--vb-black);
  font-weight: 500;
}
.contact-info-card .i-shape {
  color: rgba(134, 134, 129, 0.05);
  font-size: 110px;
  position: absolute;
  z-index: -1;
  bottom: -70px;
  left: 55%;
}

.contact-section {
  padding:60px 0 0;	
  position: relative;
  z-index: 1;
}
.contact-form-wrap {
  background-color:#e4eeff;
  border-radius: 24px;
  padding: 40px 50px 50px;
  text-align: center;
}
.contact-form-wrap .input-wrap input {
  background: #ffffff;
}
.contact-form-wrap .input-wrap input:focus {
  background: #ffffff;
}
.contact-form-wrap .input-wrap textarea {
  background: #ffffff;
}
.contact-form-wrap .input-wrap textarea:focus {
  background: #ffffff;
}

.contact-section .input-wrap {
  margin-bottom: 20px;
}
.contact-section .input-wrap input {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color:var(--vb-black);
  padding: 15px 20px;
  background:var(--vb-white);
  border-radius: 12px;
  border: 2px solid transparent;
  outline: none;
  width: 100%;
}
.contact-section .input-wrap input:focus {
  border:1px solid var(--vb-primary);
  background:var(--vb-white);
}
.contact-section .input-wrap input::-webkit-input-placeholder {
  color: #868681;
}
.contact-section .input-wrap input:-moz-placeholder {
  color: #868681;
}
.contact-section .input-wrap input::-moz-placeholder {
  color: #868681;
}
.contact-section .input-wrap input:-ms-input-placeholder {
  color: #868681;
}
.contact-section .input-wrap textarea {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color:var(--vb-black);
  padding: 15px 20px;
  background:var(--vb-white);
  border-radius: 12px;
  border: 2px solid transparent;
  outline: none;
  width: 100%;
  height: 160px;
}
.contact-section .input-wrap textarea:focus {
  border:1px solid var(--vb-primary);
  background:var(--vb-white);
}
.contact-section .input-wrap textarea::-webkit-input-placeholder {
  color: #868681;
}
.contact-section .input-wrap textarea:-moz-placeholder {
  color: #868681;
}
.contact-section .input-wrap textarea::-moz-placeholder {
  color: #868681;
}
.contact-section .input-wrap textarea:-ms-input-placeholder {
  color: #868681;
}

@media (max-width: 768px) {
	.contact-form-wrap {padding:40px 16px 50px;}
}





/*Content Start*/
.vb-content {
	position: relative;
}
.vb-content h3 {
	font-size:32px;
  font-weight: 700;
  color:var(--vb-primary);
  line-height:32px;
  margin-bottom: 18px; 		
}
.vb-content p {
  line-height: 27px;
  color:var(--vb-black);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 25px;	
}
 .vb-content ul li {
    color:var(--vb-black);
  font-size: 16px;
  font-weight: 500;
    padding: 4px 0;
}
.vb-content p i {
	font-size:15px;
}
.vb-content p strong {
	font-size: 18px;
	color: var(--vb-primary);
}
.vb-content a {
	color:#ed1216;
	text-decoration:underline;
}
.vb-content a:hover {
	color:#ed1216;
}

/*VPS Hosting: Self Managed vs Fully Managed Table Start Here*/
.vps-modern-table {
  max-width: 980px;
  margin: 40px auto;
}
.vps-modern-table .table {
  margin-bottom: 0;
  border-color: #d8e4ef;
}

.vps-table-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 20px;
  color: #0a2d6f;
}

/*TABLE WRAPPER*/
.vps-table-wrapper {
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  border-radius: 12px;
  overflow: visible;
}
/*TABLE HEADER*/
.vps-table-wrapper thead {
  background-color: var(--vb-primary);
  color: #fff;
}
.vps-table-wrapper thead th {
  padding: 18px;
  font-size: 21px;
  position: relative;
}
/*COLUMN ALIGNMENT (DESKTOP)*/
.vps-table-wrapper th:first-child,
.vps-table-wrapper td:first-child {
  text-align: left;
  font-weight: 600;
}
.vps-table-wrapper th:not(:first-child),
.vps-table-wrapper td:not(:first-child) {
  text-align: center;
}
/*CELL STYLES*/
.vps-table-wrapper td {
  padding: 16px;
}
.vps-table-wrapper tbody tr:hover {
  background-color: #eef3fc;
}
/*STATUS & PRICE*/
.check {
  color: #28a745;
  font-weight: 600;
}
.cross {
  color: #dc3545;
  font-weight: 600;
}

.free,
.paid {
  color: #15222E;
  font-family: var(--vb-title);
  font-weight: 700;
  font-size: 27px;
}
.paid small {
  font-size: 16px;
  font-weight: 500;
}

/*RECOMMEND BADGE (DESKTOP)*/
.recommend-badge {
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  background-color: #00a651;
  padding: 2px 16px;
  border-radius: 12px;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  text-transform: uppercase;
  z-index: 10;
}
/*MOBILE RESPONSIVE*/
@media (max-width: 768px) {
  /* Convert table to cards */
  .vps-table-wrapper table,
  .vps-table-wrapper thead,
  .vps-table-wrapper tbody,
  .vps-table-wrapper tr {
    display: block;
  }
  .vps-table-wrapper thead {
    display: none;
  }

  .vps-table-wrapper tr {
    margin-bottom: 15px;
    padding: 10px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.05);
  }

  /* Row layout: left label, right value */
  .vps-table-wrapper td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none;
    padding: 8px 2px;
    font-size: 12px;
  }

  /* Feature label */
  .vps-table-wrapper td::before {
    content: attr(data-label);
    background: #f1f5ff;
    color: #0a2d6f;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    margin-right: 10px;
    flex-shrink: 0;
  }

  /* Value alignment */
  .vps-table-wrapper td > * {
    text-align: right;
    flex-grow: 1;
  }

  /* Price sizing on mobile */
  .free,
  .paid {
    font-size: 20px;
    line-height: 1.3;
  }
  .paid small {
    font-size: 14px;
  }

  /* Hide badge on mobile */
  .recommend-badge {
    display: none;
  }

  /* Full width container */
  .vps-modern-table {
    max-width: 100%;
    padding: 0 10px;
  }
}
/*VPS Hosting: Self Managed vs Fully Managed Table End Here*/

/*Footer Area Start Here*/
.footer {
	padding-top:90px;
}
.footer__widget-title .heading-txt{
  font-family: var(--vb-ff-heading);
  font-weight: var(--vb-fw-sbold);
  color:var(--vb-common-black);
  font-style: normal;
  font-size: 20px;
  line-height: 34px;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) and (max-width: 992px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer__widget-title .heading-txt{
    margin-top: 30px;
  }
}
.footer__widget-2th-left {
  padding-left: 42px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 992px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer__widget-2th-left {
    padding-left: 0;
  }
}
.footer__widget-3th-left {
  padding-left: 54px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 992px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer__widget-3th-left {
    padding-left: 0;
  }
}
.footer__widget-4th-left {
  padding-left:12px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 992px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer__widget-4th-left {
    padding-left: 0;
  }
}
.footer__widget .dec {
  font-family: var(--vb-ff-heading);
  font-weight: var(--vb-fw-light);
  font-style: normal;
  font-size: 16px;
  line-height: 30px;
  color: rgba(255, 255, 255, 0.8);  
}
.footer__wrap {
  padding-top:60px;
  padding-bottom:60px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .footer__wrap {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer__wrap {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.footer__logo a img {
  max-width: 198px;
}
.footer__content {
  margin-bottom: 28px;
}
.footer__content .dec {
  font-family: var(--vb-ff-heading);
  font-weight: var(--vb-fw-regular);
  font-style: normal;
  font-size:15px;
  line-height: 30px;
  color:var(--vb-common-black);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 992px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer__content .dec br {
    display: none;
  }
}
.footer__info a {
  background: #D5C8B9;
  border-radius: 6px;
  font-family: var(--vb-ff-heading);
  font-weight: var(--vb-fw-sbold);
  color: var(--vb-heading-primary);
  font-style: normal;
  font-size: 18px;
  padding: 4px 20px 5px 20px;
  display: inline-block;
  margin-bottom: 10px;
}
.footer__info a:last-child {
  margin-bottom: 0;
}
.footer__link ul li {
  list-style: none;
}
.footer__link ul li:not(:last-of-type) {
  margin-bottom: 19px;
}
.footer__link ul li a {
  font-family: var(--vb-ff-heading);
  font-weight: var(--vb-fw-regular);
  font-style: normal;
  font-size:15px;
  line-height: 26px;
  color:var(--vb-common-black);
  transition: all 0.3s ease-in-out;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__link ul li a:hover {
  color: var(--vb-primary);
}
.footer__link ul li a i {
  margin-top: -7px;
}
.footer-contact-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 30px;
	padding-top: 30px;
}

.footer-contact-list .footer-contact-item{
	width: calc(50% - 15px);
}

.footer-contact-item-header{
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
}

.footer-contact-item-header img{
	width: 100%;
	max-width: 20px;
}

.footer-contact-item p{
  color: var(--vb-common-black);
  margin-bottom: 0;
  font-size: 15px;
}

.footer-contact-item .phone-no{
	font-size:21px;
	color:var(--vb-common-black);
	font-weight: 600;
}

.footer-contact-item p a,
.footer-contact-item .phone-no a{
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.footer-contact-item p a:hover,
.footer-contact-item .phone-no a:hover{
	color: var(--accent-color);
}
.footer__bottom {
  /*display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 15px;*/
  padding: 25px 0;
  border-top:1px solid rgba(0,0,0,.08);
}
.footer__copyright p {
  font-family: var(--vb-ff-body);
  font-weight: var(--vb-fw-medium);
  font-style: normal;
  font-size: var(--vb-fs-h6);
  line-height: var(--vb-lh-p);
  color:var(--vb-common-black);
}
.footer__copyright p a {
  font-family: var(--vb-ff-body);
  font-weight: var(--vb-fw-medium);
  font-style: normal;
  font-size: var(--vb-fs-h6);
  line-height: var(--vb-lh-p);
  color:var(--vb-common-black);
  transition: all 0.3s ease-in-out;
}
.footer__copyright p a:hover {
  color:var(--vb-primary);
}
.footer__copyright-menu ul {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer__copyright-menu ul li {
  list-style: none;
}
.footer__copyright-menu ul li a {
  background: #D5C8B9;
  font-family: var(--vb-ff-heading);
  font-weight: var(--vb-fw-sbold);
  color: var(--vb-heading-primary);
  font-style: normal;
  border-radius: 6px;
  font-size: 15px;
  line-height: 25px;
  text-transform: uppercase;
  padding: 6px 16px 7px 16px;
  transition: all 0.3s ease-in-out;
}
.footer__copyright-menu ul li a:hover {
  background: var(--vb-common-white);
}









.whatsapp-chat-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px; /* Ensures proper spacing */
	 z-index: 9999; /* ensure top layer */
}

/* Survey Button */
.survey-btn {
    background-color: #e4eeff;
  color: var(--vb-black);
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.2s ease-in-out;
  white-space: nowrap;
  margin-bottom: 10px;
  position: relative;
  z-index: 10;
  pointer-events: auto;
  border: 1px solid #b9d2fb;
}

.survey-btn:hover {
   color: var(--vb-heading-primary);
   background-color: var(--vb-theme-primary);
}

/* Fully Rounded WhatsApp Button */
.whatsapp-chat {
	pointer-events: auto;
    z-index: 20; /* higher than buttons */
    width: 60px;
    height: 60px;
    background-color:var(--vb-theme-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
    position: relative;
}
.whatsapp-chat:hover {
    background-color:var(--vb-theme-primary);
    transform: scale(1.1);
}
.whatsapp-chat img {
    width: 35px;
    height: 35px;
}
/*MOBILE VIEW – SHOW ONLY WHATSAPP BUTTON*/
@media (max-width: 768px) {
    /* Hide survey buttons on small devices */
    .whatsapp-chat-container .survey-btn {
        display: none !important;
    }
    /* Ensure WhatsApp button is visible */
    .whatsapp-chat-container .whatsapp-chat {
        display: flex;
    }
}
