@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");

/*
* ----------------------------------------------------------------------------------------
* 01. Color
* ----------------------------------------------------------------------------------------
*/

:root {
  --font-theme: "Ubuntu", sans-serif;
  --font-theme-two: "Manrope", sans-serif;
  --color-one: #2a862e;
  --color-one-dark: #257629;
  --color-one-rgb: 42, 134, 46;
  --color-two: #ffd900;
  --color-two-dark: #f2ce05;
  --color-two-rgb: 255, 217, 0;
  --color-three: #1372de;
  --color-three-dark: #1168cb;
  --color-three-rgb: 19, 114, 222;
  --color-black: #000000;
  --color-black-rgb: 0, 0, 0;
  --color-white: #ffffff;
  --color-white-rgb: 255, 255, 255;
  --font-bootstrap: bootstrap-icons;
  --font-remixicon: remixicon;
  --transition: all 0.3s;
  --color-four: #f0f7fd;

  /* =============================================== */
  /* PRIMARY COLOR VARIABLES FOR HOSTING PAGES       */
  /* =============================================== */
  /*  --primary-color: #257629; /* Main green color for hosting pages */
  /*--primary-color-light: #2a862e; /* Lighter shade */
  /*--primary-color-dark: #1e5d21; /* Darker shade */
  /*--primary-color-rgb: 37, 118, 41; /* RGB values for transparency */
  /* } */

  /*scrollbar css start*/

  * {
    scrollbar-width: thin;
    scrollbar-color: var(--color-one) transparent;
  }
  *::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }
  *::-webkit-scrollbar-track {
    background: transparent;
  }
  *::-webkit-scrollbar-thumb {
    background-color: var(--color-one);
  }
  ::selection {
    background: var(--color-one);
  }
  ::selection {
    color: var(--color-white);
    text-shadow: none;
  }
  :root {
    scroll-behavior: smooth;
  }
  /*scrollbar css end*/

  /*
* ----------------------------------------------------------------------------------------
* 02. Color Classes
* ----------------------------------------------------------------------------------------
*/

  .color-one {
    color: var(--color-one) !important;
  }

  .color-two {
    color: var(--color-two) !important;
  }

  .color-three {
    color: var(--color-three) !important;
  }

  .color-black {
    color: var(--color-black) !important;
  }

  .color-white {
    color: var(--color-white) !important;
  }

  .bg-one {
    background-color: var(--color-one) !important;
  }

  .bg-two {
    background-color: var(--color-two) !important;
  }

  .bg-three {
    background-color: var(--color-three) !important;
  }

  .bg-black {
    background-color: var(--color-black) !important;
  }

  .bg-white {
    background-color: var(--color-white) !important;
  }

  .bg-four {
    background-color: var(--color-four) !important;
  }

  /*
* ----------------------------------------------------------------------------------------
* 04. Container Width
* ----------------------------------------------------------------------------------------
*/

  @media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
      max-width: 1300px;
    }
  }

  @media (min-width: 1200px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
      max-width: 1170px;
    }
  }

  @media (min-width: 1350px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
      max-width: 1220px;
    }
  }

  /*
* ----------------------------------------------------------------------------------------
* 04. Button Css
* ----------------------------------------------------------------------------------------
*/

  .theme-btn,
  .theme-btn:focus {
    transition: var(--transition);
    border: none;
    box-shadow: none;
    outline: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    width: fit-content;
    display: block;
    padding: 13px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-family: var(--font-theme-two);
  }

  .theme-btn i {
    margin-inline-start: 10px;
  }

  .theme-btn i.start {
    margin-inline-end: 10px;
    margin-inline-start: 0px;
  }

  .theme-btn:hover {
    border: none;
    box-shadow: none;
    outline: none;
    cursor: pointer;
  }

  .theme-btn.btn-small {
    padding: 7px 15px;
    font-size: 14px;
  }

  .theme-btn.width-increase:hover {
    padding: 13px 25px;
  }
  .theme-btn.width-increase.btn-small:hover {
    padding: 7px 19px;
  }

  .theme-btn.one,
  .theme-btn.one:focus {
    background: var(--color-one);
    color: var(--color-white);
  }

  .theme-btn.one:hover {
    background: var(--color-one-dark);
  }

  .theme-btn.two,
  .theme-btn.two:focus {
    background: var(--color-one);
    color: var(--color-white);
  }
  .theme-btn.two:hover {
    background: var(--color-one-dark);
  }

  .theme-btn.three,
  .theme-btn.three:focus {
    background: var(--color-one);
    color: var(--color-white);
  }

  .theme-btn.three:hover {
    background: var(--color-one-dark);
  }

  .plan-two-card.active .theme-btn.two {
    background: var(--color-two);
    color: var(--color-black);
  }

  .plan-two-card.active .theme-btn.two:hover {
    background: var(--color-two-dark);
    color: var(--color-black);
  }

  /*
* ----------------------------------------------------------------------------------------
* 04. Section Gap
* ----------------------------------------------------------------------------------------
*/

  .theme-section-gap {
    padding: 60px 0px;
  }

  .theme-section-heading h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 10px;
  }

  @media (max-width: 550px) {
    .theme-section-heading h2 {
      font-size: 32px;
    }
  }

  .theme-section-heading p {
    font-size: 17px;
    font-family: var(--font-theme-two);
    color: #666866;
    line-height: 2;
  }

  @media (max-width: 550px) {
    .theme-section-heading p {
      font-size: 15px;
    }
  }

  .theme-section-heading .style {
    color: var(--color-white);
    width: fit-content;
    border-radius: 4px;
    background: var(--color-one);
    line-height: 1.5;
    font-weight: 400;
    text-transform: uppercase;
    padding: 5px 10px;
    font-size: 13px;
    margin-bottom: 10px;
    letter-spacing: 0.8px;
    font-family: var(--font-theme-two);
  }
  .theme-section-heading.center,
  .theme-section-heading.center h2,
  .theme-section-heading.center p,
  .theme-section-heading.center .style {
    text-align: center;
  }

  .theme-section-heading.center .style {
    margin: auto;
  }

  .theme-section-gap.bg-img-one {
    background: linear-gradient(
        45deg,
        rgba(61, 96, 63, 0.82) 0%,
        rgba(61, 96, 63, 0.82) 100%
      ),
      url("../images/1.jpg") center center no-repeat;
    background-attachment: scroll, scroll;
    background-size: auto, auto;
    background-size: cover;
  }

  .highlight {
    font-weight: 700;
    overflow: hidden;
    position: relative;
    z-index: 1;
    /* display: inline-block; */
  }

  .highlight:after {
    content: "";
    background: var(--color-two);
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 10%;
    left: 0;
    z-index: -1;
    transition: all 0.2s;
  }

  .highlight.thirty:after {
    height: 30%;
  }

  .highlight:hover:after {
    height: 100%;
  }

  /*
* ----------------------------------------------------------------------------------------
* Top Bar
* ----------------------------------------------------------------------------------------
*/

  .topbar {
    position: absolute;
    width: 100%;
    top: 5px;
  }

  .topbar .top-bar-sale {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font-theme-two);
    color: #585954;
    letter-spacing: 0.3px;
  }

  .top-bar-dropdown button {
    font-size: 15px;
    font-weight: 500;
    font-family: var(--font-theme-two);
    color: #686868;
    letter-spacing: 0.5px;
    background: none;
    outline: none;
    border: none;
  }

  .top-bar-dropdown button:after {
    content: "\EA4E";
    font-family: var(--font-remixicon);
    color: #424242;
    font-size: 16px;
    transition: all 0.3s;
    display: inline-block;
  }

  .top-bar-dropdown button.show:after {
    transform: rotate(-180deg);
    color: var(--color-one);
  }

  .top-bar-dropdown button.show {
    color: var(--color-one);
  }

  .top-bar-dropdowns .top-bar-dropdown + .top-bar-dropdown {
    margin-inline-start: 5px;
  }

  .top-bar-dropdown.language-dropdown-menu .dropdown-menu {
    max-height: 400px;
    overflow: auto;
  }

  .top-bar-dropdown.nofication-dropdown-menu .dropdown-menu {
    min-width: 300px;
  }

  .topbar.white .top-bar-sale {
    color: #fff;
  }

  .topbar.white .top-bar-dropdown button {
    color: #fff;
  }

  .topbar.white .top-bar-dropdown button:after {
    color: #fff;
  }

  .dropdown-menu {
    border: none;
    border-radius: 4px;
    padding: 0px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  }
  .dropdown-menu li + li {
    border-top: 1px solid #cac7c7;
  }

  .dropdown-menu li a {
    display: block;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-theme-two);
    color: #828282;
    transition: all 0.3s;
  }
  .dropdown-menu li a:hover {
    color: var(--color-one);
  }

  /*
* ----------------------------------------------------------------------------------------
* Header Style
* ----------------------------------------------------------------------------------------
*/

  .theme-main-menu {
    position: absolute;
    width: 100%;
    top: 37px;
    z-index: 5;
    transition: height 0.5s ease-in;
  }

  @media (max-width: 1200px) {
    .theme-main-menu > .rounded {
      padding: 10px;
    }
  }
  @media (max-width: 550px) {
    .theme-main-menu {
      top: 35px;
    }
    .theme-main-menu > .rounded {
      border-radius: 0px !important;
      padding: 10px;
    }
  }

  .theme-main-menu.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: unset;
    background-color: var(--color-white);
    animation: headerSticky 0.95s ease forwards;
    box-shadow: var(--bs-box-shadow) !important;
    z-index: 99;
    max-width: 100%;
  }

  @keyframes headerSticky {
    0% {
      transform: translateY(-100%);
    }
    100% {
      transform: translateY(0);
    }
  }

  .theme-main-menu.sticky > .shadow {
    box-shadow: unset !important;
  }

  .navbar-toggler {
    width: 44px;
    height: 38px;
    padding: 0;
    box-shadow: none;
    position: relative;
    z-index: 99;
    border: none;
    background: var(--color-one);
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  .navbar-toggler::before,
  .navbar-toggler::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 9px;
    width: 26px;
    height: 2px;
    pointer-events: none;
    -webkit-transition: -webkit-transform 0.25s;
    transition: transform 0.25s;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    background: #fff;
  }

  .navbar-toggler span {
    position: absolute;
    left: 9px;
    overflow: hidden;
    width: 26px;
    height: 2px;
    margin-top: -1px;
    text-indent: 200%;
    -webkit-transition: opacity 0.25s;
    transition: opacity 0.25s;
    background: #fff;
  }

  .navbar-toggler::before {
    -webkit-transform: translate3d(0, -9px, 0) scale3d(1, 1, 1);
    transform: translate3d(0, -9px, 0) scale3d(1, 1, 1);
  }

  .navbar-toggler::after {
    -webkit-transform: translate3d(0, 8px, 0) scale3d(1, 1, 1);
    transform: translate3d(0, 8px, 0) scale3d(1, 1, 1);
  }

  .navbar-toggler[aria-expanded="true"] span {
    opacity: 0;
  }

  .navbar-toggler[aria-expanded="true"]::before {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
  }

  .navbar-toggler[aria-expanded="true"]::after {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
  }

  .theme-menu .navbar-toggler {
    background: #fff;
  }

  .theme-menu .navbar-toggler::before,
  .theme-menu .navbar-toggler::after,
  .theme-menu .navbar-toggler span {
    background: var(--color-one);
  }

  .navbar .navbar-nav .nav-link {
    font-family: var(--font-theme-two);
    font-size: 15px;
    font-weight: 500;
    line-height: initial;
    color: #000;
    padding: 15px 0;
    margin: 0 26px;
    position: relative;
  }

  .dropdown-icon {
    position: absolute;
    right: 0;
  }

  @media (min-width: 1200px) {
    .navbar .navbar-nav .nav-link:after {
      content: " ";
      position: absolute;
      background: var(--color-one);
      top: 100%;
      margin-top: -7px;
      border-radius: 3px;
      left: 0%;
      width: 100%;
      height: 3px;
      transform: scaleX(0);
      transition: transform 0.2s;
      transform-origin: right center;
      box-sizing: border-box;
      display: block;
    }

    .navbar .navbar-nav .nav-item:hover .nav-link:after,
    .navbar .navbar-nav .nav-item.active .nav-link:hover:after {
      transform: scaleX(1);
      transform-origin: left center;
    }
  }

  .navbar .navbar-nav .nav-item.active .nav-link,
  .navbar .navbar-nav .nav-item:hover .nav-link {
    color: var(--color-one);
  }

  .navbar .dropdown-menu .dropdown-item {
    font-family: var(--font-theme-two);
    font-size: 15px;
    padding: 0 15px;
    border-radius: 5px;
    letter-spacing: 0px;
    text-transform: capitalize;
    line-height: 40px;
    margin-bottom: 5px;
    color: #00284e;
    background: transparent;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease-in-out;
    white-space: inherit;
    font-weight: 500;
  }

  .navbar .dropdown-menu .dropdown-item span {
    font-family: var(--font-theme-two);
  }

  .navbar .dropdown-menu .dropdown-item .tag {
    position: absolute;
    background: var(--red-one);
    line-height: 15px;
    color: #fff;
    font-size: 10px;
    letter-spacing: 1px;
    padding: 0 4px;
    text-transform: uppercase;
    top: 0;
    right: 0;
    font-style: normal;
  }

  .navbar .dropdown-menu .dropdown:hover > .dropdown-item,
  .navbar .dropdown-menu .dropdown-item.active,
  .navbar .dropdown-menu .dropdown-item:hover {
    background: var(--color-one);
    color: #fff;
  }

  .navbar .dropdown-toggle::after {
    content: "\f282";
    font-family: bootstrap-icons;
    border: none !important;
    font-size: 12px;
    font-weight: 700;
    position: absolute;
    width: 30px;
    height: 30px;
    line-height: 30px;
    color: #fff;
    border-radius: 3px;
    background: var(--color-one);
    right: 0;
    top: calc(50% - 15px);
    text-align: center;
    transition: all 0.3s ease;
  }

  .navbar .show.dropdown-toggle::after {
    transform: rotate(180deg);
  }

  .navbar .dropdown-submenu .dropdown-toggle::after {
    content: "\f285";
    font-family: bootstrap-icons !important;
    display: block;
    right: 15px;
    top: 0;
    background: transparent !important;
    color: inherit;
    width: auto;
    height: auto;
    line-height: 40px;
    font-weight: normal;
    font-size: 13px;
    transition: transform 0.3s ease-in-out;
  }

  .navbar .dropdown-submenu:hover > .dropdown-toggle::after {
    transform: rotate(90deg);
  }

  .navbar .dropdown-menu li + li {
    border: unset;
  }

  /*----- For Desktop -------*/
  @media screen and (min-width: 1200px) {
    .navbar .dropdown-toggle::after {
      display: none;
    }

    .navbar .dropdown-menu {
      z-index: 5;
      background-color: #fff;
      border-radius: 10px;
      display: block;
      right: 0;
      left: 0;
      padding: 10px;
      border: none;
      top: 100%;
      visibility: hidden;
      transform: scale(1, 0);
      opacity: 0;
      min-width: 250px;
      box-shadow: 0px 50px 100px rgba(0, 0, 0, 0.12);
      margin: 0;
      transform-origin: 0 0;
      transition: all 0.3s ease-in-out;
    }

    .navbar .dropdown-menu .dropdown-menu {
      left: calc(100% + 10px);
      top: 0;
      right: auto;
      min-width: 240px;
      box-shadow: 0 20px 30px -10px rgb(0, 0, 0, 0.15);
      transform: scale(0, 1);
    }

    .navbar .dropdown:hover > .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: scale(1);
    }
  }

  .dropdown-item i {
    margin-inline-end: 5px;
  }

  .logo img {
    width: 80%;
  }

  /* Header logo sizing */
  header.theme-main-menu .logo img {
    width: auto;
    max-height: 80px;
  }

  @media (min-width: 1200px) {
    header.theme-main-menu .logo img {
      max-height: 92px;
    }
  }

  .footer-logo img {
    width: 260px;
  }

  /*(min-width: 992px)*/

  /*----- For Mobile ----*/
  @media screen and (max-width: 1200px) {
    .navbar {
      padding: 0;
    }

    .navbar-collapse .logo {
      margin-bottom: 0vh;
    }

    .navbar-collapse .logo img {
      max-height: 48px;
      width: auto;
    }

    .navbar-collapse {
      position: fixed;
      top: 0;
      background-color: #ffffff;
      left: 0;
      height: 100vh;
      max-height: 100vh;
      overflow-y: auto;
      clear: both;
      width: 320px;
      max-width: calc(100vw - 60px);
      z-index: 9999;
      transform: translateX(-100%);
      display: block !important;
      padding: 32px 15px 20px;
      transition: all 0.3s ease-in-out;
    }

    .navbar-collapse.show {
      transform: translateX(0);
      box-shadow: 15px 0 25px rgba(35, 35, 35, 0.1);
    }

    .theme-main-menu .navbar .mega-dropdown {
      position: relative;
    }

    .navbar .navbar-nav .nav-link {
      margin: 0;
      padding: 13px 0;
      border-bottom: 1px solid #f3f3f3;
    }

    .navbar .dropdown-menu .dropdown-item {
      padding: 0 10px;
      font-size: 16px;
    }

    .navbar .dropdown-menu {
      border: none;
      border-bottom: 1px solid #f3f3f3;
      padding: 0;
      border-radius: 0;
      margin: 0;
    }

    .navbar .dropdown-submenu .dropdown-menu {
      margin: 0;
      padding: 0 0 0 15px;
    }

    .theme-menu-four .navbar .navbar-nav .nav-link:before {
      display: none;
    }

    /*menu three*/
    .theme-menu .navbar-collapse {
      background: #6b28ff;
    }

    .theme-menu .navbar .dropdown-toggle::after {
      background: #fff;
      color: var(--color-one);
    }

    .theme-menu .navbar .navbar-nav .nav-link,
    .theme-menu .navbar .dropdown-menu {
      border-bottom: 1px solid #9563ff;
    }

    .theme-menu .navbar .dropdown-menu .dropdown-item {
      color: #fff;
    }

    .theme-menu .navbar .dropdown-menu {
      background: transparent;
    }

    .theme-menu .navbar .dropdown-submenu .dropdown-toggle::after {
      color: #fff;
    }

    .theme-menu .navbar .dropdown-menu .dropdown:hover > .dropdown-item,
    .theme-menu .navbar .dropdown-menu .dropdown-item.active,
    .theme-menu .navbar .dropdown-menu .dropdown-item:hover {
      background: #fff;
      color: var(--color-one);
    }

    .theme-menu .navbar .dropdown-submenu:hover > .dropdown-toggle::after {
      color: var(--color-one);
    }
  }

  /*
* ----------------------------------------------------------------------------------------
* 04. Banner Style
* ----------------------------------------------------------------------------------------
*/

  .hero-banner {
    padding: 130px 0px 100px;
    z-index: -1;
  }

  .hero-banner.bg1 {
    background-color: transparent;
    background-image: linear-gradient(80deg, #2a862e5e 0%, #f0e28f75 100%);
  }

  .hero-banner.bg2 {
    background-color: rgba(101, 167, 242, 0.15);
  }

  .hero-banner.bg3 {
    background-image: linear-gradient(to right, #1372de, #30ba42);
    background-attachment: fixed;
    background-repeat: repeat-y;
  }

  .hero-banner.bg4 {
    background: linear-gradient(
      to right,
      rgba(101, 167, 242, 0.15),
      rgba(117, 219, 130, 0.15)
    );
  }

  .hero-banner.bg5 {
    background-color: transparent;
    background-image: linear-gradient(80deg, #d8f1dc 0%, #d9e8da6b 100%);
  }

  .hero-banner.bg6 {
    background-color: rgba(101, 167, 242, 0.15);
  }

  .hero-banner.bg7 {
    background-color: rgba(101, 167, 242, 0.15);
  }

  .hero-banner .inner-content .style {
    color: var(--color-white);
    width: fit-content;
    border-radius: 4px;
    background: var(--color-one);
    line-height: 1.5;
    font-weight: 400;
    text-transform: uppercase;
    padding: 5px 10px;
    font-size: 14px;
    margin-bottom: 10px;
  }

  .hero-banner .inner-content h1 {
    font-size: 50px;
    margin-bottom: 15px;
  }

  @media (max-width: 767px) {
    .hero-banner .inner-content h1 {
      font-size: 35px;
    }
  }

  .hero-banner .inner-content p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.5;
    font-family: var(--font-theme-two);
  }

  .hero-banner .inner-content p.big {
    font-size: 20px;
    font-weight: 600;
    font-family: var(--font-theme);
    margin-bottom: 15px;
  }

  .hero-banner .inner-content .banner-list li {
    padding-inline-start: 19px;
    position: relative;
    font-size: 16px;
    font-family: var(--font-theme-two);
  }

  .hero-banner .inner-content .banner-list li + li {
    margin-top: 5px;
  }

  .hero-banner .inner-content .banner-list li:after {
    content: "\F270";
    font-family: var(--font-bootstrap);
    position: absolute;
    top: 0;
    left: 0;
    color: var(--color-one);
  }

  .herobannerimg-box {
    background-color: var(--color-white);
    border-radius: 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  }

  .hero-banner-bottom-slider {
    background: #fbf4f4;
    padding: 7px;
  }

  .image-slider {
    margin: auto;
    position: relative;
    width: 100%;
    display: grid;
    place-items: center;
    overflow: hidden;
    height: auto;
    min-height: 80px;
  }
  
  /* Ensure slider container is properly set up */
  .hero-banner-bottom-slider .image-slider {
    width: 100%;
    overflow-x: hidden;
  }

  .slider-track {
    display: flex;
    width: calc(250px * 18);
    animation: scroll 30s linear infinite;
    align-items: center;
    will-change: transform;
    transform: translateX(0);
  }
  
  /* Force visible movement */
  .hero-banner-bottom-slider .slider-track {
    animation-name: scroll;
    animation-duration: 15s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-play-state: running;
  }
  
  /* Enhanced smooth movement */
  .image-slider:hover .slider-track {
    animation-play-state: paused;
  }
  
  .image-slider .slider-track {
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: normal;
  }

  .slider-track:hover {
    animation-play-state: paused;
  }
  
  /* Ensure animation starts immediately */
  .image-slider .slider-track {
    animation-delay: 0s;
    animation-fill-mode: both;
  }

  .slides {
    width: 200px;
    display: flex;
    align-items: center;
    padding: 15px;
    perspective: 100px;
  }

  .slides span {
    margin-top: 20px;
    font-family: b Biger Over;
  }

  .slides img {
    width: 60%;
    transition: all 0.8s;
  }

  .slides img:hover {
    transform: translateZ(+20px);
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(calc(-250px * 9));
    }
  }
  
  /* Visible slow animation */
  @keyframes scrollVisible {
    0% {
      transform: translateX(50px);
    }
    
    100% {
      transform: translateX(calc(-250px * 8));
    }
  }
  
  /* Alternative continuous scroll animation */
  @keyframes scrollContinuous {
    0% {
      transform: translateX(-2250px);
    }
    
    100% {
      transform: translateX(100%);
    }
  }

  /*
* ----------------------------------------------------------------------------------------
* 04. Services  Styles
* ----------------------------------------------------------------------------------------
*/
  .style-one-card {
    display: flex;
    padding: 20px;
    border: 2px dashed #c4c4c4;
    background-color: #eff2f7;
    height: 100%;
    transition: all 0.5s;
    position: relative;
    top: 0;
  }

  .style-one-card:hover {
    top: -10px;
    padding: 20px 30px;
    /* box-shadow: 0px 0px 15px rgba(0,0,0,0.07); */
  }

  .style-one-card.one {
    background: #fffccf;
    border: 2px dashed #dbd8ad;
  }

  .style-one-card.two {
    background: #ffedff;
    border: 2px dashed #e6d3e6;
  }

  .style-one-card.three {
    background: #ffe8eb;
    border: 2px dashed #d9c3c6;
  }

  .style-one-card.four {
    background: #e9f6ff;
    border: 2px dashed #d9c3c6;
  }

  .style-one-card.five {
    background: #f2ffe9;
    border: 2px dashed #d4e1ca;
  }

  .style-one-card.six {
    background: rgb(254, 233, 255);
    border: 2px dashed #d9c3d6;
  }

  .style-one-card h3 {
    margin-bottom: 15px;
  }

  .style-one-card h3,
  .style-one-card p {
    color: var(--color-black);
  }

  .style-one-card svg {
    width: 46px;
    height: 46px;
    color: #20262073;
    margin-right: 15px;
  }

  @media (max-width: 480px) {
    .style-one-card {
      display: block;
    }

    .style-one-card svg {
      display: block;
      font-size: 46px;
    }

    .style-one-card h3 {
      display: block;
      margin-top: 20px;
    }
  }

  /*.service-style-two-card{
  background-color: #F6F9FF;
}*/
  .service-style-two-card {
    padding: 20px;
    height: 100%;
    transition: all 0.5s;
    height: 100%;
    border-radius: 10px;
  }

  .service-style-two-card:hover {
    transform: translate(5px, 5px);
  }

  .service-style-two-card .icon {
    width: fit-content;
    padding: 17px;
    background: #fff;
    border-radius: 10px;
    border-radius: 50%;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  }

  .service-style-two-card .icon {
    margin-bottom: 20px;
  }

  .service-style-two-card .card-content h3 {
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 15px;
  }

  .service-style-two-card .icon svg {
    width: 35px;
    height: 35px;
    fill: var(--color-one);
  }

  .service-style-two-card .icon svg path,
  .service-style-two-card svg circle,
  .service-style-two-card svg rect {
    fill: var(--color-one);
  }

  .popular-domains {
    border-radius: 10px;
    padding: 20px;
    border: 2px dashed #becabe;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.12);
    transition: all 0.5s;
    /* height: 100%; */
  }
  .popular-domains:hover {
    border-style: solid;
    border-color: var(--color-one);
  }

  .popular-domains h4 {
    font-size: 45px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0;
    line-height: 1;
    text-transform: capitalize;
    text-overflow: ellipsis;
    overflow: hidden;
    font-family: var(--font-theme-two);
    color: #535252;
    margin-bottom: 10px;
  }

  .popular-domains .content > span {
    color: #4a5568;
    font-family: var(--font-theme-two);
    font-weight: 500;
    font-size: 15px;
  }

  .popular-domains .content h2 {
    font-size: 25px;
    font-family: var(--font-theme-two);
    margin-top: 10px;
  }

  .popular-domains .content h2 sup {
    font-family: var(--font-theme-two);
  }

  .popular-domains .content h2 .highlight {
    font-family: var(--font-theme-two);
  }

  .popular-domains .theme-btn {
    margin: auto;
    margin-top: 20px;
  }

  .comingdomains {
    background-color: transparent;
    background-image: linear-gradient(to right, #1372de, #30ba42) !important;
  }

  .domain-search-box input {
    padding: 10px;
    width: 65%;
    line-height: 25px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-color: var(--color-white);
    border: unset;
  }

  .service-style-three-card {
    border: 0px solid var(--color-black);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.12);
    height: 100%;
    position: relative;
    background: #f6f9ff;
  }

  .service-style-three-card .icon {
    margin-bottom: 20px;
  }

  .service-style-three-card .card-content h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
  }

  .service-style-three-card .icon svg {
    width: 41px;
    height: 41px;
    fill: var(--color-one);
  }

  .service-style-three-card i {
    position: absolute;
    right: 10%;
    font-size: 40px;
    color: var(--color-one);
    opacity: 0.2;
    top: 3%;
  }

  @media (min-width: 992px) {
    .shopping-cart {
      padding: 100px 0px;
    }
  }

  .shopping-cart img {
    width: 70px;
    padding: 10px;
    background: var(--color-white);
    border-radius: 15%;
  }

  .shopping-cart .image1 {
    position: relative;
    top: -41px;
  }

  .shopping-cart .image2 {
    position: relative;
    top: 14px;
    left: 33px;
  }

  .shopping-cart .image3 {
    position: relative;
    top: -28px;
    right: -75px;
  }

  .shopping-cart .image4 {
    position: relative;
    top: 84px;
    left: 0px;
  }

  .shopping-cart .image5 {
    position: relative;
    top: 11px;
    right: -124px;
  }

  @media (max-width: 992px) {
    .shopping-cart .image1,
    .shopping-cart .image2,
    .shopping-cart .image3,
    .shopping-cart .image4,
    .shopping-cart .image5 {
      position: unset;
      top: 0;
      left: 0;
      right: 0;
    }

    .shopping-cart .shopping-cart-heading {
      justify-content: space-between;
      display: flex;
      flex-direction: row;
    }

    .shopping-cart img {
      width: 45px;
      padding: 6px;
      background: var(--color-white);
      border-radius: 50%;
    }

    .shopping-cart {
      padding: 20px;
    }

    .shopping-cart h2 {
      font-size: 20px;
    }
  }

  .privacy-policy-section {
    padding: 120px 0px;
  }

  .privacy-policy-section h1 {
    font-size: 50px;
  }

  .privacy-policy-list {
    display: flex;
    text-align: center;
    margin: auto;
    justify-content: center;
    margin-top: 20px;
  }

  .privacy-policy-list li {
    margin-inline-end: 15px;
  }

  .privacy-policy-list li i {
    color: rgba(255, 255, 255, 0.7) !important;
  }

  .privacy-policy-list li a {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 600;
  }

  @media (max-width: 480px) {
    .privacy-policy-section h1 {
      font-size: 40px;
    }

    .privacy-policy-list {
      display: block;
    }

    .privacy-policy-section {
      padding: 60px 0px;
    }
  }

  .termscondition-section .banner-list li {
    width: 100%;
  }

  .border-style {
    border: 1px solid var(--color-one);
  }

  .customer-support-box {
    padding: 50px;
    border-radius: 10px;
    background-color: #f6f9ff;
  }

  .customer-support-text {
    display: flex;
    padding: 7px;
    align-items: center;
    background: var(--color-white);
    margin-bottom: 20px;
    border-radius: 10px;
    justify-content: space-around;
  }

  .customer-support-text span {
    display: block;
  }

  .customer-support-text .lable {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font-theme-two);
    text-transform: capitalize;
  }

  .cus-email {
    text-align: start;
    margin-inline-start: 13px;
    line-height: 20px;
    width: 66%;
  }

  .customer-support-text a {
    color: var(--color-one);
    font-weight: 500;
    font-family: var(--font-theme-two);
    font-size: 14px;
  }

  .customer-support-text .icon {
    font-size: 30px;
    color: var(--color-one);
  }

  .customer-support-text .icon-2 i {
    margin-inline-start: 13px;
    font-size: 25px;
    color: var(--color-two);
  }

  @media (max-width: 480px) {
    .customer-support-text {
      margin-bottom: 20px;
    }

    .customer-support-box {
      padding: 20px;
      border-radius: 10px;
    }
  }

  .tabs-style-one .tabs {
    display: flex;
    flex-direction: column;
  }

  .tabs-style-one .tabs button {
    width: 100%;
  }

  .tabs-style-one .tabs button {
    background: #383b4b;
    border: 2px solid #383b4b;
    padding: 10px;
    margin-bottom: 20px;
    color: var(--color-white);
    font-weight: 500;
    border-radius: 10px;
  }

  .tabs-style-one .tabs button.active {
    background-color: var(--color-one);
    color: var(--color-white);
    border-color: var(--color-one);
  }

  .tabs-style-one .tabscontents li {
    align-items: start;
    display: flex;
    font-weight: 400;
    font-size: 15px;
    line-height: 35px;
    font-family: var(--font-theme-two);
    color: #7d7d7d;
  }

  .tabs-style-one .tabscontents li:before {
    content: "\F270";
    font-family: bootstrap-icons;
    font-size: 20px;
    margin-inline-end: 10px;
    color: var(--color-two);
  }

  .tabs-style-one .tabs-button {
    display: flex;
    flex-direction: row;
  }

  .tabs-style-one .tabs-button button {
    width: unset;
    margin-inline-end: 30px;
  }

  @media (max-width: 480px) {
    .tabs-style-one .tabs-button {
      display: flex;
      flex-direction: column;
      width: 100%;
    }

    .tabs-style-one .tabs-button button {
      width: 100%;
      margin-inline-end: 0px;
    }
  }

  .domain-search-box {
    justify-content: center;
    display: flex;
  }

  .domain-search-box input {
    padding: 15px;
    width: 65%;
    line-height: 25px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-color: var(--color-white);
    border: unset;
  }

  .domain-search-box input:focus {
    outline: none;
  }

  .domain-search-box button {
    color: var(--color-white);
    font-weight: 500;
    width: 15%;
    padding: 10px;
    border: 0px solid var(--color-one);
    background-color: var(--color-one);
    line-height: 25px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
  }

  .domain-register-box-bottom-img {
    margin-top: 40px;
    justify-content: space-between;
    display: flex;
  }

  @media (max-width: 480px) {
    .domain-search-box {
      display: flex;
      flex-direction: column;
    }

    .domain-search-box input {
      width: 100%;
      border-radius: 5px;
    }

    .domain-search-box button {
      width: 50%;
      border-radius: 5px;
      display: block;
      margin-top: 20px;
    }
  }

  .domain-register-box-bottom-img span {
    font-family: var(--font-theme-two);
  }

  .domain-register-box-bottom-img .domain-name {
    font-size: 25px;
    font-weight: 700;
    font-family: var(--font-theme-two);
  }

  .domain-register-box-bottom-img .price {
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-theme-two);
    color: #757474;
    letter-spacing: 0.5px;
  }

  @media (max-width: 567px) {
    .domain-register-box {
      padding: 120px 0px 40px 0px;
    }

    .domain-register-box .having-domain {
      margin-top: 20px;
    }

    .domain-register-box-bottom-img {
      display: flex;
      flex-wrap: wrap;
      margin-top: 10px;
    }

    .domain-register-box-bottom-img img {
      width: 70px;
      margin-inline-end: 20px;
      margin-top: 20px;
    }
  }

  @media (max-width: 767px) {
    .domain-register-box-bottom-img {
      margin-top: 40px;
      justify-content: center;
      display: flex;
      flex-wrap: wrap;
    }

    .domain-register-box-card {
      width: 25%;
      margin-bottom: 20px;
    }
  }

  @media (max-width: 480px) {
    .domain-register-box-card {
      width: 50%;
      margin-bottom: 20px;
      text-align: center;
    }
  }

  .domain-transfer-box {
    background-image: linear-gradient(to right, #1372de, #30ba42) !important;
    background-attachment: fixed !important;
    background-repeat: repeat-y;
  }

  .domain-transfer-box {
    padding: 120px 0px 60px 0px;
  }

  .domaintrans-form input {
    padding: 12px;
    border-radius: 10px;
    border: unset;
    margin-bottom: 10px;
  }

  .domaintrans-form select {
    padding: 12px;
    border-radius: 10px;
    border: unset;
    margin-bottom: 10px;
  }

  .faq-list-tick li {
    display: flex;
    align-items: start;
    line-height: 30px;
  }

  .faq-list-tick li:before {
    content: "\F133";
    font-family: bootstrap-icons;
    font-size: 20px;
    color: var(--color-one);
    margin-inline-end: 10px;
  }

  .domain-promo-page {
    background: linear-gradient(
      to right,
      rgba(101, 167, 242, 0.15),
      rgba(117, 219, 130, 0.15)
    ) !important;
  }

  .promos-view-banner {
    background: #f3f3f3;
  }

  .domain-promo-page {
    padding: 90px 0px 60px 0px;
  }

  .domain-promo-page h1 {
    font-size: 70px;
  }

  .promos-view-card {
    background-color: #f3f6f9;
    border-radius: 5px;
    box-shadow: 0px 0px 30px 0px rgba(82, 63, 105, 0.05);
    margin-bottom: 30px;
    padding: 20px;
    text-align: center;
    transition: all 0.5s;
  }

  .style-three-list-tick li {
    display: flex;
    align-items: start;
    font-family: var(--font-theme);
    line-height: 37px;
  }

  .style-three-list-tick li:before {
    content: "\F133";
    font-family: bootstrap-icons;
    font-size: 20px;
    color: var(--color-one);
    margin-inline-end: 10px;
  }

  .linux-banner-page {
    padding: 120px 0px 60px 0px;
    background-color: transparent;
    background-image: linear-gradient(80deg, #d8f1dc 0%, #d9e8da6b 100%);
  }

  .note1 {
    padding: 10px;
    background: var(--color-one);
    color: var(--color-white);
    border-radius: 10px;
    display: block;
    width: 50%;
  }

  .linux-banner-page img {
    width: 90%;
    padding: 10px;
    border-radius: 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  }

  .wordpress-page {
    background: linear-gradient(
      to right,
      rgba(101, 167, 242, 0.15),
      rgba(117, 219, 130, 0.15)
    ) !important;
  }

  .WordPress-listing {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
  }

  .WordPress-listing li {
    width: fit-content;
    display: flex;
    align-items: center;
  }

  .WordPress-listing li i {
    font-size: 25px;
    color: #2a862e;
    margin-inline-end: 10px;
  }
  @media (max-width: 567px) {
    .WordPress-listing {
      display: block;
    }

    .WordPress-listing li {
      width: 100%;
      align-items: center;
    }
  }

  @media (max-width: 480px) {
    .note1 {
      width: 100%;
    }

    .linux-banner-page img {
      width: 100%;
    }

    .herobannerimg-box {
      padding: 0px;
    }
  }

  @media (max-width: 992px) {
    .note1 {
      width: 100%;
    }
  }

  .linux-vps-page {
    padding: 120px 0px 60px 0px;
    background-image: linear-gradient(
      to right,
      #1372de78,
      #30ba428c
    ) !important;
    background-attachment: fixed !important;
    background-repeat: repeat-y;
  }

  .linux-vps-page img {
    width: 90%;
    background: var(--color-white);
    padding: 20px;
    border-radius: 20px;
  }

  @media (max-width: 480px) {
    .linux-vps-page img {
      width: 100%;
    }
  }

  .plan-banner {
    background-color: var(--color-white);
    border-radius: 15px;
    padding: 0px 0px 8px 0px;
  }

  .plan-banner .highlighteed {
    background: var(--color-one-dark);
    width: 100%;
    padding: 20px;
    color: var(--color-white);
    display: block;
    border-radius: 10px 10px 0px 0px;
    font-weight: 500;
    font-size: 20px;
  }
  .plan-banner ul {
    padding: 0px 35px 0px 35px;
    margin-top: 10px;
  }

  .plan-banner li {
    display: flex;
    align-items: center;
    justify-content: start;
    border-bottom: 1px solid #dcdfde;
    text-align: start;
    line-height: 47px;
  }

  .plan-banner li i {
    font-size: 25px;
    color: var(--color-one);
    margin-inline-end: 10px;
  }

  .plan-banner .offer-price {
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 20px;
    display: block;
    font-size: 30px;
  }

  .banner-style-two {
    padding: 0;
    background-image: url("../images/bannerimg2.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    background-attachment: fixed;
    position: relative;
  }

  .dedicated-plan-head {
    background-color: var(--color-one-dark);
    display: flex;
    padding: 8px;
    border-radius: 25px;
    color: var(--color-white);
    font-weight: 500;
  }

  .dedicated-plan-block {
    border: 2px dotted var(--color-one);
    padding: 20px;
    border-radius: 10px;
    transition: all 0.5s;
  }

  .dedicated-plan-block:hover {
    border: 2px solid var(--color-one);
  }

  .dedicated-plan-text .price-title {
    font-size: 25px;
    font-weight: 500;
  }

  .dedicated-plan-text .theme-btn {
    width: fit-content;
    text-align: center;
  }

  .dedicated-plan-text .heading-title::before {
    content: attr(data-list);
    position: relative;
    display: block;
    border-bottom: 1px solid #f8f8f8;
    font-size: 17px;
    line-height: 2;
    text-align: center;
    color: #515555;
  }

  @media (min-width: 993px) {
    .dedicated-plan-text .heading-title::before {
      display: none;
    }
  }

  @media (max-width: 992px) {
    .dedicated-plan-block {
      padding: 20px;
    }

    .dedicated-plan-text .heading-title::before {
      display: block;
    }

    .dedicated-plan-block .heading-title {
      font-size: 20px;
      margin: auto;
      display: block;
      text-align: center;
      line-height: 1.5;
    }

    .dedicated-plan-block .heading-title::before {
      content: attr(data-list);
      position: relative;
      display: block;
      border-bottom: 1px solid #f8f8f8;
      font-size: 17px;
      line-height: 2;
      text-align: center;
      color: #515555;
    }

    .dedicated-plan-block .heading-title {
      font-size: 16px;
      line-height: 3;
      text-align: center;
      display: block;
      border-bottom: 1px solid #f8f8f8;
    }

    .dedicated-plan-block .theme-btn {
      margin: auto !important;
      margin-top: 20px !important;
      display: block !important;
      width: 90%;
    }
  }

  .reseller-card-style li {
    display: flex;
    align-items: start;
  }

  .reseller-card-style li:before {
    content: "\F133";
    font-family: bootstrap-icons;
    font-size: 20px;
    color: var(--color-one);
    margin-inline-end: 10px;
  }

  .bussiness-page {
    padding: 120px 0px 60px 0px;
  }

  .bussiness-page img {
    border-radius: 20px;
    transition: all 0.5s;
  }

  .bussiness-page img:hover {
    transform: scale(1.1);
  }

  .enterprises-page {
    padding: 120px 0px 60px 0px;
    background: linear-gradient(
      to right,
      rgba(101, 167, 242, 0.15),
      rgba(117, 219, 130, 0.15)
    ) !important;
  }

  .google-workspace-card {
    display: flex;
    padding: 20px;
    border: 2px dashed #fff;
    height: 100%;
    transition: all 0.5s;
    border-radius: 10px;
  }

  .google-workspace-card h3 {
    margin-bottom: 15px;
    color: var(--color-black);
  }

  .google-workspace-card h3,
  .google-workspace-card p {
    color: var(--color-black);
  }

  .google-workspace-card svg {
    width: 46px;
    height: 46px;
    color: var(--color-one);
    margin-right: 15px;
  }

  @media (max-width: 480px) {
    .google-workspace-card {
      display: block;
    }

    .google-workspace-card svg {
      display: block;
      font-size: 46px;
    }

    .google-workspace-card h3 {
      display: block;
      margin-top: 20px;
    }
  }

  .list-tick li {
    display: block;
    padding-inline-start: 20px;
    line-height: 1.5;
    position: relative;
    color: #575957;
    font-family: var(--font-theme-two);
    font-weight: 500;
  }

  .list-tick li::before {
    content: "\F270";
    font-size: 16px;
    font-family: var(--font-bootstrap);
    position: absolute;
    top: 0;
    left: 0px;
    color: var(--color-one);
    font-weight: 500;
  }

  .list-tick li + li {
    margin-top: 10px;
  }

  .sitelock-card-style {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    height: 100%;
  }

  .sitelock-card-style .icon {
    width: fit-content;
    padding: 20px;
    background: aliceblue;
    border-radius: 50%;
    margin-bottom: 20px;
  }

  .sitelock-card-style .icon svg {
    fill: var(--color-one);
    width: 31px;
    height: 31px;
  }

  .sitelock-card-style .icon2 i {
    font-size: 30px;
  }

  @media (max-width: 480px) {
    .sitelock-card-style {
      padding: 10px 20px 10px 20px;
      text-align: center;
    }

    .sitelock-card-style .icon {
      width: fit-content;
      margin: 20px auto;
    }
  }

  .sitelock-card-style h3 {
    font-size: 25px;
  }

  .plan-one-card .select select {
    width: 100%;
    padding: 10px;
    border: unset;
    background: var(--color-one);
    border-radius: 4px;
    color: aliceblue;
  }
  .positiion-relative {
    position: relative;
  }

  .combo-offer-block {
    padding: 20px;
    background: #ffebe5;
    border-radius: 10px;
  }

  /* --------------------------------------------------------------------------

                              swiper slider

---------------------------------------------------------------------------*/

  .swiper-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  [dir="rtl"] .swiper .swiper-wrapper {
    direction: ltr;
  }

  .swiper .swiper-pagination {
    margin-top: 20px;
    position: relative;
  }

  .swiper .swiper-pagination .swiper-pagination-bullet {
    width: 13px;
    height: 13px;
    background-color: var(--color-white);
    opacity: 1;
    border: 1px solid var(--color-one);
  }

  .swiper .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--color-one);
  }

  /*================================plan-one===================== */

  .plan-one-card {
    border: 2px dotted var(--color-one);
    transition: var(--transition);
    border-radius: 10px;
    background: #f8fcff;
    padding: 20px;
    /* height: 100%; */
    position: relative;
  }

  .plan-top-head {
    width: 100%;
    border-radius: 10px;
    text-align: center;
    background: var(--color-one);
    padding: 7px;
    position: absolute;
    left: 0;
    top: -45px;
    color: var(--color-white);
  }

  .plan-one-card.active .theme-btn.two {
    background-color: var(--color-one);
    color: var(--color-white);
  }

  .plan-one-card .saving {
    background-color: var(--color-one-rgb);
  }

  .plan-one-card .saving h4 {
    padding: 5px;
    background-color: var(--color-one);
    color: var(--color-white);
    border-radius: 5px;
    font-size: 15px;
    background: linear-gradient(95.45deg, #a0c6a2 0.64%, #117116 98.23%);
  }

  .plan-one-card:hover {
    border: 2px solid var(--color-one);
  }

  .plan-one-card h3 {
    font-size: 23px;
    font-weight: 600;
    font-family: var(--font-theme-two);
    color: #515050;
  }

  .plan-one-card .price {
    font-size: 35px;
    font-weight: 600;
    margin-top: 15px;
    display: block;
  }

  .plan-listing ul {
    margin: 0px 0px 0px 0px;
  }

  .plan-listing ul li {
    line-height: 2;
    display: block;
    font-size: 16px;
    text-align: start;
    position: relative;
    padding-inline-start: 25px;
    font-family: var(--font-theme-two);
    color: #737373;
  }

  .plan-listing ul li::before {
    content: "\F26A";
    color: var(--color-one);
    font-family: bootstrap-icons;
    font-size: 14px;
    position: absolute;
    top: 3px;
    left: 5px;
  }
  .plan-listing ul li span {
    color: var(--color-one);
    font-weight: 500;
  }

  .plan-one-card .theme-btn {
    width: 100%;
    border-radius: 5px;
  }

  .plan-one-card .theme-btn {
    padding: 10px 20px;
    font-size: 15px;
    transition: var(--transition);
  }

  .plan-one-card .theme-btn:hover {
    padding: 10px 20px;
  }

  .plan-button {
    margin-top: 20px;
  }

  /*===============plan-two==============*/

  .plan-two-card {
    padding: 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 10px;
    background: #fff;
  }

  .plan-two-card.active {
    background: var(--color-one);
    color: var(--color-white);
  }

  .plan-two-card.active li {
    color: var(--color-white) !important;
  }

  .plan-two-card.active li span {
    color: var(--color-black) !important;
  }

  .plan-two-card.active li:before {
    color: var(--color-white) !important;
  }

  .plan-two-card h3 {
    font-size: 30px;
    font-weight: 600;
  }

  .plan-two-card .price {
    font-size: 35px;
    font-weight: 600;
    margin-top: 15px;
    display: block;
  }

  .plan-two-card .plan-listing ul {
    margin: 0px 0px 0px 0px;
  }

  .plan-two-card .plan-listing ul li span {
    color: var(--color-one);
    font-weight: 500;
  }

  .plan-two-card .theme-btn {
    width: 100%;
    border-radius: 5px;
  }

  .plan-two-card .theme-btn {
    padding: 10px 20px;
    font-size: 18px;
    transition: var(--transition);
  }

  .plan-two-card .theme-btn:hover {
    padding: 10px 20px;
  }

  .select select {
    width: 100%;
    padding: 10px;
    border: unset;
    background: var(--color-one);
    border-radius: 4px;
    color: aliceblue;
  }

  .select.white-bg select {
    width: 100%;
    padding: 10px;
    border: unset;
    background: var(--color-white);
    border-radius: 4px;
    color: #000;
  }

  /*================================bussiness-plan===================== */

  .bussiness-plan label {
    font-weight: var(--font-theme);
    font-weight: 500;
  }

  .bussiness-plan img {
    width: 80%;
  }

  .bussiness-plan .noaccounts input {
    background-color: var(--color-one);
    color: var(--color-white);
  }

  .bussiness-plan .duration select {
    background-color: var(--color-one);
    color: var(--color-white);
  }

  .bussiness-plan .noaccounts .form-control,
  .bussiness-plan .duration .form-control:focus {
    outline: none;
    box-shadow: none;
    border: none;
  }

  /*=====================Login & Register==========================*/
  .login-page {
    padding: 120px 0px 60px 0px;
  }

  .loginimg {
    width: 50%;
    background: #bbe1bd;
  }

  .loginimg:after {
    content: "/";
    position: relative;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(95.45deg, #a0c6a2 0.64%, #ffd34d 98.23%);
  }

  .login-text {
    width: 50%;
    padding: 50px;
  }

  .login-page .login-links a {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    margin-inline-end: 50px;
  }

  .login-page .login-links a {
    position: relative;
    margin-bottom: 10px;
  }

  .login-page .login-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 70px;
    height: 3px;
    background: linear-gradient(95.45deg, #a0c6a2 0.64%, #ffd34d 98.23%);
  }

  .login-page form input {
    width: 60%;
    padding: 12px;
    border-radius: 8px;
    background-color: #fff;
    color: var(--color-white);
    margin-bottom: 20px;
    border: unset;
  }

  .login-page form input::placeholder {
    color: var(--color-two);
    opacity: 1;
  }

  .login-page .form-button {
    display: flex;
  }

  .login-page .form-button button {
    margin-inline-end: 50px;
  }

  .login-page .form-button .theme-btn i {
    margin-inline-end: 7px;
    margin-inline-start: 0px;
    font-weight: 500;
  }

  @media (max-width: 992px) {
    .loginimg {
      width: 100%;
    }

    .login-text {
      width: 100%;
    }

    .login-page form input {
      width: 80%;
    }
  }

  @media (max-width: 480px) {
    .login-page form input {
      width: 100%;
    }

    .login-text {
      padding: 25px;
    }

    .login-page .form-button {
      display: block;
    }

    .login-page .form-button .theme-btn {
      width: 100%;
      margin-bottom: 20px;
    }
  }

  /*=========== Register============*/

  .register-login .register-text {
    width: 40%;
  }

  .register-text {
    justify-content: center;
    display: flex;
    align-items: center;
  }

  .register-form {
    width: 60%;
    padding: 50px;
  }

  .register-form input {
    margin-bottom: 20px;
    padding: 12px;
  }

  .register-form .acception input {
    margin-inline-end: 10px;
  }

  input[type="checkbox"] {
    accent-color: var(--color-one) !important;
    height: 16px;
    width: 16px;
  }

  @media (max-width: 784px) {
    .register-login .register-text {
      width: 100%;
    }

    .register-form {
      width: 100%;
    }
  }

  @media (max-width: 480px) {
    .register-form {
      padding: 25px;
    }

    .register-form .form-button {
      margin-top: 20px;
    }
  }

  .comboofferimg-box {
    border-radius: 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  }

  /*=====================Login page==========================*/

  .login-page {
    padding: 120px 0px 60px 0px;
  }

  .forget-pass-page {
    padding: 120px 0px 60px 0px;
    background: #bbe1bd;
  }

  .forget-pass-page input {
    padding: 15px;
  }

  .forget-pass-page form .theme-btn {
    width: 100%;
  }

  .forget-pass-page span {
    font-size: 25px;
  }

  /*=====================Register page==========================*/
  .register-login {
    padding: 120px 0px 60px 0px;
  }

  /*=====================faq==========================*/

  .faq-qa {
    padding: 50px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 24px;
  }

  .accordion-item:not(:first-of-type) {
    border-top: 2px;
  }

  .accordion-item {
    color: var(--bs-accordion-color);
    background-color: var(--bs-accordion-bg);
    border: none;
  }

  .accordion-item {
    border-bottom: 1px solid #e1e1e1 !important;
  }

  .accordion-button {
    background-color: var(--color-white);
  }

  .accordion-button:not(.collapsed) {
    color: var(--color-black);
    background-color: var(--color-white);
    box-shadow: unset;
  }

  .accordion-button:focus {
    z-index: 3;
    border-color: var(--color-one);
    outline: 0;
    box-shadow: var(--color-one);
  }

  .accordion-header .accordion-button {
    color: #403f3f;
    font-weight: 500;
    line-height: 30px;
    font-size: 18px;
    font-family: var(--font-theme-two);
  }

  @media (max-width: 767px) {
    .accordion-header .accordion-button {
      color: #403f3f;
      font-weight: 500;
      line-height: 25px;
      font-size: 16px;
      font-family: var(--font-theme-two);
    }
  }

  .accordion-header .accordion-button:after {
    color: var(--color-white);
  }

  .faq .accordion-body a {
    color: var(--color-one);
    font-weight: 600;
  }

  .accordion-body {
    /* padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x); */
    padding: 0px 0px 20px 20px;
    font-family: var(--font-theme-two);
    font-size: 15px;
    letter-spacing: 0.5px;
    color: #7d7a7a;
  }

  @media (max-width: 480px) {
    .faq-qa {
      padding: 10px;
      border-radius: 10px;
    }

    .plan-top-head-card {
      margin-top: 30px;
    }
  }

  .featues-four {
    position: relative;
    z-index: 10;
    background: rgb(42, 134, 46);
    background-image: none;
    border-radius: 10px;
    backdrop-filter: blur(15px);
    background-image: linear-gradient(218.15deg, #b966e763 0%, #2f57ef4a 100%);
  }

  .featues-four .cards {
    padding: 40px 30px;
    z-index: 2;
    text-align: left;
    padding: 50px 50px;
    position: relative;
    border-inline-end: 1px solid #ffffff1a;
    height: 100%;
    transition: 0.3s;
  }

  .featues-four .featues-four-items .col-12:last-child .cards {
    border-inline-end: 0px;
  }

  @media (max-width: 992px) {
    .featues-four .featues-four-items .col-12:nth-child(2) .cards {
      border-inline-end: 0px;
    }
  }

  @media (max-width: 767px) {
    .featues-four .featues-four-items .col-12 .cards {
      border-inline-end: 0px;
    }
  }

  .featues-four .cards:hover {
    transform: translateY(-20px) scale(1.03);
    border-color: transparent;
  }

  .featues-four .cards::before {
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--color-one);
    z-index: -1;
    position: absolute;
    border-radius: 10px;
    opacity: 0;
    transition: 0.3s;
  }

  .featues-four .cards:hover::before {
    opacity: 1;
    transform: scale(1);
  }

  .featues-four .cards .icon {
    margin-bottom: 20px;
  }

  .featues-four .cards .icon img {
    max-height: 60px;
  }

  .featues-four .cards .heading {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    font-family: var(--font-theme-two);
    margin-bottom: 20px;
  }

  .featues-four .cards .content {
    color: #ffffffb3;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    font-family: var(--font-theme-two);
  }

  footer {
    background: #fff;
    position: relative;
    z-index: 0;
    padding: 60px 0 40px 0;
    color: white;
  }

  footer::before {
    display: none;
  }

  @keyframes gradientShift {
    0%,
    100% {
      background: linear-gradient(90deg, #2a862e, #34a853, #2a862e);
    }
    50% {
      background: linear-gradient(90deg, #34a853, #2a862e, #34a853);
    }
  }

  footer::after {
    content: "";
    position: absolute;
    width: 30%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(../images/footershape.png);
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0.1;
  }

  @media (max-width: 1199px) {
    footer::after {
      content: none;
    }
  }

  @media (max-width: 1199px) {
    footer:before {
      content: none;
    }
  }

  footer .footer-services .service-contain {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: calc(30px + (50 - 30) * ((100vw - 320px) / (1920 - 320)));
  }

  footer .footer-services .service-contain .service-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
  }

  @media (max-width: 1200px) {
    footer .footer-services .service-contain .service-box {
      width: 50%;
    }
  }

  @media (max-width: 1200px) {
    footer .footer-services .service-contain .service-box:nth-child(-n + 2) {
      margin-bottom: 15px;
    }
  }

  @media (max-width: 1200px) {
    footer .footer-services .service-contain .service-box:nth-child(3)::before {
      display: none;
    }
  }

  @media (max-width: 767px) {
    footer .footer-services .service-contain .service-box::before {
      display: none;
    }
  }

  footer .footer-services .service-contain .service-box + .service-box::before {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 1px;
    height: 50%;
    left: -104px;
    border: 1px dashed #c1c1c1;
  }
  @media (max-width: 1660px) {
    footer
      .footer-services
      .service-contain
      .service-box
      + .service-box::before {
      left: -70px;
    }
  }
  @media (max-width: 1460px) {
    footer
      .footer-services
      .service-contain
      .service-box
      + .service-box::before {
      left: -36px;
    }
  }

  @media (max-width: 1366px) {
    footer
      .footer-services
      .service-contain
      .service-box
      + .service-box::before {
      left: -31px;
    }

    [dir="rtl"]
      footer
      .footer-services
      .service-contain
      .service-box
      + .service-box::before {
      left: unset;
      right: -31px;
    }
  }

  footer .footer-services .service-contain .service-box .content {
    margin-inline-start: 15px;
  }

  footer .footer-services .service-contain .service-box .content h5 {
    font-weight: 500;
    color: #4a5568;
    font-size: 17px;
    font-family: var(--font-theme-two);
  }

  @media (max-width: 767px) {
    footer .footer-services {
      display: none;
    }
  }

  @media (min-width: 767px) {
    footer .main-footer {
      border-top: 1px dashed #c1c1c1;
      padding-top: calc(30px + (50 - 30) * ((100vw - 320px) / (1920 - 320)));
      padding-bottom: calc(30px + (50 - 30) * ((100vw - 320px) / (1920 - 320)));
    }
  }

  footer .footer-logo a {
    display: block;
  }

  footer .footer-logo img {
    width: calc(150px + (160 - 120) * ((100vw - 320px) / (1920 - 320)));
  }

  footer .footer-logo p {
    margin: 10px 0;
    font-size: 15px;
    color: #e2e8f0;
    line-height: 1.5;
    font-weight: 450;
    font-family: var(--font-theme-two);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }

  footer .footer-logo .address {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: calc(8px + (15 - 8) * ((100vw - 320px) / (1920 - 320)));
    margin-top: calc(7px + (30 - 7) * ((100vw - 320px) / (1920 - 320)));
  }

  footer .footer-logo .address li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%;
    font-size: 14px;
    color: #cbd5e0;
    font-family: var(--font-theme-two);
  }

  footer .footer-logo .address li svg {
    width: 18px;
    height: 18px;
    stroke: #2a862e;
  }

  footer .footer-logo .address li a {
    margin-inline-start: 10px;
    color: #cbd5e0;
    font-family: var(--font-theme-two);
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
  }

  footer .footer-logo .address li a:hover {
    color: #2a862e;
    text-shadow: 0 0 8px rgba(42, 134, 46, 0.3);
  }

  footer .footer-list h5 {
    font-size: calc(17px + (20 - 17) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 600;
    font-family: var(--font-theme-two);
    color: #ffffff;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    position: relative;
  }

  footer .footer-list h5::before {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #2a862e, #34a853);
    border-radius: 1px;
  }

  footer .footer-list ul.links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 10px;
  }

  footer .footer-list ul.links li {
    display: block;
    width: 100%;
  }

  footer .footer-list ul.links li + li {
    margin-top: calc(4px + (15 - 4) * ((100vw - 320px) / (1920 - 320)));
  }

  footer .footer-list ul.links li a {
    display: inline-block;
    font-size: 15px;
    color: #cbd5e0;
    font-family: var(--font-theme-two);
    font-weight: 500;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
  }

  footer .footer-list ul.links li a:before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: 0;
    background-color: var(--color-one);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }

  footer .footer-list ul.links li a::after {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    left: -13px;
    background-color: var(--color-one);
    border-radius: 100%;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }

  footer .footer-list ul.links li a:hover {
    color: #2a862e;
    margin-left: 13px;
    text-shadow: 0 0 8px rgba(42, 134, 46, 0.4);
    transform: translateX(5px);
  }

  footer .footer-list ul.links li a:hover:before {
    width: 100%;
    background: linear-gradient(90deg, #2a862e, #34a853);
  }

  footer .footer-list ul.links li a:hover:after {
    opacity: 1;
    background: linear-gradient(45deg, #2a862e, #34a853);
    box-shadow: 0 0 10px rgba(42, 134, 46, 0.5);
  }

  footer .footer-list ul.footer-contact {
    margin-top: calc(13px + (20 - 13) * ((100vw - 320px) / (1920 - 320)));
  }

  footer .footer-list ul.footer-contact li {
    display: block;
    margin-bottom: calc(30px + (50 - 30) * ((100vw - 320px) / (1920 - 320)));
    position: relative;
    font-size: 14px;
    color: #4a5568;
  }

  footer .footer-list ul.footer-contact li:before {
    content: "";
    position: absolute;
    bottom: -24px;
    right: 0;
    width: calc(100% - 33px);
    border-bottom: 1px dashed #c1c1c1;
  }

  footer .footer-list ul.footer-contact li .footer-number {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 12px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  footer .footer-list ul.footer-contact li .footer-number svg {
    width: 18px;
    height: 18px;
    stroke: #4a5568;
  }

  footer .footer-list ul.footer-contact li .footer-number .text-content {
    font-size: 15px;
    line-height: 1;
    margin: 0;
    font-weight: 500;
    display: block;
    font-family: var(--font-theme-two);
    color: #4a5568;
    margin-bottom: 8px;
  }

  footer .footer-list ul.footer-contact li .footer-number .detail {
    display: block;
    margin-top: 6px;
    font-weight: 600;
    color: #222;
    font-family: var(--font-theme-two);
    font-size: 17px;
  }

  footer .footer-list ul.footer-contact li.social-app h5 {
    font-size: 15px;
    line-height: 1;
    margin: 0;
    font-weight: 500;
    display: block;
    font-family: var(--font-theme-two);
    color: #4a5568;
    margin-bottom: 8px;
  }
  footer .footer-list ul.footer-contact li.social-app::before {
    content: unset;
  }

  footer .footer-list ul.footer-contact li.social-app ul li::before {
    content: unset;
  }
  footer .footer-list ul.footer-contact li.social-app ul li + li {
    margin-top: 10px;
  }

  footer .footer-list ul.footer-contact li.social-app img {
    max-height: 40px;
  }

  footer .sub-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-top: 1px solid rgba(42, 134, 46, 0.3);
    padding: 30px 0;
    background: rgba(0, 0, 0, 0.2);
    margin-top: 40px;
    position: relative;
  }

  footer .sub-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #2a862e, transparent);
  }

  footer .sub-footer .sub-footer-content {
    font-size: 15px;
    line-height: 1;
    margin: 0;
    font-weight: 500;
    font-family: var(--font-theme-two);
    color: #e2e8f0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }

  footer .sub-footer .social-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  @media (max-width: 991px) {
    footer .sub-footer {
      display: block;
      text-align: center;
    }
  }

  @media (max-width: 767px) {
    footer .sub-footer {
      margin-top: 20px;
    }
  }

  footer .sub-footer .social-link h6 {
    margin-inline-end: 10px;
  }

  footer .sub-footer .social-link ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  footer .sub-footer ul li {
    display: block;
  }

  footer .sub-footer .social-link ul li + li {
    margin-inline-start: 8px;
  }

  footer .sub-footer .social-link ul li a {
    display: block;
  }

  footer .sub-footer .social-link ul li a i {
    color: #4a5568;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
    display: block;
  }

  footer .sub-footer .social-link ul li a:hover i {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }

  footer .sub-footer .social-link ul li a:hover i {
    color: var(--color-one);
  }

  @media (max-width: 991px) {
    footer .sub-footer .payment {
      margin: 8px 0;
    }
    footer .sub-footer .social-link {
      justify-content: center;
    }
  }

  /*--------------------------------------------------------------
  New Organized Footer Styling
  --------------------------------------------------------------*/
  .footer-logo-text {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 1px;
  }

  .footer-description {
    color: #cbd5e0;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
  }

  .footer-contact-info {
    margin-bottom: 25px;
  }

  .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #cbd5e0;
    font-size: 14px;
  }

  .contact-item i {
    margin-right: 10px;
    font-size: 16px;
    color: #2a862e;
    width: 20px;
  }

  .social-icons {
    display: flex;
    gap: 10px;
  }

  .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #2a862e;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
  }

  .social-icon:hover {
    background: #257629;
    transform: translateY(-2px);
    color: white;
  }

  .footer-title {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: none;
    letter-spacing: normal;
  }

  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-links li {
    margin-bottom: 8px;
  }

  .footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
  }

  .footer-links a:hover {
    color: white;
  }

  .free-badge {
    background: #2a862e;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
    font-weight: 600;
  }

  .payment-section {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .payment-label {
    color: white;
    font-size: 14px;
    font-weight: 500;
  }

  .payment-icon.paypal {
    background: #0070ba;
    color: white;
    border-color: #0070ba;
  }

  .payment-more {
    color: #cbd5e0;
    font-size: 12px;
    margin-left: 5px;
  }

  .copyright-section {
    text-align: right;
  }

  .copyright-section p {
    color: #9ca3af;
    font-size: 14px;
    margin: 0;
  }

  /*--------------------------------------------------------------
  Mobile collapsible footer
  --------------------------------------------------------------*/
  @media (max-width: 767px) {
    footer .footer-list {
      border-top: 1px solid #eee;
      padding: 12px 0;
    }

    footer .footer-list h5 {
      position: relative;
      cursor: pointer;
      padding-right: 24px;
    }

    footer .footer-list h5::after {
      content: "+";
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      font-weight: 700;
      color: #4a5568;
    }

    footer .footer-list.open h5::after {
      content: "−";
    }

    /* Collapsible content container: animated height */
    footer .footer-list ul.links,
    footer .footer-list ul.footer-contact {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      margin-top: 0;
    }

    /* When open, JS will set exact max-height; keep margin */
    footer .footer-list.open ul.links,
    footer .footer-list.open ul.footer-contact {
      margin-top: 10px;
    }
  }

  /*--------------------------------------------------------------
Back to top button
--------------------------------------------------------------*/
  .back-to-top {
    position: fixed;
    visibility: visible;
    opacity: 0;
    right: 15px;
    bottom: 100%;
    z-index: 996;
    background: var(--color-one);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: 1s ease;
  }

  [dir="rtl"] .back-to-top {
    right: auto;
    left: 15px;
  }

  .back-to-top i {
    font-size: 21px;
    color: #fff;
    line-height: 0;
  }

  .back-to-top:hover {
    background: var(--color-one);
    color: #fff;
  }

  .back-to-top.active {
    transition: 1s ease;
    right: 15px;
    bottom: 15px;
    opacity: 1;
  }

  [dir="rtl"] .back-to-top.active {
    right: auto;
    left: 15px;
  }

  /* Hide legacy topbar globally */
  .topbar {
    display: none !important;
  }

  .all_loges {
    position: relative;
  }

  .all_loges .circle_logo {
    height: 80px;
    width: 80px;
    background: #fff;
    box-shadow: 0 16.83486px 15.71254px 0 rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .all_loges .circle_logo svg {
    display: inline-block;
    vertical-align: middle;
  }

  .all_loges .circle_logo.digital_ocean {
    background: #0080ff;
  }

  .all_loges .circle_logo:hover svg path {
    fill: #fff;
  }

  .all_loges .laravel_logo:hover {
    background-color: #ff2d20;
  }

  .all_loges .php_logo:hover {
    background-color: #5d5bc1;
  }

  .all_loges .magento_logo:hover {
    background-color: #f26322;
  }

  .all_loges .wordpress_logo:hover {
    background-color: #464342;
  }

  .all_loges .woo_logo:hover {
    background-color: #7f54b3;
  }

  .all_loges .drupal_logo {
    top: 64px;
    left: 430px;
    animation: unset;
  }

  .all_loges .drupal_logo:hover {
    background-color: #009cde;
  }

  .all_loges .aws_logo:hover {
    background-color: #f90;
  }

  .all_loges .google_cloud:hover {
    background-color: #4285f4;
  }

  .all_loges .circle_logo.digital_ocean:hover {
    background: #fff;
  }

  .all_loges .digital_ocean:hover svg path {
    fill: #0080ff;
  }

  .all_loges .digital_ocean svg path {
    fill: #fff;
    transition: all 0.3s ease;
  }

  @media (min-width: 1200px) {
    .all_loges .circle_illustration {
      width: 100%;
    }
    .all_loges .laravel_logo,
    .all_loges .php_logo,
    .magento_logo,
    .all_loges .wordpress_logo,
    .all_loges .woo_logo,
    .all_loges .drupal_logo,
    .all_loges .aws_logo,
    .all_loges .digital_ocean,
    .all_loges .google_cloud {
      position: absolute;
    }

    .all_loges .laravel_logo {
      top: 187px;
      left: -26px;
      animation: floating_animation 6s ease-out infinite;
    }

    .all_loges .php_logo {
      top: 75px;
      left: 48px;
    }

    .all_loges .magento_logo {
      top: -2px;
      left: 162px;
    }
    .all_loges .wordpress_logo {
      top: -2px;
      left: 316px;
      animation: floating_animation 6s ease-out infinite;
    }

    .all_loges .woo_logo {
      top: 186px;
      left: 504px;
      animation: floating_animation 6s ease-out infinite;
    }

    .all_loges .circle_illustration_two {
      position: absolute;
      left: 78px;
      top: 150px;
    }

    .all_loges .aws_logo {
      top: 200px;
      left: 385px;
    }

    .all_loges .google_cloud {
      top: 200px;
      left: 94px;
    }

    .all_loges .circle_logo.digital_ocean {
      height: 110px;
      width: 110px;
      padding: 18px 22px;
      transition: all 0.3s ease;
    }
    .all_loges .digital_ocean {
      top: 102px;
      left: 224px;
    }
  }

  @media (max-width: 1200px) {
    .all_loges > svg {
      display: none;
    }
    .all_loges {
      position: relative;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
    }

    .all_loges .circle_logo {
      margin: 10px;
      padding: 15px;
    }
  }

  @media (max-width: 550px) {
    .all_loges .circle_logo {
      height: 50px;
      width: 50px;
      padding: 0;
    }
    .all_loges .circle_logo svg {
      width: 30px;
    }
  }

  .testimonials .testimonial-item {
    box-sizing: content-box;
    padding: 30px;
    margin: 30px 15px 0px 15px;
    min-height: 200px;
    /* box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08); */
    position: relative;
    background: #f4e5e5;
    border-radius: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 10px;
    border: 6px solid #f4e5e5;
    float: left;
    margin: 0 10px 0 0;
  }
  .testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 8px 0 5px 0;
    color: #111;
    font-family: var(--font-theme-two);
  }

  .testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #999;
    margin: 0;
    font-family: var(--font-theme-two);
  }

  .testimonials .testimonial-item .quote-icon-left,
  .testimonials .testimonial-item .quote-icon-right {
    color: #fceaea;
    font-size: 26px;
  }

  .testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
    color: var(--color-one);
    line-height: 20px;
  }
  .testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    color: var(--color-one);
    line-height: 20px;
  }

  .testimonials .testimonial-item p {
    font-style: italic;
    margin: 15px auto 15px auto;
    font-family: var(--font-theme-two);
    font-size: 16px;
    color: #6d7371;
  }

  /*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
  .contact .info {
    border-top: 3px solid var(--color-one);
    border-bottom: 3px solid var(--color-one);
    padding: 30px;
    background: #fff;
    width: 100%;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
  }

  .contact .info i {
    font-size: 20px;
    color: var(--color-one);
    float: left;
    width: 44px;
    height: 44px;
    background: #e7f5fb;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
  }

  .contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--color-one-dark);
  }

  .contact .info p {
    padding: 0 0 10px 60px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #7d7d7d;
  }

  .contact .info .email p {
    padding-top: 5px;
  }

  .contact .info .social-links {
    padding-left: 60px;
  }

  .contact .info .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #333;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
    margin-right: 10px;
  }

  .contact .info .social-links a:hover {
    background: var(--color-one);
    color: #fff;
  }

  .contact .info .email:hover i,
  .contact .info .address:hover i,
  .contact .info .phone:hover i {
    background: var(--color-one);
    color: #fff;
  }

  .contact .php-email-form {
    width: 100%;
    border-top: 3px solid var(--color-one);
    border-bottom: 3px solid var(--color-one);
    padding: 30px;
    background: #fff;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
  }

  .contact .php-email-form .form-group {
    padding-bottom: 8px;
  }

  .contact .php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
  }

  .contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
  }

  .contact .php-email-form .error-message br + br {
    margin-top: 25px;
  }

  .contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
  }

  .contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
  }

  .contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    animation: animate-loading 1s linear infinite;
  }

  .contact .php-email-form .form-group {
    margin-bottom: 20px;
  }

  .contact .php-email-form label {
    padding-bottom: 8px;
  }

  .contact .php-email-form input,
  .contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border-radius: 4px;
  }

  .contact .php-email-form input:focus,
  .contact .php-email-form textarea:focus {
    border-color: var(--color-one);
  }

  .contact .php-email-form input {
    height: 44px;
  }

  .contact .php-email-form textarea {
    padding: 10px 12px;
  }

  .contact .php-email-form button[type="submit"] {
    background: var(--color-one);
    border: 0;
    padding: 12px 34px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
  }

  .contact .php-email-form button[type="submit"]:hover {
    background: var(--color-one-dark);
  }

  /* ========================================================

  Login , Register page , Forgot Password Page

======================================================== */

  .form-account-page {
    min-height: 100vh;
    background: #fbecd8;
    display: flex;
    justify-content: center;
    padding: 30px 0;
  }

  .form-account-page > .container {
    display: flex;
    align-items: center;
  }
  .form-account-page > .container > .row {
    width: 100%;
    margin: 0;
  }
  .form-account-page .inner-form {
    border: 2px dashed;
    border-color: var(--color-one);
    padding: 20px;
    border-radius: 5px;
    background: var(--color-white);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
  }

  .form-account-page .inner-form .logo {
    display: flex;
    margin-bottom: 15px;
    width: 100%;
    justify-content: center;
  }

  .form-account-page .inner-form .logo img {
    max-height: 65px;
    width: 100%;
    max-width: min-content;
  }

  .form-account-page .inner-form h4 {
    font-family: var(--font-theme-two);
    font-size: 18px;
    display: block;
    text-align: center;
    color: #7d7d7d;
    margin-bottom: 20px;
  }

  .form-account-page .inner-form .label {
    font-family: var(--font-theme-two);
    font-size: 14px;
    display: block;
    text-align: start;
    color: #7d7d7d;
    margin-bottom: 10px;
  }

  .form-account-page .inner-form .input {
    font-family: var(--font-theme-two);
    font-size: 14px;
    display: block;
    text-align: start;
    color: #7d7d7d;
    height: 44px;
    padding: 10px 15px;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: 4px;
    width: 100%;
    margin-bottom: 10px;
    background: #fff;
  }

  .form-account-page .inner-form .input:focus {
    border-color: var(--color-one);
  }

  .form-account-page .inner-form .next-link {
    font-family: var(--font-theme-two);
    font-size: 16px;
    display: block;
    text-align: center;
    color: #7d7d7d;
    margin-top: 20px;
  }

  .form-account-page .inner-form .next-link a {
    color: var(--color-one);
    font-family: var(--font-theme-two);
  }

  .form-account-page .inner-form .another-link {
    font-family: var(--font-theme-two);
    font-size: 16px;
    display: block;
    color: var(--color-one);
  }

  /* HOME PAGE ADDITTIONAL ANIMATION */
  /* Styling for the heading above the logo slider */
  .trusted-by-heading {
    color: #555;
    font-weight: 500;
    font-size: 1.1rem;
  }

  /* Optional: Add a subtle grayscale filter to the logos that turns to color on hover */
  .image-slider img {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
  }

  .image-slider img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
  }

  /* Custom CSS for NameCheap Section (WordPress Hosting, The Smart W) */
  /* Styling for Feature Icons in the "Smart Way" Section */
  .style-one-card-icon {
    font-size: 2rem; /* 32px */
    color: var(--primary-color); /* Uses the main theme color */
  }

  /* Styling for the large stat numbers */
  /* Styling for Feature Icons */
  .style-one-card-icon {
    font-size: 2.5rem; /* 40px */
    color: var(--primary-color); /* Uses the main theme color */
    min-width: 40px; /* Ensures icons align nicely */
  }

  /* Styling for the large stat numbers */
  .stat-number {
    font-size: 3.5rem; /* 56px */
    font-weight: 700;
    line-height: 1;
  }

  /* Class to create the highlight underline effect */
  /* ================================================= */
  /* HIGHLIGHTER FOR LARGE STATS (LIKE 50K, 3x etc.)  */
  /* ================================================= */
  .stat-highlight {
    position: relative;
    display: inline-block;
    padding: 8px 12px;
    color: #1a202c;
    z-index: 1;
    transition: color 0.3s ease-in-out;
    overflow: hidden;
    border-radius: 5px;
  }

  .stat-highlight::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #257629;
    z-index: -1;
    transition: height 0.3s ease-in-out;
  }

  .stat-highlight::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 5px;
    background-color: #257629;
    border-radius: 3px;
    z-index: -2;
  }

  .stat-highlight:hover::before {
    height: 100%;
  }

  .stat-highlight:hover {
    color: #ffffff;
  }

  /* ====================================================== */
  /* NEW HIGHLIGHTER FOR INLINE TEXT (FIXED ALIGNMENT)  */
  /* ====================================================== */
  .text-highlight {
    position: relative;
    display: inline-block;
    padding: 2px 5px;
    color: #1a202c;
    z-index: 1;
    transition: color 0.3s ease-in-out;
    overflow: hidden;
    border-radius: 4px;
    vertical-align: text-bottom; /* ADD THIS LINE TO FIX ALIGNMENT */
  }

  /* The rest of the CSS for this class remains the same */
  .text-highlight::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #257629; /* Green background on hover */
    z-index: -1;
    transition: height 0.3s ease-in-out;
  }

  .text-highlight::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 3px;
    background-color: #257629; /* Green underline */
    border-radius: 3px;
    z-index: -2;
  }

  .text-highlight:hover::before {
    height: 100%;
  }

  .text-highlight:hover {
    color: #ffffff; /* White text on hover */
  }

  /* STYLING FOR HOSTINGER WEBSITE SECTION 1  */
  /* Styling for the All-Inclusive Feature Cards */
  .feature-card {
    background-color: #f8f9fa; /* A very light grey background */
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    border: 1px solid #dee2e6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
  }

  .feature-card-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: rgba(
      137,
      190,
      63,
      0.1
    ); /* Light green bg, matching your theme */
    color: #257629; /* The main green color for the icon */
    border-radius: 10px;
    font-size: 2rem; /* 32px */
    margin-bottom: 20px;
  }
  /* =============================================== */
  /* HOSTING PLAN CARDS & PRICING SWITCHER STYLES   */
  /* =============================================== */

  /* --- Styling for the Price Switcher (Monthly/Yearly buttons) --- */
  .pricing-switcher.btn-group .btn {
    padding: 10px 20px;
    font-weight: 600;
    background-color: #fff;
    color: #555;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
  }

  .pricing-switcher.btn-group .btn:hover {
    background-color: #f8f9fa;
  }

  .pricing-switcher.btn-group .btn.active {
    background-color: var(--primary-color);
    color: #257629; /* Corrected for best readability */
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(137, 190, 63, 0.4);
  }

  /* --- Styling for the Detailed Hosting Plan Cards --- */
  .product-plan-card {
    background-color: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease,
      border-color 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
  }

  .product-plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  }

  .product-plan-card.popular {
    border-color: var(--primary-color);
  }

  /* .best-value-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-color);
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
} */

  .product-plan-card h3 {
    font-weight: 700;
  }

  .product-plan-card .price-area {
    margin: 1rem 0;
  }

  .product-plan-card .price-label {
    font-size: 0.9rem;
    color: #6c757d;
  }

  .product-plan-card .price-figure {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    color: #1a202c;
  }

  .product-plan-card .price-term {
    color: #6c757d;
  }

  .plan-features-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
    flex-grow: 1; /* This pushes the button to the bottom */
  }

  .plan-features-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
  }

  .plan-features-list i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.2rem;
  }

  .hosting-type-card {
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .hosting-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  }

  .best-value-badge {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #257629;
    color: #fff;
    padding: 5px 20px 5px 15px;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 10px 0 20px 0;
  }

  .hosting-type-card .card-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
  }

  .hosting-type-card h3 {
    font-weight: 700;
  }

  .hosting-type-card .price-area {
    margin: 1.5rem 0;
  }

  .hosting-type-card .price-label {
    display: block;
    font-size: 0.9rem;
    color: #6c757d;
  }

  .hosting-type-card .price-figure {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    color: #1a202c;
  }

  .hosting-type-card .price-term {
    color: #6c757d;
  }
  /* CSS END FOR NEW HOSTING PLAN SECTION  */

  /* WEB HOSTING PAGE CSS  */
  /* Styling for the "Most Popular" badge on pricing plans */
  .plan-one-card.popular {
    position: relative;
    border: 2px solid var(--primary-color); /* Highlight color border */
    transform: scale(1.05); /* Makes the card slightly larger */
    z-index: 2;
  }

  .popular-badge {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color); /* Highlight color */
    color: #257629;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(137, 190, 63, 0.4);
  }

  /* Ensure the popular card looks good on hover */
  .plan-one-card.popular:hover {
    transform: scale(1.08); /* Slightly more zoom on hover */
  }

  /* ADDITIONAL CSS FOR CPANEL FOR STYLING OF WEB HOSTING PAGE  */
  /* Styling for the cPanel Image Wrapper */
  .cpanel-image-wrapper {
    border: 1px solid #dee2e6; /* Light border */
    border-radius: 12px; /* Rounded corners */
    padding: 10px; /* Inner spacing */
    background-color: #ffffff; /* White background */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* Soft shadow */
  }

  /* CLOUD HOSTING PAGE ADDITIONAL SECTION 1 CSS */
  /* Styling for the Comparison Table Section */
  .comparison-table .comparison-header {
    border-bottom: 2px solid #dee2e6;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .comparison-table .comparison-row {
    padding: 20px 10px;
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.2s ease;
  }

  .comparison-table .comparison-row:hover {
    background-color: #f8f9fa;
  }

  .comparison-table .comparison-row:last-child {
    border-bottom: none;
  }

  .comparison-table h5 {
    font-weight: 600;
    color: #343a40;
  }

  .comparison-table p {
    margin-bottom: 0;
    display: flex;
    align-items: center;
  }

  .comparison-table p i {
    font-size: 1.2rem;
    margin-right: 8px;
  }

  /* Responsive adjustments for mobile */
  @media (max-width: 767px) {
    .comparison-table .comparison-row {
      text-align: center;
    }
    .comparison-table .comparison-row > div {
      padding: 10px 0;
    }
    .comparison-table .comparison-row > div:nth-child(2) {
      background-color: rgba(
        137,
        190,
        63,
        0.05
      ); /* Light green bg for Cloud column on mobile */
      border-radius: 8px;
    }
    .comparison-table p {
      justify-content: center;
    }
  }

  /* CLOUD HOSTING PAGE ADDITIONAL SECTION 2 CSS */
  /* Styling for the 3-Step Guide Section */

  .step-card {
    background-color: #f8f9fa; /* Light grey background */
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid #dee2e6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
  }

  .step-card-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: #257629;
    border-radius: 50%;
    font-size: 2rem; /* 32px */
    margin-bottom: 20px;
  }

  .step-card::after {
    content: "";
    position: absolute;
    top: -20px;
    right: 10px;
    font-size: 6rem; /* 96px */
    font-weight: 800;
    color: rgba(0, 0, 0, 0.05);
    z-index: 0;
  }

  .row > .col-lg-4:nth-child(1) .step-card::after {
    content: "01";
  }
  .row > .col-lg-4:nth-child(2) .step-card::after {
    content: "02";
  }
  .row > .col-lg-4:nth-child(3) .step-card::after {
    content: "03";
  }
  /* DOMAIN PRICING SECTION CSS */
  /* Domain Pricing Table Styles */
  .domain-pricing-table .pricing-table-header {
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
    margin-bottom: 1rem;
  }

  .domain-pricing-table .pricing-table-header h5 {
    color: #343a40;
    font-weight: 600;
  }

  .domain-pricing-table .pricing-table-row {
    padding: 1.25rem 0.5rem;
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.2s ease;
  }

  .domain-pricing-table .pricing-table-row:hover {
    background-color: #f8f9fa;
  }

  .domain-pricing-table .tld-name {
    font-weight: 700;
    color: #1a202c;
    font-size: 1.5rem;
  }

  .domain-pricing-table .sale-badge {
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    background-color: #dc3545; /* Red for sale */
    padding: 2px 8px;
    border-radius: 4px;
    vertical-align: middle;
    margin-left: 8px;
  }

  .domain-pricing-table .price-label {
    display: none;
    font-weight: 600;
    color: #6c757d;
    margin-right: 5px;
  }

  /* Responsive styles for mobile */
  @media (max-width: 767px) {
    .domain-pricing-table .price-label {
      display: inline-block; /* Show labels on mobile */
    }
    .domain-pricing-table .pricing-table-row > div {
      margin-bottom: 10px;
    }
  }
  /* =================================== */
  /* Modern Contact Page Hero Styling    */
  /* =================================== */

  .contact-hero {
    padding: 80px 0; /* Adds more vertical space for a premium feel */
    display: flex;
    align-items: center;
    min-height: 40vh; /* Ensures the banner has a good height */
  }

  .contact-hero h1 {
    font-size: 3.5rem; /* Larger, more impactful heading */
    font-weight: 700;
    margin-bottom: 1rem;
  }

  .contact-hero .lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
  }

  /* Modern Breadcrumb Styling */
  .breadcrumb-nav {
    margin-top: 1.5rem;
  }

  .breadcrumb {
    background-color: transparent;
    padding: 0;
    margin: 0;
    font-size: 1rem;
  }

  .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .breadcrumb-item a:hover {
    color: #ffffff;
  }

  .breadcrumb-item.active {
    color: #ffffff;
    font-weight: 500;
  }

  .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
    content: ">"; /* Cleaner separator */
    padding: 0 0.8rem;
  }
}
/* =================================== */
/* Modern Call-to-Action (CTA) Styling */
/* =================================== */

.cta-content {
  background-color: #f8f9fa; /* Or use bgtwo color if defined elsewhere */
  padding: 40px 30px;
  border-radius: 12px;
  border: 1px solid #dee2e6;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.cta-content h2 {
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-content .lead {
  color: #555;
}

.cta-buttons a {
  margin: 5px; /* Helps with button wrapping on small screens */
}

/* Responsive font size for the heading on mobile */
@media (max-width: 767px) {
  .cta-content h2 {
    font-size: 1.8rem;
  }
}
/* =================================== */
/* Modern Feature Card Styling          */
/* =================================== */

.feature-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  height: 100%;
  border: 1px solid #dee2e6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.feature-card .feature-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 70px; /* Increased size */
  height: 70px; /* Increased size */
  background-color: rgba(
    137,
    190,
    63,
    0.1
  ); /* Light green bg from your theme */
  color: var(--primary-color); /* Main green color for the icon */
  border-radius: 50%; /* Makes the icon background a circle */
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.feature-card .feature-icon i {
  font-size: 2.5rem; /* 40px - Makes the icon itself larger */
}

.feature-card h4 {
  font-weight: 700;
  margin-bottom: 10px;
}

/* Adds a nice hover effect to the icon */
.feature-card:hover .feature-icon {
  background-color: var(--primary-color);
  color: #2a862e;
  transform: scale(1.1) rotate(10deg);
}

/* =================================== */
/* Performance Benchmark Section Styling */
/* =================================== */
.performance-chart {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #dee2e6;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.chart-metric {
  margin-bottom: 2rem;
}
.chart-metric:last-child {
  margin-bottom: 0;
}

.chart-metric h4 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.chart-bar-wrapper {
  background-color: #e9ecef;
  border-radius: 5px;
  margin-bottom: 10px;
  overflow: hidden;
}

.chart-bar {
  height: 30px;
  border-radius: 5px;
  white-space: nowrap;
  transition: width 1.5s cubic-bezier(0.25, 1, 0.5, 1);
  width: 0; /* Initial state */
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 1rem;
}

.bar-label {
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  opacity: 0; /* Hidden initially */
  transition: opacity 0.5s ease 0.5s;
}

.aos-animate .bar-label {
  opacity: 1; /* Fade in when AOS animates */
}

.hostalig-bar {
  background-color: var(--primary-color); /* Theme primary */
}

.standard-bar {
  background-color: #6c757d;
}

.legend-box {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background-color: var(--primary-color);
}
.legend-standard {
  background-color: #6c757d;
}

/* =================================== */
/* Animated Terminal Section Styling VPS Hosting page   */
/* =================================== */

.terminal-window {
  background-color: #1a202c; /* Dark background */
  border-radius: 12px;
  border: 1px solid #4a5568;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

.terminal-header {
  background-color: #2d3748;
  padding: 10px 15px;
  border-bottom: 1px solid #4a5568;
  border-radius: 10px 10px 0 0;
  display: flex;
  align-items: center;
}

.terminal-buttons {
  display: flex;
}

.terminal-dot {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 8px;
}

.terminal-title {
  color: #a0aec0;
  font-family: monospace;
  font-size: 0.9rem;
  margin: 0 auto; /* Center the title */
}

.terminal-body {
  padding: 20px;
  font-family: "Fira Code", "Courier New", Courier, monospace;
  color: #e2e8f0;
  min-height: 250px;
}

.terminal-prompt {
  margin: 0;
  word-break: break-all; /* Prevents long commands from overflowing */
}

/* This creates the blinking cursor effect for Typed.js */
.typed-cursor {
  color: #68d391; /* A bright green cursor */
  font-weight: bold;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* =================================== */
/* Interactive 3D Server Section  DEDICATED SERVER PAGE     */
/* =================================== */
/* Interactive 3D Server Essentials */
.bg-secondary-dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 20%,
      rgba(137, 190, 63, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(137, 190, 63, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

#server-canvas-container {
  width: 100%;
  height: 500px;
  border-radius: 20px;
  cursor: grab;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(137, 190, 63, 0.1) 100%
  );
  border: 2px solid rgba(137, 190, 63, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
#server-canvas-container:hover {
  border-color: rgba(137, 190, 63, 0.4);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(137, 190, 63, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}
#server-canvas-container:active {
  cursor: grabbing;
}
#server-canvas {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 18px;
}
.component-card {
  display: flex;
  align-items: flex-start;
  padding: 24px;
  border-radius: 16px;
  margin-bottom: 1.2rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.component-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(137, 190, 63, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}
.component-card:hover {
  background: linear-gradient(
    135deg,
    rgba(137, 190, 63, 0.12) 0%,
    rgba(255, 255, 255, 0.08) 100%
  );
  transform: translateX(12px) scale(1.02);
  border-color: rgba(137, 190, 63, 0.4);
  box-shadow: 0 8px 32px rgba(137, 190, 63, 0.2),
    0 0 20px rgba(137, 190, 63, 0.1);
}
.component-card:hover::before {
  left: 100%;
}
.component-card.active {
  background: linear-gradient(
    135deg,
    rgba(137, 190, 63, 0.2) 0%,
    rgba(255, 255, 255, 0.1) 100%
  );
  border-color: var(--primary-color);
  box-shadow: 0 12px 40px rgba(137, 190, 63, 0.3),
    0 0 30px rgba(137, 190, 63, 0.2);
}
.component-icon {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-right: 1.8rem;
  margin-top: 5px;
  transition: all 0.3s ease;
  text-shadow: 0 0 10px rgba(137, 190, 63, 0.3);
}
.component-card:hover .component-icon {
  transform: scale(1.1) rotate(5deg);
  text-shadow: 0 0 20px rgba(137, 190, 63, 0.6);
}
.component-card h4 {
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.component-card p {
  transition: color 0.3s ease;
  line-height: 1.5;
}
.component-card:hover p {
  color: rgba(20, 13, 13, 0.9) !important;
}
.loading-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border: 3px solid rgba(137, 190, 63, 0.3);
  border-top: 3px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.loading-ring.show {
  opacity: 1;
}
@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@media (max-width: 991px) {
  #server-canvas-container {
    height: 400px;
    margin-bottom: 2rem;
  }
  .component-card:hover {
    transform: translateY(-5px) scale(1.02);
  }
}
@media (max-width: 576px) {
  #server-canvas-container {
    height: 350px;
  }
  .component-card {
    padding: 20px;
  }
}

/* =================================== */
/* Creative Benefit Card Styling       */
/* =================================== */

.benefit-card {
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  border: 1px solid transparent;
  border-left: 5px solid var(--primary-color); /* Green accent border */
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  font-size: 2rem; /* 32px */
  color: var(--primary-color);
  margin-right: 20px;
}

.benefit-content h4 {
  font-weight: 600;
  margin-bottom: 5px;
}

/* Interactive Ecosystem Diagram */
.ecosystem-diagram {
  position: relative;
  text-align: center;
}
.ecosystem-diagram .node {
  background-color: #fff;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 15px 25px;
  display: inline-block;
  margin: 10px 0;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.ecosystem-diagram .node:hover,
.ecosystem-diagram .node.active {
  transform: scale(1.05);
  border-color: #e9ecef;
  box-shadow: 0 10px 30px rgba(137, 190, 63, 0.2);
}
.ecosystem-diagram .your-brand {
  background-color: #257629;
  color: #fff;
  border-color: #257629;
}
.ecosystem-diagram .connector-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.ecosystem-diagram .line {
  stroke: #dee2e6;
  stroke-width: 2;
  stroke-dasharray: 5;
  fill: none;
}
#ecosystem-tooltip {
  position: absolute;
  bottom: 105%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #1a202c;
  color: #fff;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 0.9rem;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.node:hover + #ecosystem-tooltip {
  opacity: 1;
}

/* Profitability Calculator VIP RESELLER PAGE */
.profit-calculator {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}
.profit-calculator .calc-row {
  margin-bottom: 1.5rem;
}
.profit-calculator .form-label {
  font-weight: 600;
}
.profit-calculator .calc-value {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.2rem;
}
.profit-calculator .calc-result {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #dee2e6;
  text-align: center;
}
.profit-calculator .calc-result h3 {
  font-size: 2.5rem;
  color: var(--primary-color);
  font-weight: 700;
}
/* Styling for the new Uptime link in the main header */
.header-uptime-link {
  color: #555; /* Dark text color to match other links */
  text-decoration: none;
  font-weight: 600;
  padding: 8px 15px;
  border: 2px solid transparent;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}
.header-uptime-link i {
  margin-right: 5px;
  color: var(--primary-color); /* Green icon */
}
.header-uptime-link:hover {
  color: var(--primary-color);
  background-color: rgba(
    137,
    190,
    63,
    0.1
  ); /* Light green background on hover */
}

/* Container for Login/Register buttons */
.header-buttons .theme-btn {
  white-space: nowrap; /* Prevents buttons from wrapping */
}

/* Footer Container */
.custom-footer {
  background-color: #f7f7ff;
  padding: 48px 24px;
  font-size: 14px;
}

/* Wrapper for centering and max-width */
.footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Main grid for logo and links sections */
.footer-grid-main {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 48px;
}

/* Left side: Logo, social, legal */
.footer-logo-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icons a {
  color: #555;
  transition: color 0.2s;
}

/* ✨ MODIFIED: Hover color changed to green */
.social-icons a:hover {
  color: #28a745;
}

.social-icons svg {
  width: 24px;
  height: 24px;
}

.footer-logo svg {
  width: 147px;
  height: 30px;
  fill: #1d1e20;
}

.legal-links a {
  display: inline-block;
  margin-right: 16px;
  color: #555;
  text-decoration: none;
  font-size: 13px;
}

/* ✨ MODIFIED: Hover color changed to green */
.legal-links a:hover {
  color: #28a745;
}

.payment-methods {
  display: flex;
  align-items: center;
  gap: 8px;
}

.payment-methods img {
  height: 24px;
}

.payment-methods .more-btn {
  color: #555;
  font-size: 13px;
  text-decoration: none;
}

/* Right side: Link sections */
.footer-sections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px;
}

.footer-section .title {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 16px;
  display: block;
  color: #1d1e20;
  position: relative;
}

.footer-section .links-container a {
  display: block;
  text-decoration: none;
  color: #555;
  margin-bottom: 12px;
  transition: color 0.2s;
}

/* ✨ MODIFIED: Hover color changed to green */
.footer-section a:hover {
  color: #28a745;
}

/* Copyright section */
.footer-copyright {
  border-top: 1px solid #e0e0e0;
  padding-top: 24px;
  margin-top: 48px;
  font-size: 13px;
  color: #777;
}

.footer-copyright p {
  margin: 0 0 8px 0;
}

/* Responsive adjustments for Mobile */
@media (max-width: 768px) {
  .footer-grid-main {
    grid-template-columns: 1fr; /* Stack columns */
    gap: 32px;
  }

  .footer-sections-grid {
    grid-template-columns: 1fr; /* Single column for link sections */
  }

  .footer-section {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 16px;
  }

  .footer-section:last-child {
    border-bottom: none;
  }

  .footer-section .title {
    cursor: pointer;
    margin-bottom: 16px;
  }

  .footer-section .title::after {
    content: "+";
    font-size: 24px;
    font-weight: 300;
    position: absolute;
    right: 5px;
    top: -5px;
    color: #888;
    transition: transform 0.35s ease-in-out;
  }

  .footer-section.active .title::after {
    transform: rotate(45deg);
  }

  .footer-section .links-container {
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    transition: max-height 0.35s ease-in-out, padding-top 0.35s ease-in-out;
  }

  .footer-section.active .links-container {
    max-height: 500px;
    padding-top: 16px;
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  left: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 1000;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  color: #FFF;
  transform: scale(1.1);
  text-decoration: none;
}

.whatsapp-float i {
  margin: 0;
  line-height: 1;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    left: 20px;
    font-size: 25px;
  }
}
