@keyframes pulse {
  0% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.1);
  }
  100% {
      transform: scale(1);
  }
}
.notification-badge {
  /* ...other styles... */
  animation: pulse 2s infinite;
}

.notification-badge-menu {
  position: absolute;
  top: 6px;  
  right: 9px;
  width: 7px;
  height: 7px;
  background-color: #00ff00;
  border-radius: 50%;
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
80% {
  opacity: 0;
}
}

.notification-badge-logo {
  position: absolute;
  top: 14px;
  right: 65px;
  width: 4px;
  height: 4px;
  background-color: #00ff00;
  border-radius: 50%;
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
50% {
  opacity: 0;
}
}



.play-button {
  background-color: #25d366b0;
  border: #fff solid 2px;
  position: relative;
  animation: shadowPulse 1s infinite linear;
  padding: 10px 14px;
}

.play-button::before {
  position: absolute;
    content: '';
    border-top: transparent 10px solid;
    border-bottom: transparent 10px solid;
    border-left: #fff 17px solid;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
}

.play-button::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: #fff solid 2px;
  border-radius: 100%;
  animation: ringPulse 1s infinite linear;
}

@keyframes ringPulse {
  0% {
      opacity: 0;
      transform: scale(0.95);
  }
  10% {
      opacity: 1;
  }
  80%, 100% {
      opacity: 0;
      transform: scale(2);
  }
}

@keyframes shadowPulse {
  0% {
      box-shadow: 0 0 8px 6px transparent,
                  0 0 0 0 transparent,
                  0 0 0 0 transparent;
  }
  10% {
      box-shadow: 0 0 8px 6px #25d365,
                  0 0 12px 10px transparent,
                  0 0 12px 5px #25d366b0;
  }
  80%, 100% {
      box-shadow: 0 0 8px 6px transparent,
                  0 0 0 40px transparent,
                  0 0 0 40px transparent;
  }
}

.play-button:hover {
  background-color: #cc3711c4; /*replace #yourcolor with the color you want on hover*/
  transition: background-color 0.3s ease; /*this will animate the color change*/
}

.play-button:hover i {
  color: #ddd; /*replace #yourcolor with the color you want on hover*/
  transition: color 0.3s ease; /*this will animate the color change*/
}


.modal-dialog {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.embed-responsive-16by9 {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
}

.embed-responsive-16by9 iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 5px;
}

.p-blue {
  color: #0384c7;
}







.info-box {
  background: #fff;
  padding: 15px;
  border: 1px solid  #ddd;
  border-radius: 8px;
  flex-direction: column;
}

.info-text {
  text-align: center;
  margin-bottom: 15px;
}

.info-heading {
  margin-bottom: 5px;
  color: #ff7607;
  font-weight: 600;
}

.info-description {
  margin-bottom: 0px;
  font-size: 17px;
}

.info-button {
  background-color: #00bf63;
  border-color: #00964e;
  width: 100%;
}

@media (min-width: 576px) {
  .info-box {
      flex-direction: row;
  }
  .info-text {
      text-align: left;
      margin-bottom: 0;
  }
  .info-button {
      width: auto;
  }
}



.btn.view-plan {
  background-color: #000;
  color: #fff;
}

.btn.view-plan:hover, .btn.view-plan:focus {
  background-color: #333;
  color: #fff;
}




.row.global-datacenter-locations {
  background-image: url(https://stablepoint.com/assets/interface/map/map.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 122px 0;
  background-position: center;
}

.stp-mapLocation {
  display: flex;
  align-items: center;
  border: 1px solid #7575755c;
  padding: 5px 10px;
  border-radius: 6px;
  margin-bottom: 20px;
  color: #fff;
}

.stp-mapLocation img {
  margin-right: 10px;
}


.hosting-options-section {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
}
.hosting-icon {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin-bottom: 80px;
  border: 1px solid #ddd;
}

.hosting-icon-h {
  border-radius: 100px;
  margin-bottom: 80px;
  border: 1px solid #0b883a;
  line-height: 0px;
  font-size: 30px;
  background: #25d366;
  padding: 7px;
  color: #ffffff;
}

.hosting-content {
  padding-left: 9px;
}

.hosting-content p{
    background: #f8f9fa;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 25px;
    margin-top: 15px;
}

.hosting-content h4{
  font-weight: 600;
}







body {
    font-family: 'Inter', sans-serif !important;
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
}
p {
  margin-top: 0;
  margin-bottom: 1.2rem;
}

.container {
    max-width: 1120px;
}

/* Header */
header.sticky-top {
  background-color: #ffffff;
}

/* Logo */
header.sticky-top .navbar-brand {
  color: #fafafa;
}

/* Menu */
header.sticky-top .navbar-nav .nav-link {
  color: #000;
}

header.sticky-top .navbar-nav .nav-link:hover {
  color: #3374d4;
}

.nav-item.active .nav-link {
  color: #B31942 !important;
}






/* Login Button */
header.sticky-top .btn {
  border-radius: 50px;
  padding: 3px 25px;
  border: 1px solid #007fc2;
  color: #000000;
  background-color: transparent;
}

header.sticky-top .btn:hover {
  background-color: #91d0ff;
  color: #fafafa;
}

/* Custom Toggler */
.custom-toggler.navbar-toggler {
  border-color: #878a8b;
}

.custom-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%2391d0ff' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-toggler {
  padding: 5px;
  border-radius: 56px !important;
  font-size: 16px;
}

.dropdown-menu {
  background-color: #f8f9fa;
  padding: 0px;
}

.dropdown-item {
  color: #212529;
}
.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0; 
} 

.dropdown-item {padding: 6px 15px;
  font-size: 15px;}

.dropdown-menu-arrow::before {
  position: absolute;
  top: -7px;
  left: 20px;
  border-width: 0 7px 7px;
  border-color: transparent transparent #0f4391;
  content: "";
  height: 0;
  width: 0;
  border-style: solid;
}

.dropdown-menu-arrow {
  position: relative;
}




@media (max-width: 992px) {
  .navbar-collapse {
    position: fixed;
    padding-left: 15px;
    padding-right: 15px;
    top: 0;
    left: 0;
    width: 80%;  /* You can change this as per your requirement */
    height: 100%;
    background-color: #fff;
    z-index: 1050;
    transform: translateX(-100%);
    transition: transform 0.3s ease-out;
  }
  .navbar-collapse.show {
    transform: translateX(0);
  }
}

.navbar-toggler {
  z-index: 2000;  /* Make sure this is higher than the navbar-collapse's z-index */
}

.sidebar-backdrop {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5); /* Change as needed */
  z-index: 1040; /* Should be less than navbar-collapse's z-index */
}

@media (max-width: 992px) {
  .navbar-collapse.show + .sidebar-backdrop {
    display: block;
  }
}
.navbar-collapse.collapsing {
  -webkit-transition: all 0.1s ease !important;
  transition: all 0.1s ease !important; /* adjust the duration as needed */
  max-height: 100vh;
  overflow: hidden;
  transition: max-height 0.1s ease !important;
}









.font-weight {font-weight: 600;}

.custom-section {
  background-color: #00BF63;
  color: #fff;
  padding: 20px 0;
}

.custom-link {
  color: #fff;
  text-decoration: none;
  margin-right: 15px;
}

.custom-link:hover {
  color: #ffffff;
  text-decoration: underline;
}



/* Desktop and larger devices */
#banner-section h1 {
  font-size: 35px; 
  padding-bottom: 20px;
}

/* Mobile and smaller devices */
@media screen and (max-width: 767px) {
  #banner-section h1 {
      font-size: 25px; 
  }
}


/* Custom unique button styles */
.btn.custom-btn.unique-btn {
  color: #fff;
}

.custom-btn-container {
  border: 1px solid #ddd;
  border-radius: 100px;
  width: 100%;
}

/* Custom button hover state */
.btn.custom-btn.unique-btn:hover {
  border-color: #91d0ff;
  color: #91d0ff;
}






.btn-outline-secondary {
    border-color: #ddd;
}

.border-bottom-n {
    border-bottom: solid 1px #3f3f3f !important;
}

.border-bottom {
  border-color: #d9d9d9 !important;
}
.notification-section {
    background-color: #251132;
}
.offer-section {
    background-color: white;
    border-bottom: 1px solid #ddd;
}



/* Pricing Table */

.card {
    border: 1px solid #ddd;
    background-color: #fff;
}

.card-body p {
    font-weight: 600;
}

.card .row {
  margin: 0;
  padding: 5px 0;
  border-radius: 5px;
  background: #000000;
  color: #ddd;
}

.card .row + .row {
    margin-top: 15px;
}

.card .text-left {
    text-align: left;
}

.card .text-right {
    text-align: right;
}

.card .text-right span {
    color: #00BF63; 
}

.card ul {
    line-height: 35px;
    padding-top: 10px;
    list-style: none;
    padding-left: 5px;
    margin-bottom: 0px;
}

.card select {
    width: 100%;
    border: 1px solid #ddd;
    padding: 5px;
    background: #e9f2ff;
}

/* btn */
.btn-custom {
  background-color: #00BF63;
  border-color: #00BF63;
  color: white;
  border-radius: 50px;
  font-size: 16px;
  margin-right: 14px;
  padding: 3px 15px;
}

.btn-custom:hover {
  background-color: #009b53;
  border-color: #009b53;
}

.icon-custom {
  color: #00BF63;
  font-size: 32px;
  padding: 0;
}




/* Mobile Devices */
@media (max-width: 480px) {
    h1 {
      font-size: 22px;
    }
    h2 {
      font-size: 20px;
    }
    h3 {
      font-size: 18px;
    }
    h4 {
      font-size: 16px;
    }
  }
  
  /* Tablets */
  @media (min-width: 481px) and (max-width: 768px) {
    h1 {
        font-size: 26px;
      }
      h2 {
        font-size: 22px;
      }
      h3 {
        font-size: 18px;
      }
      h4 {
        font-size: 16px;
      }
  }
  
  /* Desktops and laptops */
  @media (min-width: 769px) {
    h1 {
        font-size: 28px;
      }
      h2 {
        font-size: 24px;
      }
      h3 {
        font-size: 20px;
      }
      h4 {
        font-size: 18px;
      }
  }
  

  @media (max-width: 576px) {
    .border-on-mobile {
        border-top: 1px solid #5f5f5f !important;
        padding-top: 10px;
        margin-bottom: -57px;
    }
}















  .footer {
    background-color: #ffffff; /* or use 'black' */
    color: #000000;  /* or use 'white' for text color */
  }
  
  .footer ul li a {
    text-decoration: none;
    color: #333333 !important; 
    line-height: 40px;
  }
  
  .footer ul li a:hover {
    color: #91d0ff !important;
  }
  
  .social-icons {
    display: inline-flex;
    gap: 10px;
  }
  
  .social-icon {
    color: #393939;
    padding: 0px 6px;
    text-align: center;
    font-size: 20px;
  }
  
  .social-icon:hover {
    color: #91d0ff;
    border-color: #91d0ff;
  }
  
  .copyright-footer {
    background-color: #ffffff;
    text-align: left !important;
    color: #000000 !important;
    border-top: 1px solid #ddd;
  }


  
  .footer-07 {
    background: #121212; }
    .footer-07 a {
      color: #ddd; }
    .footer-07 p {
      color: rgba(255, 255, 255, 0.3); }
    .footer-07 .footer-heading {
      font-size: 24px;
      color: #ddd;
      font-weight: 500;
      margin-bottom: 35px; }
      .footer-07 .footer-heading .logo {
        color: #ddd; }
    .footer-07 .menu {
      margin-bottom: 30px; }
      .footer-07 .menu a {
        color: rgba(255, 255, 255, 0.6);
        margin: 0 10px;
        letter-spacing: 1px; }
    .footer-07 .ftco-footer-social li a {
      background: transparent;
      border: 1px solid #a3de83; }
      .no-underline {
        text-decoration: none !important;
    }

    .no-underline:hover {
      color: #72abff !important;  /* Change this to the color you want */
  }

  .dataTables_processing {
    background: none; /* remove default overlay */
    color: transparent; /* make text transparent */
    border: none; /* remove border */
    z-index: 1; /* optional, to ensure it's above the table */
}

#signup {color: #0a58ca;
  font-weight: 600;}
    
    .chat-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #f5ffea;
    border: 3px solid #8BC34A;
    border-radius: 50%;
    padding: 10px 10px;
    cursor: pointer;
    display: flex;
    font-size: 30px;
    align-items: center;
    color: rgb(14, 193, 47);
    justify-content: center;
  }
  .notification-badge-icon {
    position: absolute;
    top: 2px;
    right: 1px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: red;
  }
  .chat-box {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background-color: rgb(241, 240, 240);
    border: 3px solid #8BC34A;
    border-radius: 10px;
    padding: 15px;
    display: none;
    width: 350px;
    color: #383838;
  }
  .close-chat-box {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    border-radius: 100px;
    border: 3px solid #9a9a9a;
    font-size: 14px;
    padding: 0px 9px;
    background: #363636;
    color: #fff;
  }
  .chat-header, .chat-message {
    display: flex;
    align-items: center;
  }
  .chat-header {
    margin-bottom: 10px;
   
  }
  .chat-header-content {
    margin-left: 10px;
  }
  .avatar-status {
    position: relative;
    display: inline-block;
  }
  .profile-picture {
    border-radius: 50%;
    width: 52px;
    height: 52px;
  }
  .avatar-status::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 15px;
    height: 15px;
    background: #19e23e;
    border-radius: 50%;
    border: 2px solid #fff;
  }
  .profile-picture-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    margin-bottom: 44px;
  }
  .chat-message p {
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
    text-align: left;
    color: #000;
    border: 1px solid #ddd;
  }
  .chat-buttons {
    display: flex;
    justify-content: space-between;
  }
  .chat-button {
    text-decoration: none;
    padding: 3px 20px;
    border-radius: 5px;
    color: #fff;
    text-align: center;
  }
  .whatsapp {
    background-color: #25D366;
  }
  .telegram {
    background-color: #0088cc;
  }

.navbar {
    
    padding-top: .2rem;
    padding-bottom: .2rem;
}

  
/* <!-- ===== NVUN New Footer ===== --> */

  .nv-footer{font-family:Arial,Helvetica,sans-serif}
  .nv-top{background:#2e2e2e; border-top: 5px solid #8BC34A; color:#e0e6ec}
  .nv-top .container{
    margin: 0 auto;
    padding: 10px 15px;
    display: flex
;
    align-items: center;
    justify-content: space-between;
  }

  /* Left links */
  .nv-links a{
    color:#a5a5a5;margin-right:23px;
    text-decoration:none;font-size:15px
  }
  .nv-links a:last-child{margin-right:0}
  .nv-links a:hover{opacity:.85}

  /* Center button */
  .nv-center{flex:1;display:flex;justify-content:center;margin-top: -55px;}
  .nv-chat{
    background: #111; padding: 5px 45px; border-radius: 30px; border: 4px solid #8BC34A;; color: #fff; display: inline-flex ; align-items: center; gap: 8px; text-decoration: none;
  }
  .nv-chat:hover{background:#1a1a1a}

  /* Right pay section */
  .nv-pay{display:flex;align-items:center;gap:10px;font-size:14px}
  .nv-pay span{color:#a5a5a5;margin-right:6px}
  .nv-pay img{height:22px;display:block}

  /* Bottom copyright */
  .nv-bottom{background:#000;color:#a5a5a5;text-align:center;padding:10px;font-size:14px}

  /* Responsive */
  @media(max-width:900px){
    .nv-top .container{flex-direction:column;gap:12px}
    .nv-center{order:-1;margin-bottom:8px}
  }

  /* <!-- ===== /NVUN New Footer ===== --> */

  .pricing{padding:56px 0;background:#f1f1f1; border-bottom: 1px solid #ddd;border-top: 10px solid #0A3161;}
    .price-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
    .plan{padding:20px; box-shadow: 0 6px 16px rgba(15, 23, 42, .06); border-radius: 15px;}
    .price{font-size:22px;font-weight:700;margin:6px 0;border-top: 1px solid #ddd; padding-top: 10px;}
    .plan ul{margin:12px 0 0;padding:0;list-style:none}
    .plan li{display:flex;gap:8px;align-items:flex-start;margin:8px 0;color:#334155}
    .btn.primary{background: #333333; width: 100%; color: #fff; padding: 7px;margin-top: 15px;}
    @media (max-width:960px){.hero .grid{grid-template-columns:1fr}.feature-grid,.price-grid,.reviews .row{grid-template-columns:1fr}}

 