@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
:root {
  --primary-light-bg: #f4f4f4;
  --secondary-light-bg: #F0D9C3;
  --primary-bg: #000000;
  --secondary-bg: #29862d;
  --secondary-bg-dark: #16bb58;
  --primary-dark-bg: #e20e1d;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden
}
.container, .container-lg, .container-md, .container-sm, .container-xl {
  max-width: 1170px;
}
ul {
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}
a {
  list-style: none;
  text-decoration: none;
}
img {
  /*  width: 100%;*/
}
/* ============   Top Bar css start==========*/
.topbar {
  background: var(--primary-light-bg);
}
.top-bar-support {
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-bar-support a {
  color: #000000;
  font-size: 14px;
  font-weight: 500;
}
.top-bar {
  display: flex;
  justify-content: end;
}
.top-bar-dropdown {
  position: relative;
}
.dropdown-btn {
  background-color: unset;
  border: unset;
  padding: 6px 15px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  color: #000000;
}
.dropdown-btn i {
  margin-left: 5px;
  font-size: 12px;
}
.dropdown-menus {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  border: 0px solid #ccc;
  border-radius: 5px;
  width: 200px;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
  padding: 10px;
  z-index: 9999;
}
.top-bar-dropdown.account .dropdown-menus {
  width: 200px;
}
.top-bar-dropdown .dropdown-menus.open {
  display: block;
}
.dropdown-menus li {
  padding: 8px 15px;
  cursor: pointer;
}
.topbar .dropdown-menus li a {
  font-size: 15px;
  color: #000;
}
.topbar .dropdown-menus li:hover {
  background-color: #f1f1f1;
  border-radius: 5px;
}
@media (max-width: 767px) {
  .top-bar-dropdown .dropdown-btn {
    display: inline-block;
    width: 120px;
    text-align: left;
  }
  .top-bar-dropdown.open .dropdown-menus {
    display: block;
  }
}
/* ============   Top Bar css end==========*/
.header {
  position: absolute;
  top: 40px;
  width: 100%;
  z-index: 999;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 12px;
  box-shadow: 0px 0px 12px #eee;
}
.navbar .logo {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
}
.navbar .logo img {
    width: 150px;
}
@media(min-width:1200px) {
  .navbar ul {
    display: flex;
    list-style: none;
  }
  .navbar ul li {
    position: relative;
    margin: 0 10px;
  }
  .navbar ul li a {
    color: #000000;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    transition: background 0.3s;
  }
  .navbar ul li > a i {
    font-size: 8px;
  }
  .navbar ul > li.dropdown > .dropdown_menu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	background-color: #fff;
	display: none;
	min-width: 220px;
	border-radius: 5px;
	z-index: 1;
	border: 1px solid #fff;
	padding: 10px;
	transition: all .4s;
	box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
}
  .navbar ul > li.dropdown:hover > .dropdown_menu {
    display: block;
  }
  .navbar ul li.dropdown .dropdown_menu > li {
    position: relative;
    line-height: 15px;
    /* margin-left: 20px; */
    margin: 0;
  }
  .navbar ul li.dropdown .dropdown_menu a {
    padding: 10px;
    color: #000;
    white-space: nowrap;
    transition: all .4s;
    font-size: 15px;
  }
  .navbar ul li.dropdown .dropdown_menu li.dropdown > a::before {
    content: "\F285";
    font-family: bootstrap-icons;
    font-size: 10px;
    margin-inline-end: 5px;
    font-weight: bold;
  }
  .navbar ul li.dropdown .dropdown_menu a:hover {
    color: var(--secondary-bg);
  }
  .navbar ul li.dropdown .dropdown_menu li.dropdown .dropdown_menu {
    display: none;
    border: 0px solid #8a8a8a;
    position: absolute;
    left: 100%;
    transform: translateX(0%);
    top: 6px;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
  }
  .navbar ul li.dropdown .dropdown_menu li.dropdown:hover .dropdown_menu {
    display: block;
  }
  .navbar .right-icons {
    display: flex;
    align-items: center;
  }
  .navbar .right-icons a {
    color: #fff;
    margin-left: 15px;
    font-size: 20px;
    text-decoration: none;
  }
  .navbar .right_nav_btn a {
    background: var(--secondary-bg);
    border-radius: 5px;
    color: #FFFFFF;
    font-weight: 500;
    transition: all .4s;
  }
  .right_nav_btn a:hover {
    background: var(--secondary-bg-dark);
  }
  .checkout_btn a {
    padding: 8px 15px !important;
    background: var(--primary-light-bg);
    border-radius: 100%;
    line-height: 30px;
  }
  .checkout_btn a i {
    font-size: 18px !important;
    color: #000;
  }
  .nav-toggle {
    display: none;
  }
}
@media (max-width: 1199px) {
  .nav-toggle {
    display: block;
    width: fit-content;
    border: 0;
    outline: unset;
    box-shadow: unset;
    color: #000000;
    font-size: 25px;
    cursor: pointer;
    background: transparent;
  }
  .nav-toggle.navmobile-opened i:before {
    content: '\F62A';
  }
  .header .navbar .nav {
    position: fixed;
    width: 285px;
    height: 100vh;
    overflow: auto;
    background: #000;
    left: -100%;
    top: 0;
    transition: all 0.3s;
  }
  .header .navbar .nav.active {
    left: 0;
  }
  body:before {
    content: '';
    display: block;
    background: #d7d7d7ab;
    position: fixed;
    top: 0;
    z-index: 99;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
  }
  body.navmobile-opened:before {
    opacity: 1;
    visibility: visible;
  }
  /*  nav bar mobile css here */
  .header .navbar .nav {
    background: #fff;
  }
  .header .navbar .nav > ul {
    width: 100%;
    padding: 20px;
  }
  .header .navbar .nav > ul > li {
    line-height: 30px;
    border: 1px solid #d0d0d0;
    padding: 5px 15px;
    border-radius: 12px;
  }
  .header .navbar .nav > ul > li + li {
    margin-top: 10px;
  }
  .header .navbar .nav > ul > li > a {
    color: #373737;
    justify-content: space-between;
    display: flex;
  }
  .header .navbar .nav ul li a:hover {
    color: var(--secondary-bg-dark);
  }
  .header .navbar .nav .dropdown_menu {
    display: none;
  }
  .header .navbar .nav .dropdown_menu {
    padding-inline-start: 10px;
  }
  .header .navbar .nav .dropdown_menu .dropdown > a:after {
    content: "\F285";
    font-family: bootstrap-icons;
    font-size: 10px;
    margin-inline-end: 5px;
    font-weight: bold;
    right: 0;
    position: absolute;
  }
  .header .navbar .nav .dropdown_menu li a {
    color: #373737;
    display: block;
    padding: 5px 0;
  }
  .header .navbar .nav .dropdown_menu > li + li {
    border-top: 1px dashed #d0d0d0;
  }
  .header .navbar .nav ul li.dropdown.dropdown_opened > a {
    color: var(--secondary-bg-dark);
  }
  .header .navbar .nav ul > li.dropdown > a > i {
    transform: rotate(0deg);
    transition: all 0.5s;
  }
  .header .navbar .nav ul > li.dropdown.dropdown_opened > a > i {
    transform: rotate(-180deg);
  }
  .header .navbar .nav ul > li.dropdown li.dropdown > a:after {
    transform: rotate(90deg);
    transition: all 0.5s;
  }
  .header .navbar .nav ul > li.dropdown.dropdown_opened li.dropdown.dropdown_opened > a:after {
    transform: rotate(-90deg);
    transition: all 0.5s;
  }
}
/*  =============heading css start=============*/
.banner-content h1 {
  font-size: 48px;
  font-weight: 600;
}
.section-title h2 {
  font-size: 40px;
  font-weight: 600;
  color: #0c0046;
}
.theme-color {
  color: var(--secondary-bg-dark);
}
.bg1 {
  background: var(--primary-light-bg);
}
.bg2 {
  background: #FFF2E6;
}
.bg-white {
  background: #fff;
}
.fit-content {
  width: fit-content;
}
img {
  max-width: 100%;
  height: auto;
}
@media(max-width:480px) {
  .banner-content h1 {
    font-size: 40px;
  }
  .section-title h2 {
    font-size: 34px;
    font-weight: 500;
  }
}
/*  =============heading css start=============*/
/*  =============button css start=============*/
.btn-01 {
  font-size: 15px;
  border: 1px solid var(--secondary-bg);
  padding: 12px 20px;
  border-radius: 5px;
  background: var(--secondary-bg);
  color: #FFFFFF;
  font-weight: 600;
  display: block;
  width: fit-content;
  transition: all .4s;
}
.btn-01:hover {
  background: var(--secondary-bg-dark);
}
.btn-02 {
  font-size: 15px;
  border: 1px solid #000;
  padding: 12px 15px;
  border-radius: 5px;
  background: #fff;
  color: #000000;
  font-weight: 600;
  transition: all .4s;
  display: block;
  width: fit-content;
}
.btn-02:hover {
  background: var(--secondary-bg);
  color: #FFFFFF;
  border: 1px solid var(--secondary-bg);
}
/*  =============button css end=============*/
/*  =============banner css start=============*/
.home.banner {
  padding: 100px 0px 60px 0px;
  /*  background-image: url('../images/banner_img.png');*/
  background-position: center;
  background-repeat: repeat;
  background-color: var(--primary-light-bg);
}
.banner-two {
  padding: 100px 0px 60px 0px;
  /* background-image: url('../images/banner_img2.png'); */
  background-position: center;
  background-repeat: repeat;
  background-color: var(--primary-light-bg);
}

.banner-slider {
  padding: 100px 0px 60px 0px;
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  background: antiquewhite;
}

.banner-slide {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%; /* Prevent extra space */
}

.slide {
  flex: 0 0 100%; /* Each slide takes exactly 100% of the width */
  box-sizing: border-box; /* Include padding/border in width */
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}

.pagination .dot {
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.pagination .dot.active {
  background-color: #007bff; /* Active color */
}


.contact-us {
  padding: 100px 0px 60px 0px;
}
.banner_list {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}
.banner_list li {
  width: fit-content;
}
.banner_list li span {
  font-size: 14px;
  font-weight: 600;
}
.section_gap {
  padding: 60px 0px;
}
.section-title {
  text-align: center;
}
.gap-bottom {
  margin-bottom: 25px;
}
@media(max-width:480px) {
  .home.banner {
    padding: 90px 0px 60px 0px;
  }
}
.domain_registration {
  background: var(--primary-light-bg);
}
.input-container {
  position: relative;
  display: flex;
  align-items: center;
}
.search-input {
  width: 100%;
  padding: 14px;
  border: unset;
  border-radius: 12px;
  outline: none;
  font-size: 16px;
  box-sizing: border-box;
  position: relative;
}
.search_buttons {
  position: absolute;
  right: 10px;
}
.search_buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}
.search_buttons .search-btn {
  color: #FFFFFF;
  border-radius: 5px;
  background: var(--secondary-bg);
  padding: 6px 12px;
  border: unset;
}
.search_buttons .search-btn:hover {
  background: var(--secondary-bg-dark);
}
.search_buttons .transfer-btn {
  color: #000;
  border-radius: 5px;
  border: 1px solid var(--secondary-bg);
  transition: all .4s;
  padding: 5px 12px;
  background: unset;
}
.search_buttons .transfer-btn:hover {
  color: #FFFFFF;
  background: var(--secondary-bg);
}
.domain_list ul {
  display: flex;
  align-items: stretch;
  gap: 15px;
}
.domain_list ul li {
  width: 19%;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}
.domain_list ul li img {
  width: 65px;
}
.domain_list ul li label {
  font-size: 15px;
  font-weight: 500;
}
@media(max-width:699px) {
  .domain_list ul li {
    width: 25%;
  }
}
@media(max-width:480px) {
  .input-container {
    position: unset;
    display: unset !important;
  }
  .search_buttons {
    position: unset;
    margin-top: 15px;
  }
  .search_buttons .search-btn {
    padding: 12px;
  }
  .search_buttons .transfer-btn {
    padding: 11px;
  }
  .domain_list ul {
    display: flex;
    flex-wrap: wrap;
  }
  .domain_list ul li {
    width: 47%;
  }
}
.section_content .title {
  font-size: 15px;
  color: var(--secondary-bg);
  font-weight: 500;
  padding: 5px 10px;
  background: #fff;
  border-radius: 12px;
  margin-bottom: 10px;
  display: block;
  width: fit-content;
}
.section_content h2 {
  font-size: 35px;
  font-weight: 600;
}
.section-title p, .section_content p {
  font-size: 15px;
}
ul.checks li {
  display: flex;
  align-items: center;
  position: relative;
  line-height: 35px;
  font-size: 16px;
}
ul.checks li::before {
  content: "\F285";
  font-family: bootstrap-icons;
  font-size: 10px;
  margin-inline-end: 5px;
  font-weight: bold;
  background: var(--secondary-bg);
  width: 25px;
  height: 25px;
  justify-content: center;
  display: flex;
  border-radius: 100%;
  line-height: 25px;
  color: #fff;
}
@media(max-width:480px) {
  ul.checks li {
    align-items: start;
    line-height: 20px;
    margin-bottom: 10px;
    font-size: 15px;
  }
  ul.checks li::before {
    margin-inline-end: 7px;
    max-width: 25px;
    min-width: 25px;
    height: 25px;
    justify-content: center;
    display: flex;
    border-radius: 100%;
    line-height: 25px;
  }
}
.feature-style-two {
  padding: 10px 15px;
  border: 1px solid var(--primary-bg);
  border-radius: 12px;
}
.feature-style-two h5 {
  font-size: 18px;
  margin: 0;
}
.google_feature {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.google_feature:last-child {
  margin-bottom: 0px;
}
.google_feature .content h6 {
  font-size: 20px;
  font-weight: 600;
}
.google_feature .content p {
  font-size: 15px;
}
.contact-form {
  padding: 30px;
  background: var(--secondary-light-bg);
  border-radius: 12px;
}
.contact-form h4 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 15px;
}
.contact-form .input-form {
  display: block;
  padding: 8px 15px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #d9d9d9;
  width: 100%;
}
.contact-form .input-form:focus {
  outline: unset;
}
.contact-form .btn-01 {
  padding: 12px 50px;
}
.domain-search-form {
  position: relative;
}
.domain-search-form .input-form {
  border: 1px solid var(--secondary-bg);
  background: #fff;
  height: 60px;
  padding: 15px 25px;
  width: 100%;
  color: #000;
  outline: unset;
  border-radius: 12px;
}
.domain-search-form .btn-02 {
  position: absolute;
  top: 6px;
  right: 6px;
}
@media (max-width:575px) {
  .domain-search-form {
    padding: 10px;
    padding-top: 0;
  }
  .domain-search-form .input-form {
    padding: 10px;
  }
  .domain-search-form .btn-02 {
    position: unset;
    width: 100%;
    margin-top: 15px;
  }
}
.domain-card .domain-name {
  padding: 20px;
  box-shadow: rgba(50, 50, 93, 0.17) 0px 13px 17px 0px, rgba(0, 0, 0, 0) 0px 4px 10px 0px;
}
.domain-card .domain-name {
  font-size: 22px;
  margin: 0;
  line-height: 1;
  text-align: center;
  color: #717171;
  font-weight: 600;
  transition: all .4s;
  border: 1px solid #fff;
  border-radius: 12px 12px 0px 0px;
  border-bottom: 0px;
}
.domain-card:hover .domain-name {
  border: 1px solid var(--secondary-bg);
  border-radius: 12px 12px 0px 0px;
  box-shadow: rgba(17, 220, 98, 0.12) 0px 13px 17px 0px, rgba(17, 220, 98, 0.27) 0px 4px 10px 0px;
  border-bottom: 0px;
}
.domain-card .domain-price {
  padding: 20px;
  background: var(--primary-bg);
  text-align: center;
  color: #fff;
  font-weight: 600;
  border-radius: 0px 0px 12px 12px;
}
.domain-trasfer-form .domain-search-form {
  display: flex;
  gap: 1%;
  padding: 0;
}
.domain-trasfer-form .domain-search-form .search-bar {
  width: 75%;
}
.domain-trasfer-form .domain-search-form .select {
  width: 24%;
}
/* ----------------------------------------------------------------
    20. Sunrise Domain Form Css
------------------------------------------------------------------- */
.sunrise-form {
  padding: 20px;
  position: relative;
  box-shadow: 0 0 5px #e1e1e1;
  border-radius: 5px;
  border: 1px solid #d5d5d5;
}
.sunrise-form .labels {
  font-size: 17px;
  font-weight: 600;
  position: relative;
  width: 100%;
}
.sunrise-form .smd-info {
  position: absolute;
  right: 20px;
  top: 6px;
}
.sunrise-form .smd-info .tooltip-txt {
  position: relative;
  cursor: help;
  color: var(--secondary-bg-dark);
  font-weight: 500;
  font-size: 15px;
}
.sunrise-form .smd-info .tooltip-txt .tooltip-info {
  display: none;
  padding: 15px;
  z-index: 5;
  cursor: default;
  background: #272727;
  color: #ededed;
  font-size: 12px;
  line-height: 1.5;
  position: absolute;
  top: 25px;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}
.sunrise-form .smd-info .tooltip-txt .tooltip-info.what-is-smd {
  width: 635px;
  right: 2px;
}
.sunrise-form .smd-info .tooltip-txt .tooltip-info.what-is-smd span {
  background: url('../images/up_arrow.png') 0 0 no-repeat;
  right: 29px;
  width: 22px;
  height: 12px;
  position: absolute;
  top: -10px;
  display: block;
}
.sunrise-form .smd-info .tooltip-txt:hover .tooltip-info {
  display: block;
}
.sunrise-form .smd-info .tooltip-txt + .tooltip-txt {
  cursor: pointer;
}
@media (max-width:991px) {
  .sunrise-form .smd-info {
    display: none;
  }
}
.sunrise-form .input {
  width: 100%;
  background: #fff;
  border: 1px solid #e9e9e9;
  padding: 15px;
  font-size: 16px;
  outline: none;
  border-radius: 5px;
}
.history_card {
  height: 100%;
}
.history_card .heading {
  position: relative;
}
.history_card .heading::after {
  content: "";
  position: absolute;
  bottom: -19px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #fff2e6;
}
.history_card .heading {
  padding: 20px;
  border: 0px;
  border-radius: 12px !important;
  min-height: 300px;
}
.history_card .years {
  border-radius: 12px;
  padding: 10px 35px;
  width: fit-content;
  margin: auto;
}
/*  =============banner css end=============*/
/*  =============plan css start=============*/
.plan-card-one {
  padding: 20px;
  border: 1px solid var(--secondary-bg-dark);
  border-radius: 12px;
  height: 100%;
}
.plan_icon {
  background: var(--primary-bg);
  padding: 15px;
  border-radius: 100%;
  width: fit-content;
  margin: auto;
}
.plan_icon img {
  width: 30px;
}
.plan-card-one h3 {
  font-size: 25px;
  font-weight: 600;
  margin-top: 20px;
}
.plan-card-one span {
  font-size: 12px;
  font-weight: 400;
}
.plan_list li {
  font-size: 16px;
  font-weight: 400;
  position: relative;
  line-height: 20px;
  margin-bottom: 10px;
}
.plan_list.check li::before {
  content: "\F231";
  font-family: bootstrap-icons;
  font-size: 13px;
  margin-inline-end: 5px;
  font-weight: bold;
  color: var(--secondary-bg);
  background: unset;
}
.plan-card-one .customborder {
  border-top: 1px solid #e3e3e3 !important;
  margin: 10px 0px;
}
.price .text {
  font-size: 18px;
}
.price .price_value {
  font-size: 38px;
  font-weight: 600;
  color: #120359;
}
.price .price_value sup, .price .price_value sub {
  color: #262626;
  font-size: 16px;
}
.plan-card-one .btn-01 {
  padding: 12px 30px;
}
/*  =============plan css end=============*/
/*  =============feature-style css start=============*/
.feature-style-one {
  padding: 20px;
  border: 1px solid var(--secondary-bg);
  border-radius: 12px;
  height: 100%;
}
.feature-style-one .icon i {
  font-size: 40px;
  color: var(--secondary-bg);
}
.feature-style-one h4 {
  font-size: 19px;
  font-weight: 600;
  margin: 10px 0px;
}
.feature-style-one p {
  font-size: 15px;
  font-weight: 400;
}
.feature-style-two {
  padding: 8px;
  border: 1px solid var(--primary-bg);
  border-radius: 12px;
  background: #fff;
  height: 100%;
}
.feature-style-two .icon i {
  font-size: 30px;
  color: var(--secondary-bg);
}
.feature-style-two h4 {
  font-size: 16px;
  font-weight: 500;
  /*  margin: 10px 0px;*/
}
.feature-style-three {
  padding: 20px;
  border: 1px solid var(--secondary-bg);
  border-radius: 12px;
  background: #fff;
  position: relative;
  height: 100%;
}
.feature_icon {
  margin-bottom: 10px;
}
.feature_icon img {
  max-width: 70px;
  border-bottom: 2px solid var(--secondary-bg-dark);
  padding-bottom: 5px;
}
.feature-style-three h5 {
  font-size: 20px;
  margin-top: 5px;
}
.feature-style-three p {
  font-size: 13px;
  font-weight: 400;
  margin: 0;
}
.feature-style-four {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.feature-style-four li {
  padding: 8px;
  border: 1px solid var(--primary-bg);
  border-radius: 12px;
  background: #fff;
  height: 100%;
  transition: all .4s;
  width: 32%;
  margin-bottom: 10px;
}
.feature-style-four li:hover {
  background: var(--primary-light-bg);
  border: 1px solid var(--primary-light-bg);
}
.feature-style-four li .icon i {
  font-size: 30px;
  color: var(--secondary-bg);
}
.feature-style-four li h5 {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}
@media(max-width:767px) {
  .feature-style-four li {
    width: 48%;
  }
}
@media(max-width:480px) {
  .feature-style-four li {
    width: 100%;
  }
}
.feature-style-one.card {
  box-shadow: rgb(218, 239, 255) 0px 2px 8px 0px, rgb(218, 239, 255) 0px 0px 8px 0px;
  background: #daefff;
  padding: 10px 20px;
  transition: all .4s;
}
.feature-style-one.card .icon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
  transform: scale(1);
}
.feature-style-one.card:hover .icon {
  transform: scale(1.05);
}
.feature-style-one.card .icon .imagees {
  padding: 10px;
  border-radius: 12px;
  background: var(--primary-bg);
  width: 50px;
  height: 50px;
}
.feature-style-one.card .icon i {
  font-size: 30px;
  color: var(--secondary-bg);
  color: #daefff;
  line-height: 30px;
  width: 30px;
  height: 30px;
  text-align: center;
}
/*  =============feature-style css end=============*/
/*  =============tabbing css start=============*/
.tab-section {
  padding: 40px 0;
}
.tab-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tab-btn {
  padding: 10px 15px;
  border: 1px solid #ccc;
  background-color: #f8f9fa;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}
.tab-btn.active {
  background-color: var(--primary-bg);
  color: #fff;
}
.tab-content .tab-pane {
  display: none;
}
.tab-content .tab-pane.active {
  display: block;
  background: var(--primary-light-bg);
  border-radius: 12px;
  padding: 40px;
  height: 100%;
}
.feature-style-three.tabs-img img {
  max-width: 100% !important;
}
.feature-style-three.tabs-img h5 {
  font-size: 17px;
}
.tab-section .section-title h4 {
  font-size: 19px;
}
.tab-section .feature-style-two h5 {
  font-size: 14px;
  line-height: 20px;
  margin: 0;
}
.tab-section .feature-style-one {
  background: #fff;
  padding: 5px;
}
.tab-section .feature-style-one h4 {
  font-size: 15px;
}
.tab-section .feature-style-one p {
  font-size: 13px;
}
/*  =============tabbing css end=============*/
/*  =============testimonial css start=============*/
.testimonial-card {
  padding: 20px;
  border: 1px solid var(--primary-bg);
  border-radius: 12px;
}
.about_client {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about_client .client_text {
  display: flex;
  align-items: center;
  gap: 20px;
}
.about_client .client_text img {
  width: 70px;
  border-radius: 100%;
}
.about_client .client_text .name {
  font-size: 18px;
  font-weight: 600;
  color: #000;
}
.about_client .client_text .post {
  font-size: 15px;
  font-weight: 400;
  color: #000;
}
.testimonial-card .review {
  font-size: 15px;
  color: #000;
  margin: 15px 0px;
  display: block;
}
.testimonial-card ul {
  display: flex !important;
  gap: 2px;
}
.testimonial-card ul li i {
  color: #F9A453;
}
.about_client i {
  font-size: 30px;
  color: var(--secondary-bg);
}
.swiper-pagination {
  bottom: -5px !important;
  left: 0;
  width: 100%;
  position: relative !important;
}
.swiper-pagination-bullet-active {
  background: var(--secondary-bg);
}
/*  =============testimonial css end=============*/
/*  =============swipe-slide css start=============*/
/*  =============swipe-slide css end=============*/
.slider-container {
  width: 100%;
  overflow: hidden;
  max-width: 1200px;
  margin: auto;
  position: relative;
}
.slider-container .slider {
  display: flex;
  gap: 0;
  animation: scroll 20s linear infinite;
  align-items: center;
}
.slider-container .slider li {
  flex: 0 0 20%;
  box-sizing: border-box;
  padding: 20px;
  text-align: center;
}
.slider-container .slider li img {
  max-width: 115px;
  min-width: 115px;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
/*  =============accordion css start=============*/
.accordion {
  background: transparent;
  padding: 20px;
  margin: 0;
  list-style: none;
}
.accordion li {
  list-style: none;
  border-radius: 5px;
  border: 1px solid var(--primary-light-bg);
}
.accordion li + li {
  margin-top: 15px;
}
.accordion li > a {
  font-size: 15px;
  font-weight: 500;
  color: #4B4B4B;
  padding: 15px;
  display: flex;
  align-items: center;
  transition: all 0.3s;
  cursor: pointer;
  user-select: none;
  border-radius: 5px;
}
.accordion li > a > span {
  display: contents;
}
.accordion li.active > a, .accordion li.active > a:hover, .accordion li.active > a:focus {
  color: #353535;
  background: var(--primary-light-bg);
  border-radius: 0px;
}
.accordion li > a::after {
  content: '+';
  width: 30px;
  height: 30px;
  display: flex;
  background: var(--secondary-bg-dark);
  color: #353535;
  justify-content: center;
  align-items: center;
  font-size: 17px;
  margin-inline-start: auto;
  border-radius: 5px;
}
.accordion li.active > a:after {
  content: '-';
  font-size: 22px;
}
.accordion li p {
  padding: 15px;
  font-size: 15px;
  line-height: 1.7;
  color: #4B4B4B;
  display: none;
  border-radius: 0px 0px 5px 5px;
  margin: 0;
}
.accordion li p a {
  display: contents;
  color: var(--secondary-bg-dark);
  text-decoration: underline !important;
  cursor: pointer;
}
/*  =============accordion css start=============*/
/*  =============footer css start=============*/
.footer_main {
  background: var(--primary-light-bg);
  padding: 80px 0px;
}
.footer_top {
  padding: 15px 20px;
  border-radius: 12px;
  background: #FFFFFF;
}
.footer_top h3 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 10px;
}
.footer_top p {
  font-size: 15px;
  font-weight: 500;
    margin: 0px;
}
.footer_card {
  display: flex;
  align-items: center;
  gap: 15px;
}
.logo-footer img {
  max-width: 150px;
  height: auto;
}
.logo-footer .social_icon ul {
  display: flex;
  align-items: center;
  gap: 15px;
}
.logo-footer .social_icon ul li {
  font-size: 20px;
  transition: all .4s;
}
.logo-footer .social_icon ul li i {
  font-size: 20px;
  color: #535353;
}
.logo-footer .social_icon ul li:hover i {
  color: var(--secondary-bg-dark);
}
.footer_menu_item ul li {
  line-height: 30px;
}
.footer_menu_item h4 {
  font-size: 20px;
  font-weight: 600;
  color: #535353;
}
.footer_menu_item ul li a {
  color: #535353;
  display: block;
  transition: all .4s;
}
.footer_menu_item ul li a:before {
  content: "\F285";
  font-family: bootstrap-icons;
  font-size: 10px;
  margin-inline-end: 5px;
  font-weight: bold;
}
.footer_menu_item ul li a:hover {
  color: #000000;
}
.address {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 15px;
}
.address .icon i {
  color: #535353;
}
.address span {
  color: #535353;
}
.footer_menu_item .address:last-child {
  margin-bottom: 0px;
}
.footer_bottom {
  background-color: #e1e1e1;
  padding: 10px;
  justify-content: center;
  display: flex;
  align-items: center;
  color: #535353;
  font-size: 14px;
}
@media(max-width:480px) {
  .footer_card {
    display: unset;
  }
  .footer_card img {
    width: 140px;
  }
}
/*  =============footer css end=============*/
/* ----------------------------------------------------------------
    05. Scroll top button
------------------------------------------------------------------- */
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  inset-inline-end: 15px;
  bottom: -40px;
  z-index: 99999;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.5s;
  cursor: pointer;
  border: 0;
  outline: unset;
  box-shadow: unset;
}
.scroll-top:after {
  position: absolute;
  z-index: -1;
  content: "";
  top: 100%;
  inset-inline-start: 5%;
  height: 10px;
  width: 90%;
  opacity: 1;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}
.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}
.scroll-top:hover {
  background: rgb(var(--color-secondary));
  color: #fff;
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
  background: #333333;
}
/* ----------------------------------------------------------------
     Titan Email Video
------------------------------------------------------------------- */
.titanmail-video {
  background-color: rgb(250, 251, 254);
  border: 15px solid rgba(196, 192, 192, 0.5);
  border-radius: 5px;
  overflow: hidden;
}
.titanmail-video video {
  height: 100%;
  width: 100%;
  display: flex;
  border: none;
  background-color: #000;
}
/* ----------------------------------------------------------------
     Titan table Video
------------------------------------------------------------------- */
.tabs-section-two .tabs {
  display: block;
  width: 100%;
}
.tabs-section-two .tabs .items {
  display: block;
  margin: 0 auto 60px;
  border-bottom: 1px solid var(--primary-bg);
}
.tabs-section-two .tabs .items .item {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  padding: 12px 0;
  position: relative;
  color: rgb(var(--color-secondary));
  cursor: pointer;
}
.tabs-section-two .tabs.many-tabs .items .item {
  font-size: 16px;
}
.tabs-section-two .tabs .items .item + .item {
  margin-inline-start: 40px;
}
.tabs-section-two .tabs .items .item.active {
  color: #1b1b1b;
  font-weight: 600;
}
.tabs-section-two .tabs .items .item::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 4px;
  background: 0 0;
  transition: width .5s linear;
}
.tabs-section-two .tabs .items .item.active::after {
  width: 100%;
  background: var(--primary-bg);
}
.tabs-section-two .contents {
  display: block;
}
.tabs-section-two .contents .item {
  display: none;
}
.tabs-section-two .contents .item.active {
  display: block;
}
@media (max-width:767px) {
  .tabs-section-two .tabs .items .item {
    font-size: 14px;
  }
  .tabs-section-two .tabs .items .item + .item {
    margin-inline-start: 30px;
  }
  .tabs-section-two .tabs .items {
    margin: 0 auto 30px;
  }
  .tabs-section-two .tabs.many-tabs .items {
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .tabs-section-two .tabs.many-tabs .items::-webkit-scrollbar {
    display: none;
  }
  .tabs-section-two .tabs.many-tabs .items {
    display: flex;
  }
  .tabs-section-two .tabs.many-tabs .items .item {
    white-space: nowrap;
  }
}
/** ----------------------------------------------------------------
     login form $ register form
------------------------------------------------------------------- **/
.login-page {
  padding: 80px 0px 20px 0px;
}
.login-page .section-title h2 {
  font-size: 25px;
  font-weight: 500;
  margin-top: 20px;
}
.login_form {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
}

.login_form label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #2a2e32;
}
.login-page .input-form {
  border: 1px solid #29862d5c;
  background: #fff;
  padding: 5px 15px;
  width: 100%;
  color: #000;
  outline: unset;
  border-radius: 6px;
}
.login-page .checkbox {
  color: #2a2e32;
  font-size: 15px;
  font-weight: 500;
}
.login-page .forgot-text {
  color: #2a2e32;
  font-size: 15px;
  font-weight: 500;
  transition: all .4s;
}
.login-page .forgot-text:hover {
  color: var(--secondary-bg-dark);
}
.login_form .login_sidebar {
  border-radius: 12px;
  padding: 20px;
}

.text-between-lines {
  position: relative;
  text-align: center;
  margin: 40px 0;
  font-size: 16px;
  color: #333;
  font-weight: 500;
}
.text-between-lines::before, .text-between-lines::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 33%;
  height: 1px;
  background-color: #9999993b;
}

.text-between-lines::before {
    left: 0;
    transform: translateY(-50%);
}

.text-between-lines::after {
    right: 0;
    transform: translateY(-50%);
}

.login-page .register_link a{
  border: 1px solid #e7e7e7;
  padding: 10px 20px;
  border-radius: 10px;
  transition: all .4s;
}
.login-page .register_link a:hover{
  background: var(--secondary-bg);
  color: #fff;
}

@media(max-width:992px){
  .text-between-lines::before, .text-between-lines::after {
  content: unset;
  position: absolute;
}
  .login-page {
    padding: 60px 0px 20px 0px;
  }
}

/* ============= Payment Methods CSS ============ */
.payment-methods {
  margin-top: 20px;
}

.payment-logo {
  height: 40px;
  width: auto;
  max-width: 80px;
  border-radius: 6px;
  transition: all 0.3s ease;
  filter: grayscale(20%);
  opacity: 0.8;
}

.payment-logo:hover {
  transform: scale(1.05);
  filter: grayscale(0%);
  opacity: 1;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .payment-methods .row {
    gap: 10px !important;
  }
  
  .payment-logo {
    height: 35px;
    max-width: 70px;
  }
}

@media (max-width: 480px) {
  .payment-methods .row {
    gap: 8px !important;
  }
  
  .payment-logo {
    height: 30px;
    max-width: 60px;
  }
}

/* ============= Pricing Feature List CSS ============ */
.pricing-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.pricing-feature-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
  line-height: 1.4;
}

.pricing-feature-list li:last-child {
  border-bottom: none;
}

.pricing-feature-list li span {
  font-weight: 600;
  color: var(--secondary-bg);
  background: #f8f9fa;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  min-width: 60px;
  text-align: center;
}

.pricing-feature-list li span:first-child {
  margin-right: 10px;
}

@media (max-width: 768px) {
  .pricing-feature-list li {
    font-size: 13px;
    padding: 6px 0;
  }
  
  .pricing-feature-list li span {
    font-size: 11px;
    padding: 1px 6px;
    min-width: 50px;
  }
}
/* ============= Google Translate Widget Styling ============ */
#google_translate_element {
  display: inline-block;
  margin-left: 15px;
}

#google_translate_element select {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 5px 10px;
  font-size: 13px;
  color: #333;
  cursor: pointer;
  outline: none;
}

#google_translate_element select:hover {
  border-color: var(--secondary-bg);
}

/* Hide Google Translate branding */
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

body {
  top: 0px !important;
}

.goog-te-gadget {
  font-family: "Poppins", sans-serif !important;
  font-size: 13px !important;
}

.goog-te-gadget-simple {
  background-color: #fff !important;
  border: 1px solid #ddd !important;
  border-radius: 4px !important;
  padding: 5px 10px !important;
  font-size: 13px !important;
  display: inline-block !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}

.goog-te-gadget-simple:hover {
  border-color: var(--secondary-bg) !important;
}

.goog-te-gadget-icon {
  display: none !important;
}

.goog-te-menu-value span {
  color: #333 !important;
}

.goog-te-menu-value span:first-child {
  display: none !important;
}

/* Mobile responsive */
@media (max-width: 991px) {
  #google_translate_element {
    margin: 10px 0;
  }
}

/* ============= Hide Google Translate Widget Completely ============ */
#google_translate_element {
  display: none !important;
  visibility: hidden !important;
  position: absolute !important;
  left: -9999px !important;
}

/* Hide Google Translate top banner */
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

body {
  top: 0px !important;
  position: static !important;
}

.skiptranslate {
  display: none !important;
}

/* Hide Google Translate toolbar */
#goog-gt-tt, .goog-te-balloon-frame {
  display: none !important;
}

.goog-text-highlight {
  background: none !important;
  box-shadow: none !important;
}

/* ============= Updated Google Translate Hiding ============ */
#google_translate_element {
  position: absolute !important;
  left: -9999px !important;
  top: 0 !important;
  z-index: -1 !important;
}

#google_translate_element * {
  display: block !important;
}

/* Ensure the select dropdown can be found */
.goog-te-combo {
  display: block !important;
}

/* ============= WHMCS Integration Boxes ============ */
.whmcs-box {
  background: #ffffff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: all 0.3s ease;
}

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

.whmcs-box h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-bg);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.whmcs-box h3 i {
  font-size: 28px;
  color: var(--secondary-bg);
}

.whmcs-box .form-label {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
}

.whmcs-box .form-control {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.whmcs-box .form-control:focus {
  border-color: var(--secondary-bg);
  box-shadow: 0 0 0 0.2rem rgba(41, 134, 45, 0.15);
  outline: none;
}

.whmcs-box .btn-01 {
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 500;
}

.whmcs-box a.small {
  color: var(--secondary-bg);
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whmcs-box a.small:hover {
  color: var(--secondary-bg-dark);
  text-decoration: underline;
}

.whmcs-box p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.whmcs-box ul {
  padding-left: 0;
  margin-bottom: 0;
}

.whmcs-box ul li {
  font-size: 13px;
  color: #666;
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
}

.whmcs-box ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-bg);
  font-weight: bold;
}

.whmcs-box h5.small {
  font-size: 14px;
  margin-bottom: 10px;
  color: #333;
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .whmcs-box {
    padding: 20px;
  }
  
  .whmcs-box h3 {
    font-size: 18px;
  }
}

/* ============= Domain Search Results Styling ============ */
.domain-search-loading {
  text-align: center;
  padding: 30px;
}

.domain-search-loading .spinner-border {
  width: 3rem;
  height: 3rem;
  border-width: 0.3em;
}

.domain-search-results {
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.domain-result-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.domain-result-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #e1e5e9;
  transition: all 0.3s ease;
}

.domain-result-card:hover {
  border-color: #d1d5db;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.domain-result-card.available {
  border-color: #22c55e;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.15);
}

.domain-result-card.available::before {
  background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
  height: 3px;
}

.domain-result-card.taken {
  border-color: #f87171;
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  box-shadow: 0 4px 12px rgba(248, 113, 113, 0.15);
}

.domain-result-card.taken::before {
  background: linear-gradient(90deg, #f87171 0%, #ef4444 100%);
  height: 3px;
}

/* Light & Colorful Compact Layout */
.domain-result-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.domain-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 180px;
}

.domain-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.domain-name {
  font-size: 20px;
  font-weight: 600;
  color: #2d3748;
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.2px;
}

.pricing-section {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(34, 197, 94, 0.2);
  box-shadow: 0 2px 6px rgba(34, 197, 94, 0.1);
}

.price-label {
  font-size: 10px;
  color: #6b7280;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 1px;
}

.price-value {
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  line-height: 1;
}

.btn-add-cart {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #ffffff;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 6px rgba(34, 197, 94, 0.25);
  display: flex;
  align-items: center;
  gap: 5px;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  position: relative;
  overflow: hidden;
}

.btn-add-cart::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-add-cart:hover::before {
  left: 100%;
}

.btn-add-cart:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.5);
}

.btn-add-cart:active {
  transform: translateY(-1px);
}

.btn-add-cart i {
  font-size: 20px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.unavailable-section {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  background: rgba(255, 255, 255, 0.9);
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(239, 68, 68, 0.3);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.unavailable-text {
  font-size: 16px;
  font-weight: 700;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
}

.unavailable-desc {
  font-size: 12px;
  color: #6b7280;
  margin: 0;
  font-style: italic;
  font-weight: 500;
}

.domain-info h4 {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-bg);
  margin-bottom: 10px;
  word-break: break-word;
}

.status-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 6px 12px !important;
  border-radius: 16px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08) !important;
  animation: slideInUp 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.3px !important;
  position: relative !important;
  overflow: hidden !important;
}

.status-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.8s;
}

.status-badge:hover::before {
  left: 100%;
}

@keyframes slideInUp {
  from { 
    opacity: 0; 
    transform: translateY(20px) scale(0.9); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0) scale(1); 
  }
}

.badge-success {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
  color: #ffffff !important;
  border: 1px solid #15803d !important;
  box-shadow: 0 3px 10px rgba(34, 197, 94, 0.25) !important;
}

.badge-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.badge-success i {
  font-size: 24px;
  animation: bounce 2s infinite;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-4px); }
  60% { transform: translateY(-2px); }
}

.badge-danger {
  background: linear-gradient(135deg, #f87171 0%, #ef4444 100%) !important;
  color: #ffffff !important;
  border: 1px solid #dc2626 !important;
  box-shadow: 0 3px 10px rgba(248, 113, 113, 0.25) !important;
  animation: shake 0.6s ease-in-out !important;
}

.badge-danger:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-3px); }
  20%, 40%, 60%, 80% { transform: translateX(3px); }
}

.badge-danger i {
  font-size: 24px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  animation: pulse 1.5s infinite;
}

/* Domain Search Form Styles for Domain Registration Page */
.domain-search-form .input-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.domain-search-form .search-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #ffffff;
}

.domain-search-form .search-input:focus {
  outline: none;
  border-color: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.domain-search-form .search_buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.domain-search-form .search-btn,
.domain-search-form .transfer-btn {
  flex: 1;
  min-width: 120px;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.domain-search-form .search-btn {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(34, 197, 94, 0.25);
}

.domain-search-form .search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.35);
}

.domain-search-form .transfer-btn {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(59, 130, 246, 0.25);
}

.domain-search-form .transfer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.35);
}

/* Mobile Responsive for Domain Search Form */
@media (max-width: 768px) {
  .domain-search-form .search_buttons {
    flex-direction: column;
  }
  
  .domain-search-form .search-btn,
  .domain-search-form .transfer-btn {
    flex: none;
    width: 100%;
  }
}

/* ============================================
   DOMAIN PRICING TABLE - COMPACT DESIGN
   ============================================ */

.domain-pricing-table {
  width: 100%;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #e5e7eb;
}

.domain-pricing-table thead {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  position: relative;
}

.domain-pricing-table thead th {
  padding: 16px 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-align: left;
  border: none;
  position: relative;
  color: #ffffff;
}

.domain-pricing-table thead th svg {
  vertical-align: middle;
  margin-right: 8px;
  opacity: 0.9;
  width: 16px;
  height: 16px;
}

.domain-pricing-table thead .tld-column {
  width: 35%;
}

.domain-pricing-table thead .price-column {
  width: 25%;
}

.domain-pricing-table thead .renew-column {
  width: 25%;
  text-align: right;
}

.domain-pricing-table thead .action-column {
  width: 15%;
  text-align: center;
}

.domain-pricing-table tbody tr {
  transition: all 0.2s ease;
  border-bottom: 1px solid #f1f5f9;
  position: relative;
}

.domain-pricing-table tbody tr:hover {
  background: #f8fafc;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.domain-pricing-table tbody tr.even {
  background: #fefefe;
}

.domain-pricing-table tbody tr.odd {
  background: #ffffff;
}

.domain-pricing-table tbody tr:hover.even,
.domain-pricing-table tbody tr:hover.odd {
  background: #f8fafc;
}

.domain-pricing-table tbody td {
  padding: 12px 20px;
  font-size: 14px;
  border: none;
  vertical-align: middle;
  color: #374151;
}

/* TLD Cell Styling */
.tld-cell {
  font-weight: 500;
}

.tld-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tld-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  transition: all 0.2s ease;
}

.tld-icon:hover {
  background: #e5e7eb;
  transform: scale(1.05);
}

.tld-icon svg {
  width: 100%;
  height: 100%;
}

.tld-name {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  letter-spacing: -0.1px;
}

/* Price Cell Styling */
.price-cell {
  font-weight: 500;
  text-align: right;
}

.price-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.price-amount {
  font-size: 14px;
  font-weight: 700;
  color: #1f2937;
  letter-spacing: -0.1px;
}

.price-period {
  font-size: 12px;
  font-weight: 500;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Renew Cell Styling */
.renew-cell {
  font-weight: 500;
  text-align: right;
}

.renew-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.renew-amount {
  font-size: 14px;
  font-weight: 700;
  color: #1f2937;
  letter-spacing: -0.1px;
}

.renew-period {
  font-size: 12px;
  font-weight: 500;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Action Cell Styling */
.action-cell {
  text-align: center;
}

.btn-register {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #3b82f6;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.btn-register:hover {
  background: #2563eb;
  color: #ffffff;
  transform: translateY(-1px);
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

.btn-register svg {
  transition: transform 0.2s ease;
  width: 12px;
  height: 12px;
}

.btn-register:hover svg {
  transform: translateX(2px);
}

/* Table Pagination */
.table-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding: 20px 24px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.btn-pagination {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.btn-pagination:hover:not(:disabled) {
  background: linear-gradient(135deg, #5568d3 0%, #6a3f8f 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.btn-pagination:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: #cbd5e0;
  box-shadow: none;
}

.page-info {
  font-size: 15px;
  color: #4a5568;
  font-weight: 500;
}

.page-info strong {
  color: #667eea;
  font-weight: 700;
}

.page-info .text-muted {
  color: #a0aec0;
  font-size: 13px;
  margin-left: 8px;
}

/* Table Responsive */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .domain-pricing-table thead th {
    padding: 16px 12px;
    font-size: 13px;
  }
  
  .domain-pricing-table thead th svg {
    display: none;
  }
  
  .domain-pricing-table tbody td {
    padding: 14px 12px;
  }
  
  .tld-icon {
    width: 32px;
    height: 32px;
  }
  
  .tld-name {
    font-size: 16px;
  }
  
  .price-badge {
    padding: 6px 12px;
  }
  
  .price-amount {
    font-size: 16px;
  }
  
  .price-period {
    font-size: 11px;
  }
  
  .btn-register {
    padding: 8px 16px;
    font-size: 12px;
  }
  
  .table-pagination {
    flex-direction: column;
    gap: 16px;
    padding: 16px;
  }
  
  .btn-pagination {
    width: 100%;
    justify-content: center;
  }
  
  .page-info {
    text-align: center;
  }
}

/* Loading Animation */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.spinner-border {
  display: inline-block;
  border: 4px solid rgba(102, 126, 234, 0.2);
  border-top-color: #667eea;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* ============================================
   FOOTER PROFESSIONAL STYLING
   ============================================ */

.footer_main {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.footer_main * {
  font-family: inherit;
}

/* Logo Footer Section */
.logo-footer {
  margin-bottom: 2rem;
}

.logo-footer a {
  display: inline-block;
  margin-bottom: 1rem;
}

.logo-footer img {
  max-height: 50px;
  width: auto;
}

.logo-footer p {
  font-size: 14px;
  line-height: 1.6;
  color: #6b7280;
  font-weight: 400;
  margin-bottom: 1.5rem;
  text-align: left;
}

/* Footer Menu Items */
.footer_menu_item {
  margin-bottom: 2rem;
}

.footer_menu_item h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.footer_menu_item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer_menu_item ul li {
  margin-bottom: 0.5rem;
}

.footer_menu_item ul li a {
  font-size: 14px;
  color: #6b7280;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
  display: block;
}

.footer_menu_item ul li a:hover {
  color: #3b82f6;
  text-decoration: none;
}

/* Contact Section */
.address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1rem;
}

.address .icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  font-size: 14px;
}

.address div span {
  font-size: 14px;
  color: #6b7280;
  font-weight: 400;
  line-height: 1.5;
}

/* Social Icons */
.social_icon ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 12px;
}

.social_icon ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #f3f4f6;
  border-radius: 8px;
  color: #6b7280;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 18px;
}

.social_icon ul li a:hover {
  background: #3b82f6;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Footer Bottom */
.footer_bottom {
  background: #f8fafc;
  padding: 1.5rem 0;
  border-top: 1px solid #e5e7eb;
}

.footer_bottom span {
  font-size: 13px;
  color: #9ca3af;
  font-weight: 400;
  text-align: center;
}

/* Payment Methods */
.payment-methods .payment-logo {
  height: 40px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.payment-methods .payment-logo:hover {
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .logo-footer p {
    font-size: 13px;
    text-align: center;
  }
  
  .footer_menu_item h4 {
    font-size: 15px;
    text-align: center;
  }
  
  .footer_menu_item ul li a {
    font-size: 13px;
    justify-content: center;
  }
  
  .address div span {
    font-size: 13px;
  }
  
  .social_icon ul {
    justify-content: center;
  }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.status-badge i {
  margin-right: 0;
}

.domain-pricing {
  text-align: right;
}

.price-label {
  display: block;
  font-size: 13px;
  color: #666;
  margin-bottom: 5px;
}

.price-value {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--secondary-bg);
  margin-bottom: 10px;
}

/* Domain Suggestions - Horizontal List */
.domain-suggestions-list h5 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-bg);
  margin-bottom: 20px;
}

.suggestions-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.suggestion-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 12px 20px;
  min-width: 280px;
  transition: all 0.3s ease;
  flex: 1;
  max-width: 350px;
}

.suggestion-item:hover {
  border-color: var(--secondary-bg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.suggestion-item.available {
  border-color: var(--secondary-bg);
  background: #f8fff9;
}

.suggestion-item.taken {
  background: #f8f9fa;
  opacity: 0.7;
}

.suggestion-item .domain-info {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.suggestion-item .domain-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-bg);
  word-break: break-word;
}

.suggestion-item .status-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.suggestion-item .pricing-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.suggestion-item .price {
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary-bg);
  white-space: nowrap;
}

.btn-sm {
  padding: 6px 12px;
  font-size: 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-add-cart {
  background: var(--secondary-bg);
  color: #ffffff;
}

.btn-add-cart:hover {
  background: var(--secondary-bg-dark);
  transform: translateY(-1px);
}

.btn-02 {
  display: inline-block;
  padding: 10px 20px;
  background: #6c757d;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn-02:hover {
  background: #5a6268;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .domain-result-card {
    padding: 16px;
  }
  
  .domain-result-inline {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  
  .domain-left {
    min-width: auto;
    text-align: center;
  }
  
  .domain-right {
    justify-content: center;
  }
  
  .domain-name {
    font-size: 20px;
  }
  
  .price-value {
    font-size: 18px;
  }
  
  .pricing-section {
    align-items: center;
  }
  
  .unavailable-section {
    align-items: center;
  }
  
  .btn-add-cart {
    padding: 8px 16px;
    font-size: 13px;
  }
  
  .status-badge {
    padding: 6px 12px !important;
    font-size: 12px !important;
  }
  
  .suggestions-list {
    flex-direction: column;
    gap: 10px;
  }
  
  .suggestion-item {
    min-width: auto;
    max-width: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .suggestion-item .domain-info {
    width: 100%;
    justify-content: space-between;
  }
  
  .suggestion-item .pricing-info {
    width: 100%;
    justify-content: space-between;
  }
}
