:root {
  --fallback-fonts: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "DM Sans", var(--fallback-fonts);
}

/* Colors */
:root {
  --color-main: #0568EA;
  --color-main-hover: #000b33;
  --color-main-two: #28a745;
  --white: #fff;
  --font-remixicon: remixicon;
  --font-bootstrap-icons: bootstrap-icons;
  --border-color: rgba(102, 112, 147, .2);
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

.color-main {
  color: var(--color-main);
}

.color-main-2 {
  color: var(--color-main-two);
}

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

body {
  font-family: var(--font-primary);
  scroll-behavior: smooth;
}

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

@media (min-width: 1300px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1240px;
  }
}

* {
  scrollbar-width: thin;
  scrollbar-color: #3498db transparent;
}

*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background-color: var(--color-main);
}

::selection {
  background: var(--color-main);
}

::selection {
  color: var(--white);
  text-shadow: none;
}

a {
  text-decoration: unset;
}

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

/* ----------------------------------------------------------------
     Scroll top button
------------------------------------------------------------------- */
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  inset-inline-end: 15px;
  bottom: -40px;
  z-index: 99999;
  background: var(--color-main);
  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 svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.scroll-top:hover {
  background: var(--color-main-hover);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}





/* ========================
Button
======================== */

.inline-btns {
  display: flex;
  justify-content: start;
  gap: 15px;
  align-items: center;
}

.btns {
  font-size: 14px;
  font-weight: 400 !important;
  line-height: 1.5;
  padding: 10px 20px;
  border-radius: 6px;
  position: relative;
  border: 1px solid;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  cursor: pointer;
  outline: unset;
  box-shadow: unset;
  text-align: center;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  display: block;
  width: fit-content;
}

.btns .fa-arrow-right {
  margin-inline-start: 8px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.btns:hover .fa-arrow-right {
  margin-inline-start: 15px;
}


.btns.one {
  border-color: #3498db;
  background-color: #3498db;
  color: #fff;
  border-radius: 10px;
}

.btns.one:hover {
  border-color: var(--color-main-hover);
  background-color: var(--color-main-hover);
  color: #fff;
}

.btns.two {
  border-color: var(--color-main-hover);
  background-color: transparent;
  color: var(--color-main-hover);
}

.btns.two:hover {
  border-color: var(--color-main-hover);
  background-color: var(--color-main-hover);
  color: #fff;
}


.btns.three {
  border-color: var(--border-color);
  background-color: transparent;
  color: var(--color-main);
}

.btns.three:hover {
  border-color: var(--color-main);
  background-color: var(--color-main);
  color: #fff;
}

.btns.four {
  border-color: var(--white);
  background-color: transparent;
  color: var(--white);
}

.btns.four:hover {
  border-color: var(--white);
  background-color: var(--white);
  color: var(--color-main);
}

/* ----------------------------------------------------------------
    Topbar
------------------------------------------------------------------- */
.topbar {
  border-top: unset;
  border-bottom: 1px solid rgba(102, 112, 147, .2);
}

.topbar ul {
  display: inline-flex;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.topbar .left-topbar ul li {
  display: inline-block;
  border-right: 1px solid rgba(102, 112, 147, .2);
  vertical-align: middle;

}

.topbar .topbar-right ul li {
  display: inline-block;
  border-right: 1px solid rgba(102, 112, 147, .2);
  vertical-align: middle;

}

.topbar .left-topbar ul li span {
  font-size: 15px;
  color: #667093;
  transition: all .4s;
}

.topbar .topbar-right ul li span {
  font-size: 15px;
  color: #667093;
  transition: all .4s;
}

.topbar .left-topbar ul li:hover span {
  color: #081131;
}

.topbar .topbar-right ul li:hover span {
  color: #081131;
}

.topbar ul li {
  padding: 10px 24px;
}

.topbar ul li a {
  display: flex;
}

.topbar ul li i {
  color: #667093;
  font-size: 16px;
  transition: all .4s;
  margin-inline-end: 5px;
}

.topbar .left-topbar ul li:hover i {
  color: #081131;
}

.topbar .topbar-right ul {
  text-align: left !important;
  border-left: 1px solid rgba(102, 112, 147, .2);
}

.topbar .topbar-right ul li {
  display: inline-block;
  text-align: left !important;
  vertical-align: middle;
  border-right: 1px solid rgba(102, 112, 147, .2);
}



.topbar .top-bar-dropdown {
  position: relative;
}

.topbar .dropdown-btn {
  background-color: unset;
  border: unset;
  cursor: pointer;
  font-size: 15px;
  display: flex;
  align-items: center;
  color: #667093;
  position: relative;
  padding: 0;
}

.topbar .dropdown-btn i {
  margin-left: 5px;
  font-size: 12px;
}

.topbar .dropdown-menus {
  display: none;
  position: absolute;
  top: 10px;
  left: 0;
  background-color: #fff;
  border: 0px solid #ccc;
  border-radius: 5px;
  width: max-content;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
  padding: 10px;
  z-index: 9999;
}

.topbar .top-bar-dropdown.account .dropdown-menus {
  width: 200px;
  display: none;
}

.topbar .top-bar-dropdown .dropdown-menus.open {
  display: block;
}

.topbar .dropdown-menus li {
  padding: 8px 15px;
  cursor: pointer;
}

.topbar .dropdown-menus li:last-child {
  border-right: unset;
}

.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) {
  .topbar .top-bar-dropdown .dropdown-btn {
    display: inline-block;
    width: max-content;
    text-align: left;
  }

  .topbar .top-bar-dropdown.open .dropdown-menus {
    display: block;
  }
}

@media(max-width:1199px) {
  .topbar .left-topbar ul li span {
    font-size: 13px;
  }

  .topbar .topbar-right ul li span {
    font-size: 13px;
  }
}

@media(max-width:992px) {
  .topbar .left-topbar ul li span {
    font-size: 0px;
  }

  .topbar .topbar-right ul li span {
    font-size: 0px;
  }

  .topbar .dropdown-btn {
    font-size: 0px;
  }
}

@media(max-width:567px) {
  .topbar ul li {
    padding: 10px 10px;
  }

  .topbar .left-topbar ul li:last-child {
    border-right: unset;
  }
}

/* ----------------------------------------------------------------
    Header
------------------------------------------------------------------- */
.main-header {
  background-color: #fff;
  height: 67px;
  position: relative;
  transition: height .5s ease-in;
}

.header-sticky {
  animation: headerSticky .95s ease forwards;
  position: fixed;
  z-index: 14;
  width: 100%;
  box-shadow: rgba(50, 50, 50, 0.2) 0px 0px 20px 0px;
  transition: transform 100ms ease-in-out, background-color 200ms ease-in-out;
  background-color: rgb(252, 252, 252);
  top: 0;
}

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

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

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

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.main-header.dropdown-open {
  background-color: rgb(252, 252, 252);
}

.main-header .nabbar-nav {
  margin-bottom: 0;
  height: 100%;
}

.main-header .nabbar-nav>.container-lg {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.main-header>.nabbar-nav>.container-lg>.logo-and-navbar {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

.main-header>.nabbar-nav>.container-lg>.logo-and-navbar>.nav-brand {
  display: inline-block;
}

/*
.main-header>.nabbar-nav>.container-lg>.logo-and-navbar>.nav-brand img {
    #max-height: 50px;
}*/


/* Desktop Navigation */
@media (min-width: 992px) {

  .mobile-menu-buttons {
    display: none !important;
  }

  .mobile-menu-header {
    display: none !important;
  }

  .main-header>.nabbar-nav>.container-lg>.logo-and-navbar>.nav-brand {
    margin-inline-end: 32px;
  }

  .main-header .nabbar-nav .mainmenu {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    gap: 32px;
  }

  .main-header .nabbar-nav .mainmenu li {
    position: relative;
  }

  .main-header .nabbar-nav .mainmenu li.megamenu {
    position: inherit;
  }

  .main-header .nabbar-nav .mainmenu>li>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    font-size: 15px;
    white-space: nowrap;
    transition: 0.3s;
    color: rgb(54, 54, 54);
    font-weight: 600;
  }

  .main-header .nabbar-nav .mainmenu>li>a {
    position: relative;
  }

  .main-header .nabbar-nav .mainmenu>li>a.active {
    color: var(--color-main);
  }


  .main-header .nabbar-nav .mainmenu>li>a>span {
    position: relative;
  }

  .main-header .nabbar-nav .mainmenu>li>a>span[data-offer]:after {
    content: attr(data-offer);
    background: rgb(186, 230, 211);
    color: rgb(31, 32, 68);
    font-size: 12px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    padding: 2px 4px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 1px;
    position: absolute;
    top: -15px;
    right: 0;
  }

  .main-header .nabbar-nav .mainmenu li.has-droupdown>a>.dropdown-indicator {
    font-size: 12px;
    line-height: 0;
    margin-inline-start: 5px;
  }

  .main-header .nabbar-nav .mainmenu li.has-droupdown.dropdown-opened>a,
  .main-header .nabbar-nav .mainmenu li:has(.active)>a {
    color: var(--color-main);
  }

  .main-header .nabbar-nav .mainmenu li.has-droupdown.dropdown-opened>a>.dropdown-indicator {
    transform: rotate(-180deg);
  }

  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu {
    display: flex;
    -moz-box-pack: center;
    justify-content: center;
    background-color: rgb(247 249 253);
    border-radius: 0px 0px 50px 50px;
    padding: 32px 0px;
    position: absolute;
    top: 67px;
    left: 0px;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: 200ms ease-in-out;
    z-index: 5;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
  }

  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu.visible {
    visibility: visible;
    pointer-events: unset;
    opacity: 1;
    z-index: 99;
  }

  .main-header .navbar-button,
  .main-header .nabbar-nav .mobile-menu-header {
    display: none;
  }

  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu>div {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
  }

  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu>div {
    max-width: 960px;
  }

  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item {
    list-style: none;
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -.5);
    margin-left: calc(var(--bs-gutter-x) * -.5);
  }

  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y);
  }

  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li+li {
    border-left: 1px solid #f0f0f0;
  }

  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>.new-design-nav-item-logo .heading {
    display: flex;
    flex-direction: row;
    gap: 18px;
  }

  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>.new-design-nav-item-logo .heading span {
    display: block;
    padding: 4px 8px;
    border-radius: 10px;
    width: max-content;
    display: flex;
    -moz-box-align: center;
    align-items: center;
    -moz-box-pack: center;
    justify-content: center;
    white-space: nowrap;
    height: 24px;
    position: relative;
    z-index: 5;
    background-color: rgb(144, 219, 150);
    color: rgb(54, 54, 54);
    font-size: 13px;
  }

  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>.new-design-nav-item-logo .heading span:after {
    content: "";
    position: absolute;
    top: 50%;
    left: -4px;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: rgb(144, 219, 150) transparent transparent transparent;
    transform: translatey(-50%) rotate(90deg);
  }

  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>.new-design-nav-item-logo p {
    color: rgb(124, 144, 170);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 16px;
    padding-bottom: 8px;
    margin-bottom: 0;
  }

  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>.new-design-nav-item-logo a {
    color: var(--color-main);
    display: flex;
    -moz-box-align: center;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    background-size: 0px 1px;
    transition: all 500ms ease;
    padding-bottom: 2px;
    width: fit-content;
  }

  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>.new-design-nav-item-logo a i {
    margin-inline-start: 5px;
    transition: 0.4s ease-in-out;
  }

  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>.new-design-nav-item-logo a:hover {
    background-size: 100% 1px;
  }

  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>.new-design-nav-item-logo a:hover i {
    margin-inline-start: 10px;
  }

  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>p {
    font-style: normal;
    text-transform: capitalize;
    line-height: 16px;
    padding-bottom: 8px;
    padding-left: 16px;
    margin-bottom: 0;

    font-size: 15px;
    font-weight: 500;
    color: rgb(124, 144, 170);
  }

  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
  }

  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>ul>li>a {
    -moz-box-align: center;
    align-items: center;
    background-color: #f7f9fd;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    padding: 16px 32px 16px 16px;
    position: relative;
    text-decoration: none;
    transition: 0.4s ease-in-out;
    width: 100%;
  }

  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>ul>li>a:hover,
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>ul>li>a.active {
    background: #fff;
    box-shadow: 0 0 8px rgb(0 0 0 / 23%);
  }

  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>ul>li>a>.inner {
    display: flex;
    -moz-box-align: center;
    align-items: center;
    gap: 8px;
  }

  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>ul>li>a:after {
    content: '\ea6c';
    right: 10px;
    position: absolute;
    opacity: 0;
    transition: 0.4s ease-in-out;
    transform: translateX(-60%);
    font-family: var(--font-remixicon);
    font-size: 17px;
    color: var(--color-main);
  }

  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>ul>li>a:hover:after {
    opacity: 1;
    transform: translateX(-20%);
  }

  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>ul>li>a>.inner>.icon {
    align-self: start;
  }

  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>ul>li>a>.inner>.icon>.inner {
    -moz-box-align: center;
    align-items: center;
    background-color: #f7f9fd;
    border-radius: 5px;
    height: 45px;
    display: flex;
    -moz-box-pack: center;
    justify-content: center;
    transition: all 0.5s;
    width: 45px;
  }

  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>ul>li>a>.inner>.icon>.inner>i {
    font-size: 24px;
    line-height: 0;
    color: #667093;
    transition: all 0.5s;
  }

  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>ul>li>a:hover>.inner>.icon>.inner,
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>ul>li>a.active>.inner>.icon>.inner {
    background-color: #00abff;
  }

  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>ul>li>a:hover>.inner>.icon>.inner i,
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>ul>li>a.active>.inner>.icon>.inner i {
    color: #fff;
  }

  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>ul>li>a>.inner>.content {
    display: flex;
    gap: 8px;
    flex-direction: column;
  }

  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>ul>li>a>.inner>.content>.headings {
    color: rgb(54, 54, 54);
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
  }

  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>ul>li>a>.inner>.content>.headings>.labels {
    background-color: rgb(186, 230, 211);
    color: rgb(31, 32, 68);
    -moz-box-align: center;
    align-items: center;
    border-radius: 20px;
    display: inline-flex;
    font-size: 12px;
    font-weight: 500;
    -moz-box-pack: center;
    justify-content: center;
    line-height: 16px;
    padding: 2px 10px;
    position: relative;
    width: fit-content;
    text-decoration: none;
    text-transform: uppercase;
  }

  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>ul>li>a>.inner>.content>.subheading {
    color: rgb(124, 144, 170);
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
  }

  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li.megamenu_img {
    display: block;
  }

  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li.megamenu_img .menu-lists {
    display: block;
  }

  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li.megamenu_img .menu-lists h3 {
    font-size: 15px;
    margin: 0;
    font-weight: 500;
    margin-bottom: 15px;
    color: rgb(124, 144, 170);
  }

  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li.megamenu_img .menu-lists p {
    font-size: 16px;
    margin: 0;
    position: relative;
    color: #6c6c6c;
    padding-inline-start: 25px;
  }

  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li.megamenu_img .menu-lists p:before {
    content: "\eb86";
    position: absolute;
    left: 0px;
    top: 3px;
    font-size: 14px;
    font-family: remixicon !important;
    color: var(--color-main);
  }

  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li.megamenu_img .menu-lists p+p {
    margin-top: 10px;
  }


  .main-header .nabbar-nav .mainmenu li.web-off {
    display: none;
  }
}

@media (min-width: 1200px) {
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu>div {
    max-width: 1140px;
  }
}

@media (min-width: 1270px) {
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu>div {
    max-width: 1250px !important;
  }
}




/* Mobile Navigation */

@media (max-width: 991px) {
  .main-header .navbar-button {
    height: auto;
    width: auto;
    text-align: center;
    outline: none;
    border: 0 none;
    padding: 0;
    background: transparent;
    display: block;
    font-size: 25px;
    margin-inline-end: 15px;
  }

  .main-header .mobile-menu-header {
    display: flex;
    border-bottom: 1px solid #eeeeee;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
  }

  .main-header .mobile-menu-header .logo img {
    max-height: 30px;
  }

  .main-header .mobile-menu-header .close-icon .navbar-close {
    border: 0 none;
    width: 40px;
    height: 40px;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    background: #cccccc40;
    line-height: 0;
    border-radius: 0;
  }

  .main-header .header-menu {
    z-index: 9999;
    position: fixed;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    visibility: hidden;
    opacity: 0;
    transition: opacity .5s ease-out;
  }

  .main-header .header-menu.active {
    visibility: visible;
    opacity: 1;
  }

  body:has(.main-header .header-menu.active) {
    overflow: hidden;
  }

  .main-header .header-menu>.inner {
    width: 320px;
    z-index: 999;
    position: absolute;
    background: #FFFFFF;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.06);
    height: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    opacity: 0;
    left: -150px;
    transition: all .5s ease-out;
  }

  .main-header .header-menu.active>.inner {
    opacity: 1;
    left: 0;
    overflow-y: auto;
  }

  .main-header .nabbar-nav .mainmenu {
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }

  .main-header .nabbar-nav .mainmenu>li {
    display: block;
    padding-bottom: 16px;
    border-bottom: 1px solid rgb(246, 246, 249);
  }

  .main-header .nabbar-nav .mainmenu>li>a {
    color: rgb(54, 54, 54);
    text-decoration: none;
    background-color: transparent;
    border: medium;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    line-height: 19px;
    width: 100%;
    text-align: start;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.4s ease-in-out;
  }

  .main-header .nabbar-nav .mainmenu>li>a>span[data-offer]:after {
    content: attr(data-offer);
    background: rgb(186, 230, 211);
    color: rgb(31, 32, 68);
    font-size: 12px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    padding: 2px 4px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 1px;
    position: relative;
    margin-inline-start: 10px;
  }

  .main-header .nabbar-nav .mainmenu>li.has-droupdown>a.open {
    color: var(--color-main);
  }

  .main-header .nabbar-nav .mainmenu>li.has-droupdown>a>.dropdown-indicator {
    font-size: 17px;
    transform: rotate(-90deg);
    transition: 0.4s ease-in-out;
  }

  .main-header .nabbar-nav .mainmenu>li.has-droupdown>a.open>.dropdown-indicator {
    transform: rotate(-180deg);
  }

  .main-header .nabbar-nav .mainmenu>li.has-droupdown .submenu {
    display: none;
  }

  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item {
    list-style: none;
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -.5);
    margin-left: calc(var(--bs-gutter-x) * -.5);
  }

  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: 15px;
  }


  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>p {
    color: rgb(124, 144, 170);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 16px;
    padding-bottom: 8px;
    padding-left: 0;
    margin-bottom: 0;
  }

  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
  }

  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>ul>li>a {
    -moz-box-align: center;
    align-items: center;
    background-color: transparent;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    padding: 10px 0;
    position: relative;
    text-decoration: none;
    transition: 0.4s ease-in-out;
    width: 100%;
  }

  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>ul>li>a>.inner {
    display: flex;
    -moz-box-align: center;
    align-items: center;
    gap: 8px;
  }

  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>ul>li>a>.inner>.icon {
    align-self: start;
  }

  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>ul>li>a>.inner>.icon>.inner {
    -moz-box-align: center;
    align-items: center;
    background-color: rgb(243, 249, 255);
    border-radius: 100px;
    height: 38px;
    display: flex;
    -moz-box-pack: center;
    justify-content: center;
    transition: 0.4s ease-in-out;
    width: 38px;
  }

  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>ul>li>a>.inner>.icon>.inner>i {
    font-size: 20px;
    line-height: 0;
    color: var(--color-main);
  }

  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>ul>li>a>.inner>.content {
    display: flex;
    gap: 8px;
    flex-direction: column;
  }

  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>ul>li>a>.inner>.content>.headings {
    color: rgb(54, 54, 54);
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
  }

  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>ul>li>a>.inner>.content>.headings>.labels {
    background-color: rgb(186, 230, 211);
    color: rgb(31, 32, 68);
    -moz-box-align: center;
    align-items: center;
    border-radius: 20px;
    display: inline-flex;
    font-size: 12px;
    font-weight: 500;
    -moz-box-pack: center;
    justify-content: center;
    line-height: 16px;
    padding: 2px 10px;
    position: relative;
    width: fit-content;
    text-decoration: none;
    text-transform: uppercase;
  }

  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>ul>li>a>.inner>.content>.subheading {
    color: rgb(124, 144, 170);
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
  }

  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li.megamenu_img {
    display: none;
  }

}

@media (min-width:501px) {
  .main-header .nabbar-nav .nav-right-side-bar .btns i {
    display: none;
  }
}

@media (max-width:500px) {
  .main-header .nabbar-nav .nav-right-side-bar .btns {
    padding: 8px 12px;

  }

  .main-header .nabbar-nav .nav-right-side-bar .btns span {
    display: none;
  }

}

/* Header Butonları için Özel Hover Efektleri */
.nav-right-side-bar .btns.three:hover {
  background: #007bff !important;
  border-color: #007bff !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.nav-right-side-bar .btns.one:hover {
  background: #007bff !important;
  border-color: #007bff !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.nav-right-side-bar .btns.two:hover {
  background: linear-gradient(45deg, #0056b3, #0099ff) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}


/* =========================
Footer - (Ana stiller dosya sonunda, 6652+ satır)
========================= */



/* ============================================
Banner
============================================ */
.main-banner {
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

@media (max-width:767px) {
  .main-banner {
    padding: 40px 0;
  }
}

.main-banner .img-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  object-fit: cover;
}

.main-banner .img-up {
  z-index: 2;
  position: relative;
}



.main-banner .inner-content h4 {
  font-size: clamp(17px, 5vw, 20px);
  color: #667093;
}

.main-banner .inner-content.center h4 {
  text-align: center;
}



.main-banner .inner-content h1 {
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.5;
  color: #081131;
  font-weight: 600;
}

.main-banner .inner-content.center h1 {
  text-align: center;
}

.main-banner .inner-content h3 {
  font-size: clamp(17px, 3vw, 20px);
  line-height: 1.5;
  color: #667093;
  margin-top: 10px;
  font-weight: 500;
  margin-bottom: 10px;
}

.main-banner .inner-content.center h3 {
  text-align: center;
}

.main-banner .inner-content h5 {
  font-size: clamp(15px, 5vw, 17px);
  line-height: 30px;
  color: #667093;
}

.main-banner .inner-content.center h5 {
  text-align: center;
}


.main-banner .inner-content p {
  font-size: clamp(13px, 4vw, 16px);
  line-height: 1.7;
  margin-top: 10px;
  color: #667093;
  margin-bottom: 0;
}

.main-banner .inner-content.center p {
  text-align: center;
}


.home-banner-swiper .swiper-slide {
  height: auto;
}

.home-banner-swiper .swiper-slide .main-banner {
  height: 100%;
}

.home-banner-swiper .swiper-pagination span.swiper-pagination-bullet {
  width: 50px;
  height: 7px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.home-banner-swiper .swiper-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--color-main);
}

.inner-content .top-heading {
  display: block;
  font-size: 16px;
  color: #667093;
  line-height: 20px;
  font-weight: 600;
}

.inner-content.center .top-heading {
  text-align: center;
}

.banner-list.icon {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}

.banner-list.icon li {
  width: 50%;
  color: var(--color-white);
}

.banner-list.icon li {
  width: 50%;
  display: flex;
  align-items: center;
}

.banner-list.icon li:nth-child(-n+2) {
  margin-bottom: 10px;
}

.banner-list.icon li i {
  line-height: 40px;
  width: 40px;
  text-align: center !important;
  font-size: 24px;
  border-radius: 4px;
  color: var(--color-main);
  background: rgb(211, 244, 255);
}

@media(max-width:567px) {
  .banner-list.icon li {
    width: 100%;
  }

  .banner-list.icon li {
    margin-bottom: 10px;
  }

  .banner-list.icon li:last-child {
    margin-bottom: 0px;
  }
}

/* Tabs Slider */
.dot-slider {
  border-top: 1px solid rgba(102, 112, 147, .2);
  border-bottom: 1px solid rgba(102, 112, 147, .2);
}

.dot-slider .container {
  padding: 0;
  overflow: auto;
}

.dot-slider .container ul {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.dot-slider .container ul li {
  position: relative;
  display: table-cell;
  vertical-align: middle;
  border-left: 1px solid rgba(102, 112, 147, .2);
  text-align: center !important;
  cursor: pointer;
  padding: 28px 14px;
  -moz-transition-duration: .3s;
  -o-transition-duration: .3s;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  -moz-transition-timing-function: ease-in;
  -o-transition-timing-function: ease-in;
  -webkit-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
  color: #667093;
}

.dot-slider .container ul li:first-child {
  border-left: none;
}

.dot-slider .container ul li::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(255.4deg, #00bcff 1.6%, #3498db 98.62%);
  opacity: 0;
  -moz-transition-duration: .3s;
  -o-transition-duration: .3s;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  -moz-transition-timing-function: ease-in;
  -o-transition-timing-function: ease-in;
  -webkit-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
}

.dot-slider .container ul li>* {
  position: relative;
  padding-left: 32px;
  font-size: 16px;
  z-index: 3;
  font-weight: 400 !important;
  display: inline-block;
  text-align: left !important;

}

.dot-slider .container ul li>* i {
  position: absolute;
  left: 0;
  top: 50%;
  line-height: 0;
  font-size: 24px;
  -moz-transition-duration: .3s;
  -o-transition-duration: .3s;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  -moz-transition-timing-function: ease-in;
  -o-transition-timing-function: ease-in;
  -webkit-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
}

.dot-slider .container ul li.active {
  color: #ffffff;
}

.dot-slider .container ul li.active::before {
  opacity: 1;
}

@media (max-width:767px) {
  .dot-slider .container ul {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    margin: 0;
  }

  .dot-slider .container ul li {
    flex: 0 0 50%;
    width: 50%;
    border-top: 1px solid rgba(102, 112, 147, .2);
  }

  .dot-slider .container ul li:nth-child(3) {
    border-left: 0;
  }
}

/* ============================
Section gap
============================ */
.section-gap {
  position: relative;
  padding: 40px 0;
}

.section-gap.pt-20 {
  padding-top: 20px;
}

.bg1 {
  background: #f4faff;
}

.bg2 {
  background: #E5F5FF;
}

.bg3 {
  background: #F7F7FF;
}

/* ----------------------------------------------------------------
    Section Header
------------------------------------------------------------------- */
.section-header {
  position: relative;
}

.section-header.gap-bottom {
  margin-bottom: 30px;
}

.section-header h4 {
  font-size: clamp(16px, 5vw, 24px);
  font-weight: 500;
  margin-bottom: 10px;
  text-transform: none;
  color: #fff6;
  display: block;
}

.section-header h4.color-one {
  color: var(--color-main);
}

.section-header h4.color-two {
  color: var(--color-main-two);
}

.section-header.center h4 {
  text-align: center;
}

.section-header h2 {
  font-size: clamp(28px, 5vw, 35px);
  font-weight: 700;
  line-height: 1.4;
  display: block;
  color: #081131;
}

.section-header h2 span.color-one {
  color: var(--color-main);
}

.section-header.center h2 {
  text-align: center;
}

.section-header p {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.section-header.center p {
  text-align: center;
}

.section-header.white h4,
.section-header.white h2,
.section-header.white p {
  color: #fff;
}

/* ================================
    Plan Section
  ================================ */

.swiper-plans {
  padding: 10px 0;
  padding-bottom: 30px;
}

.plans-design-one {
  padding: 24px;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.plans-design-one:hover {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-color: var(--color-main);
}

.plans-design-one:hover .btns.three {
  border-color: var(--color-main);
  background-color: var(--color-main);
  color: #fff;
}

.plans-design-one .icon {
  display: block;
  margin: auto;
  opacity: 0.5;
  margin-bottom: 12px;
}

.plans-design-one h3 {
  margin: 0;
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 500;
  color: var(--color-main);
  line-height: 25px;
  text-align: center;

}

.plans-design-one p {
  display: block;
  font-size: 13px;
  font-weight: 400 !important;
  text-align: center;
  margin: 0;
}

.plans-design-one h6 {
  display: block;
  font-size: 16px;
  text-align: center;
  margin: 0;
  margin-top: 15px;
  color: #667093;
}

.plans-design-one h4 {
  font-size: clamp(30px, 4vw, 35px);
  margin-top: 16px;
  color: #081131;
  margin-bottom: 0;
  font-weight: 800;
  display: block;
  text-align: center;
  position: relative;
}

.plans-design-one h4 .badge-plan {
  left: 0;
  line-height: 18px;
  top: -10px;
  background-color: var(--color-main-two);
  display: inline-block;
  pointer-events: none;
  animation: 1.5s linear infinite blinker;
  transform: translateX(-10%);
}

.plans-design-one h4 sup {
  font-size: 60%;
  font-weight: 400;
}

.plans-design-one h4 small {
  font-size: 40%;
  font-weight: 400;
}

.plans-design-one .btns {
  width: 100%;
  margin-top: 20px;
}

.plans-design-one ul {
  margin: 0;
  padding: 0;
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid var(--border-color);
  list-style: none;
}

.plans-design-one ul li {
  position: relative;
  font-size: 16px;
  color: #081131;
  padding-left: 36px;
  line-height: 24px;
}

.plans-design-one ul li+li {
  margin-top: 12px;
}

.plans-design-one ul li i {
  position: absolute;
  left: 0;
  top: 50%;
  line-height: 0;
  font-size: 21px;
  opacity: 0.7;
}


.swiper-plans .swiper-pagination {
  bottom: 0px;
}


.swiper-plans .swiper-pagination span.swiper-pagination-bullet {
  width: 50px;
  height: 7px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.swiper-plans .swiper-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--color-main);
}


.plans-design-two {
  padding: 13px;
  background-color: #efeff9;
  border-radius: 10px;
}

.plans-design-two .pricing-title {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 10px;
}

.plans-design-two.pro .pricing-title {
  background-color: #0013ff1a;
}

.plans-design-two .pricing-title span {
  background-color: #121fbf;
  padding: 4px 16px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  display: inline-block;
  color: #ffffff;
}

.offer-two {
  background-color: #121fbf;
  padding: 4px 16px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  display: inline-block;
  color: #ffffff;
}

.plans-design-two .pricing-title h5 {
  font-size: 1.25rem;
  font-weight: 600;
}

.plans-design-two .pricing-title p {
  font-size: 14px;
  font-weight: 400;
}

.plans-design-two .pricing-features {
  display: flex;
  flex-wrap: wrap;
}

.plans-design-two .pricing-features li {
  width: 50%;
  display: block;
  position: relative;
  padding-inline-start: 29px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

@media (max-width:992px) {
  .plans-design-two .pricing-features li {
    width: 100%;
  }
}



.plans-design-two .pricing-features li:after {
  content: '\F26E';
  position: absolute;
  top: 0px;
  left: 0;
  font-size: 24px;
  color: rgb(18 31 191);
  font-family: var(--font-bootstrap-icons);
  line-height: 1;
}

.plans-design-two .pricing-amount {
  padding-inline-start: 40px;
  border-inline-start: 1px solid rgba(0, 16, 66, .1);
}

@media (max-width:992px) {
  .plans-design-two .pricing-amount {
    padding-inline-start: calc(var(--bs-gutter-x) * .5);
    padding-top: 20px;
    border-inline-start: unset;
    border-top: 1px solid rgba(0, 16, 66, .1);
  }
}

.plans-design-two .pricing-amount h3 {
  font-size: 1.875em;
  font-weight: 600;
}

.plans-design-two .pricing-amount p {
  font-size: 14px;
  font-weight: 400;
}


.plans-design-three {
  background-color: #ffffff;
  border-radius: 5px;
  box-shadow: 0px 4px 20px rgba(0, 2, 20, 0.14);
  padding: 20px 8px 28px 8px;
  margin-top: 24px;
}

.plan-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
}

.plan-head .label {
  display: inline-block;
  background: #0568ea;
  border-radius: 4px;
  font-size: 14px;
  font-family: "ProximaNova-SemiBold", sans-serif;
  padding: 2px 8px 0px 8px;
  color: #fff;
  line-height: 20px;
}

.plans-design-three h3 {
  font-size: 24px;
  line-height: 30px;
}

.plans-design-three ul {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.plans-design-three ul li {
  font-size: 15px;
  line-height: 24px;
  color: #4c575e;
}

.was-price {
  text-decoration: line-through;
  opacity: 0.68;
  display: block;
}

@media(max-width:991px) {
  .plans-design-three ul {
    display: flex;
    align-items: start;
    flex-wrap: wrap;
  }

  .plans-design-three ul li {
    width: 50%;
    margin-bottom: 20px;
  }

  .plans-design-three ul li:last-child {
    width: 100%;
    margin-bottom: 0px;
  }
}

@media(max-width:480px) {
  .plans-design-three ul li {
    text-align: center;
  }

  .plans-design-three ul li img {
    display: block;
    margin: auto;
  }

  .plans-design-three ul li {
    width: 50%;
  }
}

/* ================
Icon Box
================ */

.icon-box {
  text-align: center;
  padding: 0 30px;
}

.icon-box img {
  display: block;
  margin: auto;
  margin-bottom: 20px;
}

.icon-box h3 {
  font-size: 18px;
  color: #081131;
  margin: 0;
  margin-bottom: 10px;
}

.icon-box p {
  font-size: 14px;
  margin: 0;
  color: #7c7c80;
  line-height: 1.7;
}

/* ========================
Homepage Domain Form
======================== */


.homepage-domain-search .homepage-domain-form {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 0;
  max-width: 100%;
  justify-content: space-between;
}

.homepage-domain-search .homepage-domain-form input[type="text"] {
  border-radius: 10px;
  border: 1px solid #e1e1e1;
  background: #fff;
  height: 60px;
  padding: 15px 25px;
  flex: 1;
  width: 100%;
  max-width: 918px;
  margin-right: 10px;
  color: #655e5e !important;
  outline: unset;
}


.homepage-domain-search .homepage-domain-form .submit {
  max-width: 250px;
  width: 100%;
}

@media (max-width:1200px) {
  .homepage-domain-search .homepage-domain-form .submit {
    max-width: 200px;
  }
}

@media (max-width:767px) {
  .homepage-domain-search .homepage-domain-form input[type="text"] {
    width: 100%;
    flex: unset;
    height: 48px;
    margin: 0;
  }

  .homepage-domain-search .homepage-domain-form .submit {
    max-width: 156px;
    margin: auto;
    margin-top: 15px;
  }
}

@media (max-width:575px) {
  .homepage-domain-search .homepage-domain-form {
    padding: 25px 15px;
  }
}


.homepage-domain-search .domain-lists {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  width: 900px;
  margin: auto;
  max-width: 100%;
}

.homepage-domain-search .domain-lists li {
  display: inline-block;
  padding: 12px 10px;
  font-size: 16px;
  border: 1px solid #e1e1e1;
  border-radius: 12px;
  margin-bottom: 10px;
  text-align: center;
  background: #fff;
}

.homepage-domain-search .domain-lists li img {
  max-height: 40px;
}

.homepage-domain-search .domain-lists li .price {
  display: block;
  background: #e1edff91;
  padding: 4px 60px;
  border-radius: 18px;
  font-size: 15px;
  margin-top: 5px;
  color: #081131;
}

@media (max-width:767px) {
  .homepage-domain-search .domain-lists li .price {
    padding: 4px 40px;
  }
}



/* ===================
Services
=================== */

.service-one {
  display: flex;
}

.service-one .icon {
  margin-inline-end: 20px;
}

.service-one .icon img {
  min-width: 50px;
  width: 50px;
}

.service-one .content h4 {
  font-size: 20px;
  color: #081131;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-one .content p {
  margin: 0 auto;
  margin-bottom: 0px;
  margin-bottom: 0px;
  font-size: 15px;
  line-height: 1.5 !important;
  color: #7c7c80;
  font-weight: 400;
  margin-bottom: 0;
}


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

.service-two .icon img {
  min-width: 50px;
  width: 50px;
}

.service-two .content h4 {
  font-size: 20px;
  color: #081131;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-two .content p {
  margin: 0 auto;
  margin-bottom: 0px;
  margin-bottom: 0px;
  font-size: 15px;
  line-height: 1.5 !important;
  color: #7c7c80;
  font-weight: 400;
  margin-bottom: 0;
}


.service-three {
  border: 1px solid rgba(102, 112, 147, .2);
  border-radius: 8px;
  padding: 24px;
  height: 100%;
  transition: all .4s;
}

.service-three:hover {
  border-color: transparent;
  box-shadow: 0 10px 48px rgb(0 0 0 / 15%);
}

.service-three .icon {
  margin-bottom: 10px;
}

.service-three .icon img {
  width: 64px;
  min-width: 64px;
}

.service-three h4 {
  display: block;
  color: #081131;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500 !important;
}

.service-three .content h4 i {
  color: var(--color-main-two);
  font-size: 20px;
}

/* ----------------------------------------------------------------
    09. Call Back Section Css
------------------------------------------------------------------- */
.call-back {
  background-color: #000;
  background-image: url(../images/black_bg_bar.jpg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 8px;
  margin-bottom: 0px;
}

.call-back .inner {
  padding-left: 5%;
  padding-right: 5%;
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
  padding-bottom: 60px;
  padding-top: 60px;
}

@media (max-width:767px) {
  .call-back {
    margin-bottom: 0px;
  }

  .call-back .inner {
    padding-bottom: 40px;
    padding-top: 40px;
  }
}




.plan-description {
  text-align: center;
  padding: 20px 40px;
  height: 100%;
}

.plan-description h4 {
  display: block;
  font-size: 22px;
  font-weight: 600;
  color: #081131;
  margin-top: 20px;
}

.border-topbottom {
  border-bottom: 1px solid;
  border-top: 1px solid;
  border-color: rgba(102, 112, 147, .2);
}

.border-bottom {
  border-bottom: 1px solid;
  border-color: rgba(102, 112, 147, .2);
}

.border-right {
  border-right: 1px solid;
  border-color: rgba(102, 112, 147, .2);
}

@media(max-width:992px) {
  .border-topbottom {
    border-bottom: unset;
    border-top: unset;
    border-color: unset;
  }

  .border-bottom {
    border-bottom: unset;
    border-color: unset;
  }

  .border-right {
    border-right: unset;
    border-color: unset;
  }
}

.list-check li {
  line-height: 30px;
  font-size: 15px;
  font-weight: 400;
  display: flex;
  align-items: start;
  gap: 5px;
}

.list-check li::before {
  content: "\F309";
  font-family: bootstrap-icons;
  font-size: 20px;
  color: #ff695a;
}

.support .icon img {
  min-width: 50px;
  width: 50px;
}

.support .content {
  font-size: 15px;
  line-height: 1.5 !important;
  color: #7c7c80;
  font-weight: 400;
  margin-top: 10px;
  display: block;
}

.support ul {
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 50px;
}

/* ===================
Testimonial
=================== */
.testimonial-card {
  border-radius: 10px;
  border: 1px solid #eeeeef;
  padding: 20px 20px;
  position: relative;
  overflow: hidden;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.testimonial-card::after {
  content: '\F6B0';
  position: absolute;
  color: #7c7c80;
  font-size: 50px;
  font-family: bootstrap-icons;
  top: 15px;
  right: 20px;
  line-height: 44px;
  opacity: 0.1;
  rotate: 180deg;
}

.testimonial-card .about-author {
  margin-bottom: 15px;
}

.testimonial-card .about-author .author-name {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #081131;
  margin: 0;
  text-transform: capitalize;
}

.testimonial-card .author-post {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #7c7c80;
  margin: 0;
  margin-top: 5px;
  text-transform: capitalize;
}

.testimonial-card .detail {
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: #555;
  margin: 0;
}

.testimonial-card .customer {
  height: auto;
  display: flex;
  flex-flow: wrap;
  align-items: center;
  gap: 20px;
}

.testimonial-card .customer img {
  border-radius: 50%;
}

.testimonial-card .star ul {
  display: flex;
  align-items: center;
  gap: 2px;
}

.testimonial-card .star ul li i {
  color: #ff7163;
}

.testimonial-card .star p {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.swiper-testimonial {
  padding-bottom: 30px;
}

.swiper-testimonial .swiper-pagination {
  bottom: 0px;
}


.swiper-testimonial .swiper-pagination span.swiper-pagination-bullet {
  width: 50px;
  height: 7px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.swiper-testimonial .swiper-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--color-main);
}


/* ===================
Accordion
=================== */

.accordion {
  list-style: none;
  margin: 20px auto;
  overflow: hidden;
}

.accordion li {
  border-bottom: 1px solid #ddd;
  padding: 15px 10px;
  cursor: pointer;
  transition: background 0.3s;
  position: relative;
  align-items: center;
  padding-left: 30px;
  transition: all .4s;
}

.accordion li::before {
  content: '+';
  position: absolute;
  left: 0;
  right: 0;
  font-size: 20px;
  transition: all .4s;
  line-height: 18px;
}

.accordion li.active::before {
  content: '-';
  position: absolute;
}

.accordion li h5 {
  margin: 0;
  font-size: 18px;
}

.accordion li p {
  display: none;
  padding: 10px 0;
  margin: 0;
  color: #555;
  font-size: 15px;
  letter-spacing: 0.5px;
}


/*  =============tabbing css start=============*/
.tab-section {
  padding: 40px 0;
}

.tab-buttons {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.tab-btn {
  font-size: 14px;
  color: #4f5964;
  border: 2px solid #dce6fe !important;
  font-weight: 500;
  border: 0;
  padding: 10px 20px;
  border-radius: 6px;
  background: unset;
}

.tab-btn.active {
  color: #6c757d;
  background-color: #f0f4ff;
  border: 0;
}

.tab-content-section {
  border-radius: 10px;
}

.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=============*/

/*  =============How it works css start=============*/
.how-it-works {
  background: url('../images/step-arrows.png') top center no-repeat;
  background-size: contain;
}

.how-it-works-card {
  text-align: center;
}

.how-it-works .icon {
  background: #fff;
  height: 88px;
  width: 88px;
  text-align: center;
  border-radius: 50%;
  position: relative;
  padding-top: 22px;
  margin: 0 auto;
  margin-bottom: 24px;
}

.how-it-works .icon img {
  width: 44px;
  min-width: 44px;
}

.how-it-works .icon .step {
  background: #ff695a;
  box-shadow: inset 0px -2px 0px rgba(0, 0, 0, 0.16);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  line-height: 32px;
  color: #fff;
  font-family: "ProximaNova-Bold", sans-serif;
  position: absolute;
  top: -8px;
  right: -12px;
}

.how-it-works h4 {
  font-size: 20px;
  line-height: 28px;
  color: #fff;
}

.how-it-works p {
  color: #fff;
}

@media(max-width:992px) {
  .how-it-works {
    background: unset;
  }
}

/*  =============How it works css end=============*/

/*  =============About us css start=============*/
.about-us-features {
  padding-left: 0px;
  padding-top: 0px;
}

.about-us-features ul {
  padding-top: 88px;
  border-left: 2px solid #e5e8ec;
}

.about-us-features ul li {
  position: relative;
  padding-left: 36px;
  padding-bottom: 50px;
}

.about-us-features ul li:last-child {
  position: relative;
  padding-bottom: 0px;
}

.about-us-features ul li strong:before {
  background: url('../images/timeline-pin.webp') no-repeat;
  width: 26px;
  height: 26px;
  content: " ";
  display: block;
  position: absolute;
  top: -2px;
  left: -14px;
}


.about-us-features ul li strong:hover:before {
  background: url('../images/timeline-pin-hover.webp') no-repeat;
}

.about-us-features ul li strong.active:before,
.about-us-features ul li strong.active:hover:before {
  background: url('../images/timeline-pin-active.webp') no-repeat;
}

.about-us-features ul li strong {
  display: inline-block;
  background: url('../images/timeline-down.webp') center right no-repeat;
  padding-right: 18px;
  color: rgba(76, 87, 94, 0.8);
  cursor: pointer;
}

.about-us-features ul li strong:hover {
  background: url('../images/timeline-hover.webp') center right no-repeat;
  color: #c01414;
}

.about-us-features ul li strong.active {
  color: #c01414;
  background: url('../images/timeline-up.webp') center right no-repeat;
}

.about-us-features ul li p {
  display: none;
  padding-top: 8px;
  padding-bottom: 0px;
  padding-right: 0%;
}

.year {
  position: absolute;
  top: 0px;
  left: -68px;
  text-align: right;
}

.content.about-us {
  color: #ff695a;
  font-family: 15px;
  font-weight: 600;
}

@media(max-width:992px) {
  .year {
    position: unset;
    margin-inline-end: 20px;
  }

  .about-us-features ul {
    padding-top: 0px;
    border-left: 2px solid #e5e8ec;
  }
}

/*  =============About us css end=============*/
/*  =============contact us css start=============*/

.contact-banner {
  padding: 45px 0px;
  background: url(../asset/img/bg/hizmet-sozlesmesi-banner.svg) center center / cover no-repeat;
}

.contact-banner .inner-content h1 {
  color: #fff;
}

.contact-us {
  background: var(--color-white);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  border-radius: 10px;
}


.contact-us h4 {
  font-size: 27px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 10px;
  text-align: center;
}

.contact-us p {
  text-align: center;
}

.contact-us .open_ticket .iagree {
  text-align: start;
}

.frm-label-checkbox-field {
  display: flex;
  align-items: center;
  gap: 10px;
}


.feature-style-one-icon {
  width: fit-content;
  height: auto;
  position: relative;
  margin: auto;
  border-radius: 50%;
  transition: all 0.5s ease 0s;
  padding: 15px;
  background-color: var(--color-main-hover);
}

.feature-style-one-icon svg {
  width: 45px;
  height: 45px;
  fill: #fff;
  transition: 0.5s all;
}

.contact-us .inputs {
  display: block;
  width: 100%;
  padding: .375rem .75rem !important;
  font-size: 1rem !important;
  line-height: 1.5 !important;
  background-color: var(--color-white);
  background-clip: padding-box;
  border: 2px solid;
  border-radius: 5px !important;
}

.contact-us .inputs:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25);
}

/*  =============contact us css end=============*/
/*  =============policy tabbing css start=============*/

.tabings {
  width: 100%;
  display: flex;
  justify-content: center;
}

.tabings .tabs {
  width: fit-content;
  display: flex;
  flex-direction: row;
}

@media (max-width:767px) {
  .tabings .tabs {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.tabings .tabs .tabbutton {
  padding: 13px 20px;
  color: #0568ea;
  border: 1px solid;
  border-color: #0568ea;
  margin-bottom: 10px;
  border-radius: 0px;
  text-align: left;
  font-size: 17px;
  display: flex;
  align-items: center;
  background-color: #fff;
}

.tabings .tabs .tabbutton.active {
  background-color: #0568ea;
  color: #fff;
}

@media(min-width:767px) {

  .tabings .tabs.roundness .tabbutton:first-child {
    border-radius: 4px 0px 0px 4px;
  }

  .tabings .tabs.roundness .tabbutton:last-child {
    border-radius: 0px 4px 4px 0px;
  }
}

@media (max-width:767px) {
  .tabings .tabs.roundness .tabbutton {
    width: 50%;
  }
}

@media (max-width:430px) {
  .tabings .tabs.roundness .tabbutton {
    width: 100%;
  }
}

.tabings .tabs .tabbutton i {
  margin-right: 10px;
}

[dir="rtl"] .tabings .tabs .tabbutton i {
  margin-right: unset;
  margin-left: 10px;

}


.tabings .tabs.column-type {
  flex-direction: column;
}

.tabings .tabs.column-type .tabbutton {
  padding: 13px 20px;
  color: #0568ea;
  border: 1px solid;
  border-color: #0568ea;
  margin-bottom: 0;
  border-radius: 4px;
  text-align: left;
  font-size: 17px;
  display: flex;
  align-items: center;
  background-color: #fff;
  border-bottom: 0;
  border-radius: 0;
  width: 100%;
}

.tabings select {
  padding: 13px 20px;
  color: #0568ea;
  border: 1px solid;
  border-color: #0568ea;
  margin-bottom: 0;
  border-radius: 4px;
  text-align: left;
  font-size: 17px;
  display: flex;
  align-items: center;
  background-color: #fff;
  width: 100%;
  margin-bottom: 20px;
}

.tabings .tabs.column-type .tabbutton:last-child {
  border-bottom: 1px solid;
}

.tabings .tabs.column-type .tabbutton i {
  margin-right: 10px;
}

.tabings .tabs.column-type .tabbutton.active i {
  color: #fff;
}

[dir="rtl"] .tabings .tabs.column-type .tabbutton i {
  margin-right: unset;
  margin-left: 10px;

}


.tabings .tabs.column-type .tabbutton.active {
  font-weight: 500;
  color: #fff;
  background: linear-gradient(255.4deg, #0568ea 1.6%, #46c9ce 98.62%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.tabings .tabs.column-type .tabbutton.active {
  line-height: 56px;
  display: block;
  padding: 0 15px;
  font-size: 16px;
  border: 0;
  position: relative;
  color: #262936;
}

.tabings .tabs.column-type .tabbutton.active::after {
  content: '';
  display: block;
  position: absolute;
  right: -20px;
  bottom: 16px;
  width: 0;
  height: 0;
  border-bottom: 10px solid transparent;
  border-top: 10px solid transparent;
  border-left: 10px solid #0568ea;
  border-right: 10px solid transparent;
}

.tabscontents {
  display: none;
}

.tabscontents.active {
  display: block;
}

.border {
  border: var(--bs-border-width) var(--bs-border-style) #0568ea !important;
}

@media (min-width: 768px) {
  .tab-select {
    display: none;
  }
}

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

/*  =============policy tabbing css end=============*/
/*  =============server-hosting-form Start=============*/

.server-hosting-form {
  padding: 50px;
}

.server-hosting-form .inputs {
  border: 1px solid #d3d5d8;
  color: #262936;
  display: block;
  width: 100%;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: 400;
  border-radius: 5px;
  background: unset;
  line-height: initial;
}

.server-hosting-form label {
  font-size: 15px;
  color: #a0a2a2;
  font-weight: 500;
  margin-bottom: 8px;
}

@media(max-width:480px) {
  .server-hosting-form {
    padding: 15px;
  }
}

/*  =============server-hosting-form end=============*/

/* -------------Login-Register Page----------------------- */
.login-page {
  text-align: center;
}


.login-content {
  text-align: center;
  padding-top: 30px;
  height: 100vh;
}

.login-form {
  padding: 30px;
  border: 1px solid #63666959;
  border-radius: 8px 8px 0px 0px;
  margin-top: 20px;
  max-height: 400px;
  overflow: auto;
}

.login-form .inputs {
  display: block;
  padding: 12px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid #63666959;
}

.login-content span {
  font-size: 12px;
  margin-top: 5px;
  font-weight: 400;
}

.login-content span label {
  border-bottom: 2px solid #0fbd91;
}

.login-form h4 {
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 30px;
}

.login-form label {
  font-size: 16px;
  font-weight: 400;
  color: #6f737d;
  margin-bottom: 4px;
  display: block;
}

.pwrest {
  display: flex;
  justify-content: space-between;
}

.login_footer {
  padding: 20px;
  border-left: 1px solid #63666959;
  border-right: 1px solid #63666959;
  border-bottom: 1px solid #63666959;
  border-radius: 0px 0px 8px 8px;
}

.login_footer span {
  font-size: 16px;
}

.login-sidebar {
  height: 100vh;
  display: flex;
  align-items: center;
  background: #002143;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  background: url(../asset/img/bg/datacentergalaxy.jpg) no-repeat center center / cover;
}

@media(max-width:991px) {
  .login-sidebar {
    height: auto;
    padding-bottom: 50px;
  }
}

.feature-style-4.bordered {
  padding: 20px;
  background: #ffffffb5;
  border-radius: 8px;
  height: 100%;
}

.bg-primary {
  background: #002143 !important;
}

.login-sidebar h4 {
  font-size: 20px;
  font-weight: 500;
}

.login-sidebar .feature-style-4 p {
  font-size: 15px;
  font-weight: 400;
}

/* -------------Login-Register-css end----------------------- */
/* ================= Dedicated Server Plan =============== */

.dedicated-server-plan {
  display: block;
}

/* .dedicated-server-plan table {
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
} */
.dedicated-server-plan table thead {
  background: -moz-linear-gradient(20deg, #066aec 0%, #000b33 80%);
}

@media (min-width:992px) {
  .dedicated-server-plan table {
    table-layout: fixed;
  }

  .dedicated-server-plan table tbody tr td.price-td span {
    display: none;
  }

  /* .dedicated-server-plan table tbody tr{
    border-radius: 0 0 5px 5px;
    -webkit-border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    -ms-border-radius: 0 0 5px 5px;
    -o-border-radius: 0 0 5px 5px;
}
  .dedicated-server-plan table tbody tr:last-child td:first-child{
    border-radius: 0 0 0 5px;
    -webkit-border-radius: 0 0 0 5px;
    -moz-border-radius: 0 0 0 5px;
    -ms-border-radius: 0 0 0 5px;
    -o-border-radius: 0 0 0 5px;
}
.dedicated-server-plan table tbody tr:last-child td:last-child{
  border-radius: 0 0 5px 0;
  -webkit-border-radius: 0 0 5px 0;
  -moz-border-radius: 0 0 5px 0;
  -ms-border-radius: 0 0 5px 0;
  -o-border-radius: 0 0 5px 0;
} */
}

.dedicated-server-plan table thead {
  border: 0;
}

.dedicated-server-plan table thead th {
  border: 0;
  color: #fff;
  font-size: 16px;
  padding: 20px;
  text-align: center;
  background: transparent;
  border: 0;
}

.dedicated-server-plan table thead .bg-none th {
  border: 0;
  color: #fff;
  font-size: 16px;
  padding: 10px;
  text-align: center;
  background: transparent;
  border: 0;
}

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

.dedicated-server-plan table thead .bg-secondary th {
  border: 0;
  color: #fff;
  font-size: 16px;
  padding: 2px;
  text-align: center;
  background: transparent;
  border: 0;
}

.dedicated-server-plan table thead .bg-none {
  height: 20px;
  background-color: #ffffff;
}

.dedicated-server-plan table thead th:first-child {
  border-radius: 5px 0 0 0;
  -webkit-border-radius: 5px 0 0 0;
  -moz-border-radius: 5px 0 0 0;
  -ms-border-radius: 5px 0 0 0;
  -o-border-radius: 5px 0 0 0;
}

.dedicated-server-plan table thead th:last-child {
  border-radius: 0px 5px 0 0;
  -webkit-border-radius: 0px 5px 0 0;
  -moz-border-radius: 0px 5px 0 0;
  -ms-border-radius: 0px 5px 0 0;
  -o-border-radius: 0px 5px 0 0;
}



.dedicated-server-plan table tbody tr td {
  vertical-align: middle;
  border-top: 1px var(--bs-border-color);
  font-size: 14px;
  padding: 15px 15px;
  color: #777;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  text-align: center;
}

.dedicated-server-plan table tbody tr:hover td {
  background: var(--color-main-hover);
  color: #fff;
  border-color: var(--color-main-hover);
}

.dedicated-server-plan table tbody tr:first-child td {
  border-top: 1px solid var(--bs-border-color);
}

.dedicated-server-plan table tbody tr:hover:first-child td {
  border-top: unset;
}


.dedicated-server-plan table tbody tr td:first-child {
  border-left: 1px solid var(--bs-border-color);
}

.dedicated-server-plan table tbody tr td:last-child {
  border-right: 1px solid var(--bs-border-color);
}

.dedicated-server-plan table tbody tr:hover td:first-child {
  border-left: 1px solid var(--color-main-hover);

}

.dedicated-server-plan table tbody tr:hover td:last-child {
  border-right: 1px solid var(--color-main-hover);

}

.dedicated-server-plan table tbody tr td.price-td {
  text-align: center;
}

.dedicated-server-plan table tbody tr td:last-child {
  text-align: center;
}

.dedicated-server-plan table tbody tr td:last-child a {
  padding: 8px 25px;
  font-size: 14px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  margin: auto;
  color: var(--white);
}

.dedicated-server-plan table tbody tr:hover td:last-child a {
  background: linear-gradient(to right, #000b33 0%, #0568ea 100%) !important;
  border: unset;
}

.dedicated-server-plan table tbody tr {
  transition: transform 0.3s ease-in-out;
  /* Smooth effect */
}

.dedicated-server-plan table tbody tr:hover {
  transform: scale(1.01);
  /* Expands row by 5% on all sides */
}


@media (max-width:991px) {
  .dedicated-server-plan table thead {
    display: none;
  }

  .dedicated-server-plan table tbody tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: 4px;
    width: 45%;
    float: left;
    margin: 0 15px 28px 15px;
    text-align: left;
    background: #fafafa;
  }

  .dedicated-server-plan table tbody tr td {
    text-align: left;
    background: transparent;
    border: 0 !important;
    border-bottom: 1px solid var(--bs-border-color) !important;
    display: flex;
    align-items: center;
    padding: 12px 15px;
  }

  .dedicated-server-plan table tbody tr td:last-child {
    border-bottom: 0 !important;
  }

  .dedicated-server-plan table tbody tr td.price-td {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    justify-content: center;
  }

  .dedicated-server-plan table tbody tr td.price-td span {
    font-size: 14px;
    font-weight: 500;
  }

  .dedicated-server-plan table tbody tr td[data-value]:before {
    content: attr(data-value);
    transition: all .3s ease;
    display: block;
    width: 45%;
    font-weight: 600;
    font-size: 16px;
  }

  .dedicated-server-plan table tbody tr td:last-child a {
    padding: 8px 20px;
  }
}

@media (max-width: 767px) {
  .dedicated-server-plan table tbody tr {
    width: 100%;
    margin: 0;
    margin-bottom: 15px;
  }

  .dedicated-server-plan table tbody tr:last-child {
    margin-bottom: 0;
  }
}


/* 
============================
  Vps Server Plan
============================ */
.vps-plan-design {
  display: block;
  border-radius: 10px;
  padding: 48px 54px 45px;
  -webkit-border-radius: 10px 10px 0px 0px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border: 1px solid #282828;
  user-select: none;
  border-bottom: 0;
}

.vps-plan-design .price-slides {
  position: relative;
  margin-top: 20px;
}

.vps-plan-design .price-slides .bar {
  background-color: #ecebeb;
  border-radius: 9999px;
  width: 100%;
  height: 16px;
}

.vps-plan-design .price-slides .bar .bar-in {
  background: var(--color-main);
  border-radius: 9999px;
  height: 16px;
  position: relative;
}

.vps-plan-design .price-slides .bar .bar-in::after {
  content: '';
  width: 28px;
  height: 28px;
  background: #fff;
  border: 2px solid #081131;
  position: absolute;
  z-index: 1;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  cursor: pointer;
}


.vps-plan-design .plan-names {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  margin-top: 20px;
  margin-bottom: 30px;
}

.vps-plan-design .plan-names h4 {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  margin: 0;
  color: #282828;
  cursor: pointer;
}

.vps-plan-design .plan-names>div {
  cursor: pointer;
}

.vps-plan-design .plan-names>div.active h4 {
  color: var(--color-main);
}

.vps-plan-tab .inner ul {
  border: 1px solid #282828;
  padding: 20px;
  border-radius: 10px;
}

.vps-plan-tab .inner ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vps-plan-tab .inner ul li {
  display: flex;
  align-items: center;
  gap: 5px;
}

.vps-plan-tab .inner ul li figure {
  margin: 0;
}

.vps-plan-tab .inner ul li figure i {
  font-size: 18px;
  color: var(--color-main);
}

.vps-plan-tab .inner ul li span {
  font-size: 16px;
  color: #4b485b;
}

.vps-plan-tab .inner ul li h4 {
  font-size: 22px;
  color: var(--color-main-hover);
  margin: 0;
  font-weight: 900;
}

.vps-plan-price-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.price-value .price-amount {
  font-size: 30px;
  color: var(--color-main);
  font-weight: 900;
}

.price-value .price-amount sub {
  font-size: 16px;
  color: #3c3b3b;
}

.price-value {
  font-size: 16px;
  font-weight: 700;
}

.vps-plan-bottom {
  text-align: center;
  background: var(--color-main);
  border-radius: 0px 0px 10px 10px;
  padding: 10px;
}

.vps-plan-bottom h4 {
  font-size: 15px;
  color: #fff;
  margin: 0;
  font-weight: 500;
}

.vps-plan-price-section .price-value .price-amount {
  position: relative;
}

.badge-plan {
  font-size: 14px;
  font-weight: 500;
  background: var(--color-main-two);
  color: var(--white);
  padding: 2px 10px;
  border-radius: 20px;
  position: absolute;
}

.badge-plan {
  left: 0;
  line-height: 18px;
  top: -10px;
  background-color: var(--color-main-two);
  display: inline-block;
  pointer-events: none;
  animation: 1.5s linear infinite blinker;
  transform: translateX(-100%);
}

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

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@media(max-width:991px) {
  .vps-plan-design .price-slides {
    margin-top: 0px;
  }

  .vps-plan-tab .inner ul {
    flex-wrap: wrap;
  }

  .vps-plan-tab .inner ul li {
    display: block;
    gap: 0px;
    min-width: 50% !important;
    text-align: center;
  }

  .vps-plan-tab .inner ul li:nth-child(1),
  .vps-plan-tab .inner ul li:nth-child(2) {
    margin-bottom: 20px;
  }

  .vps-plan-tab .inner ul li figure i {
    font-size: 30px;
  }
}

@media(max-width:480px) {
  .vps-plan-tab .inner {
    border: unset;
    padding: 0px;
    border-radius: 10px;
  }

  .vps-plan-price-section {
    padding-top: 30px;
    border-top: 1px solid #424242;
  }

  .vps-plan-design {
    padding: 20px;
  }

  .vps-plan-design .price-slides .bar .bar-in::after {
    content: '';
    width: 28px;
    height: 28px;
    background: #fff;
    border: 2px solid #081131;
    position: absolute;
    z-index: 1;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    cursor: pointer;
  }

  .vps-plan-design .plan-names {
    padding: 0px;
  }

  .vps-plan-price-section {
    display: block;
    text-align: center;
  }

  .vps-plan-price-section .btns.one {
    margin: 20px auto 0px;
    width: 100%;
  }
}

/* ===================
Domain TLD
=================== */

.domain-tlds {
  position: relative;
  display: block;
  border: 1px solid rgba(102, 112, 147, .2);
  border-radius: 4px;
  padding: 16px;
  transition: all 0.5px;
}

.domain-tlds span {
  display: block;
  border-bottom: 1px solid rgba(102, 112, 147, .2);
  padding-bottom: 10px;
}

.domain-tlds span img {
  display: block;
  margin: auto;
  max-height: 50px;
}

.domain-tlds h4 {
  display: block;
  font-size: 18px;
  text-align: center;
  font-weight: 700;
  color: #141e29;
  margin: 0;
  margin-top: 10px;
  letter-spacing: 1px;
}

.domain-tlds:hover {
  background: #fff;
}

.swiper-tld .icons {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
}

.swiper-tld .icons a {
  display: flex;
  position: relative;
  border-radius: 0px;
  background: #e9e9e9;
  cursor: pointer;
  font-size: 30px;
  color: #545454;
  transform: all 1s;
  width: 50px;
  height: 50px;
  justify-content: center;
  align-items: center;
}

.swiper-tld .icons a:hover {
  background: var(--color-main);
  color: #fff;
}

.swiper-tld .icons a.swiper-button-disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

/* ===================
Menu Active State Fix
=================== */

/* Sunucu menüsü aktifken hosting menüsünü devre dışı bırak */
.main-header .nabbar-nav .mainmenu li.hosting-menu.active+li.server-menu.active a,
.main-header .nabbar-nav .mainmenu li.server-menu.active~li.hosting-menu.active a {
  color: inherit !important;
}

/* Sunucu menüsü aktifken hosting menüsünü normal renkte tut */
.main-header .nabbar-nav .mainmenu li.hosting-menu.active:has(+ li.server-menu.active) a {
  color: inherit !important;
}

/* Sunucu menüsü aktifken hosting menüsünün active sınıfını kaldır */
.main-header .nabbar-nav .mainmenu li.server-menu.active~li.hosting-menu.active {
  color: inherit !important;
}

.baslik-resim {
  /* Arka plan resmi */
  position: absolute;

  top: 5%;
  -webkit-animation: upd 2s linear 0s infinite;
  animation: upd 1s linear 0s infinite;
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, .1);
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  width: auto;
  margin-left: 50px;
  margin-top: -320px;
}

/* 1024px'e kadar olan ekranlar iÃ§in */
@media only screen and (max-width: 1024px) {
  .baslik-resim {
    /* Arka plan resmi */
    position: absolute;

    top: 5%;
    -webkit-animation: upd 2s linear 0s infinite;
    animation: upd 1s linear 0s infinite;
    transition-timing-function: cubic-bezier(0.7, 0, 0.3, .1);
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
    width: auto;
    margin-left: 20px;
    margin-top: -250px;
  }
}

/* Mobil cihazlar iÃ§in (600px'den kÃ¼Ã§Ã¼k ekranlar) */
@media only screen and (max-width: 600px) {
  .baslik-resim {
    display: none;
    /* Mobilde arka planÄ± gizle */
  }
}

/* Mobil cihazlar iÃ§in (600px'den kÃ¼Ã§Ã¼k ekranlar) */
@media only screen and (max-width: 320px) {
  .baslik-resim {
    display: none;
    /* Mobilde arka planÄ± gizle */
  }
}






/* Yanıp Sönme Efektleri - Mevcut yapıya uygun */
@media (min-width: 992px) {

  /* data-offer1 - Kırmızı yanıp sönme */
  .main-header .nabbar-nav .mainmenu>li>a>span[data-offer1]:after {
    content: attr(data-offer1);
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: white;
    font-size: 12px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    padding: 2px 4px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 1px;
    position: absolute;
    top: -15px;
    right: 0;
    animation: redBlink 1.5s infinite;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
  }

  /* data-offer2 - Yeşil yanıp sönme */
  .main-header .nabbar-nav .mainmenu>li>a>span[data-offer2]:after {
    content: attr(data-offer2);
    background: linear-gradient(45deg, #28a745, #34ce57);
    color: white;
    font-size: 12px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    padding: 2px 4px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 1px;
    position: absolute;
    top: -15px;
    right: 0;
    animation: greenBlink 1.5s infinite;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
  }

  /* data-offer3 - Siyah yanıp sönme */
  .main-header .nabbar-nav .mainmenu>li>a>span[data-offer3]:after {
    content: attr(data-offer3);
    background: linear-gradient(45deg, #2c3e50, #34495e);
    color: white;
    font-size: 12px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    padding: 2px 4px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 1px;
    position: absolute;
    top: -15px;
    right: 0;
    animation: blackBlink 1.5s infinite;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.3);
  }
}

/* Kırmızı yanıp sönme animasyonu */
@keyframes redBlink {

  0%,
  50% {
    opacity: 1;
    transform: scale(1);
  }

  25%,
  75% {
    opacity: 0.7;
    transform: scale(0.95);
  }
}

/* Yeşil yanıp sönme animasyonu */
@keyframes greenBlink {

  0%,
  50% {
    opacity: 1;
    transform: scale(1);
  }

  25%,
  75% {
    opacity: 0.7;
    transform: scale(0.95);
  }
}

/* Siyah yanıp sönme animasyonu */
@keyframes blackBlink {

  0%,
  50% {
    opacity: 1;
    transform: scale(1);
  }

  25%,
  75% {
    opacity: 0.7;
    transform: scale(0.95);
  }
}

/* Mobil için yanıp sönme animasyonları */
@keyframes redBlink {

  0%,
  50% {
    opacity: 1;
    transform: scale(1);
  }

  25%,
  75% {
    opacity: 0.7;
    transform: scale(0.95);
  }
}

@keyframes greenBlink {

  0%,
  50% {
    opacity: 1;
    transform: scale(1);
  }

  25%,
  75% {
    opacity: 0.7;
    transform: scale(0.95);
  }
}

@keyframes blackBlink {

  0%,
  50% {
    opacity: 1;
    transform: scale(1);
  }

  25%,
  75% {
    opacity: 0.7;
    transform: scale(0.95);
  }
}

/* Megamenu Labels Yanıp Sönme Efektleri */
@media (min-width: 992px) {

  /* labels1 - Aynı renk yanıp sönme (mevcut yeşil) */
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>ul>li>a>.inner>.content>.headings>.labels1 {
    background-color: rgb(186, 230, 211);
    color: rgb(31, 32, 68);
    -moz-box-align: center;
    align-items: center;
    border-radius: 20px;
    display: inline-flex;
    font-weight: 500;
    -moz-box-pack: center;
    justify-content: center;
    line-height: 16px;
    padding: 2px 10px;
    position: relative;
    width: fit-content;
    text-decoration: none;
    text-transform: uppercase;
    animation: labels1Blink 1.5s infinite;
    box-shadow: 0 2px 8px rgba(186, 230, 211, 0.3);
  }

  /* labels2 - Kırmızı yanıp sönme */
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>ul>li>a>.inner>.content>.headings>.labels2 {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: white;
    -moz-box-align: center;
    align-items: center;
    border-radius: 20px;
    display: inline-flex;
    font-weight: 500;
    -moz-box-pack: center;
    justify-content: center;
    line-height: 16px;
    padding: 2px 10px;
    position: relative;
    width: fit-content;
    text-decoration: none;
    text-transform: uppercase;
    animation: labels2Blink 1.5s infinite;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
  }

  /* labels3 - Siyah yanıp sönme */
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>ul>li>a>.inner>.content>.headings>.labels3 {
    background: linear-gradient(45deg, #2c3e50, #34495e);
    color: white;
    -moz-box-align: center;
    align-items: center;
    border-radius: 20px;
    display: inline-flex;
    font-weight: 500;
    -moz-box-pack: center;
    justify-content: center;
    line-height: 16px;
    padding: 2px 10px;
    position: relative;
    width: fit-content;
    text-decoration: none;
    text-transform: uppercase;
    animation: labels3Blink 1.5s infinite;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.3);
  }
}

/* Labels yanıp sönme animasyonları */
@keyframes labels1Blink {

  0%,
  50% {
    opacity: 1;
    transform: scale(1);
  }

  25%,
  75% {
    opacity: 0.7;
    transform: scale(0.95);
  }
}

@keyframes labels2Blink {

  0%,
  50% {
    opacity: 1;
    transform: scale(1);
  }

  25%,
  75% {
    opacity: 0.7;
    transform: scale(0.95);
  }
}

@keyframes labels3Blink {

  0%,
  50% {
    opacity: 1;
    transform: scale(1);
  }

  25%,
  75% {
    opacity: 0.7;
    transform: scale(0.95);
  }
}

/* Mobil için Yanıp Sönme Efektleri */
@media (max-width: 991px) {

  /* data-offer1 - Kırmızı yanıp sönme - Mevcut data-offer CSS'ini kopyalayarak */
  .main-header .nabbar-nav .mainmenu>li>a>span[data-offer1]:after {
    content: attr(data-offer1);
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: white;
    font-size: 12px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    padding: 2px 4px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 1px;
    position: relative;
    margin-inline-start: 10px;
    animation: redBlink 1.5s infinite;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
  }

  /* data-offer2 - Yeşil yanıp sönme - Mevcut data-offer CSS'ini kopyalayarak */
  .main-header .nabbar-nav .mainmenu>li>a>span[data-offer2]:after {
    content: attr(data-offer2);
    background: linear-gradient(45deg, #28a745, #34ce57);
    color: white;
    font-size: 12px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    padding: 2px 4px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 1px;
    position: relative;
    margin-inline-start: 10px;
    animation: greenBlink 1.5s infinite;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
  }

  /* data-offer3 - Siyah yanıp sönme - Mevcut data-offer CSS'ini kopyalayarak */
  .main-header .nabbar-nav .mainmenu>li>a>span[data-offer3]:after {
    content: attr(data-offer3);
    background: linear-gradient(45deg, #2c3e50, #34495e);
    color: white;
    font-size: 12px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    padding: 2px 4px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 1px;
    position: relative;
    margin-inline-start: 10px;
    animation: blackBlink 1.5s infinite;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.3);
  }

  /* Mobil - Megamenu Labels */
  /* labels1 - Aynı renk yanıp sönme (mevcut yeşil) */
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>ul>li>a>.inner>.content>.headings>.labels1 {
    background-color: rgb(186, 230, 211);
    color: rgb(31, 32, 68);
    -moz-box-align: center;
    align-items: center;
    border-radius: 20px;
    display: inline-flex;
    font-weight: 500;
    -moz-box-pack: center;
    justify-content: center;
    line-height: 16px;
    padding: 2px 10px;
    position: relative;
    width: fit-content;
    text-decoration: none;
    text-transform: uppercase;
    animation: labels1Blink 1.5s infinite;
    box-shadow: 0 2px 8px rgba(186, 230, 211, 0.3);
  }

  /* labels2 - Kırmızı yanıp sönme */
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>ul>li>a>.inner>.content>.headings>.labels2 {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: white;
    -moz-box-align: center;
    align-items: center;
    border-radius: 20px;
    display: inline-flex;
    font-weight: 500;
    -moz-box-pack: center;
    justify-content: center;
    line-height: 16px;
    padding: 2px 10px;
    position: relative;
    width: fit-content;
    text-decoration: none;
    text-transform: uppercase;
    animation: labels2Blink 1.5s infinite;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
  }

  /* labels3 - Siyah yanıp sönme */
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item>li>ul>li>a>.inner>.content>.headings>.labels3 {
    background: linear-gradient(45deg, #2c3e50, #34495e);
    color: white;
    -moz-box-align: center;
    align-items: center;
    border-radius: 20px;
    display: inline-flex;
    font-weight: 500;
    -moz-box-pack: center;
    justify-content: center;
    line-height: 16px;
    padding: 2px 10px;
    position: relative;
    width: fit-content;
    text-decoration: none;
    text-transform: uppercase;
    animation: labels3Blink 1.5s infinite;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.3);
  }
}












/* Dedicated Hosting Section Styles */
.dedicated-intro {
  position: relative;
  overflow: hidden;
}

.dedicated-content {
  position: relative;
  z-index: 2;
}

.dedicated-content .subtitle {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(45deg, rgba(0, 123, 255, 0.1), rgba(0, 198, 255, 0.1));
  color: #007bff;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 20px;
}

.dedicated-content .title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #2c3e50, #3498db);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.dedicated-content .description {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

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

.feature-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, #007bff, #00c6ff);
  border-radius: 12px;
  color: white;
  font-size: 20px;
}

.feature-text h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #2c3e50;
}

.feature-text p {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.dedicated-stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #007bff;
  margin-bottom: 5px;
}

.stat-text {
  font-size: 14px;
  color: #6c757d;
}

.dedicated-image {
  position: relative;
  text-align: center;
}

.main-image {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.experience-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 120px;
  height: 120px;
  background: white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  animation: float 3s ease-in-out infinite;
}

.experience-badge .years {
  font-size: 32px;
  font-weight: 700;
  color: #007bff;
  line-height: 1;
}

.experience-badge .text {
  font-size: 14px;
  color: #6c757d;
  text-align: center;
  line-height: 1.2;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

@media (max-width: 991px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .dedicated-stats {
    flex-wrap: wrap;
    justify-content: center;
  }

  .experience-badge {
    width: 100px;
    height: 100px;
    bottom: 20px;
    right: 20px;
  }

  .experience-badge .years {
    font-size: 28px;
  }

  .experience-badge .text {
    font-size: 12px;
  }
}


/* Tab Content Styles */
.tab-content {
  width: 100%;
  padding: 0;
}

.tab-pane {
  width: 100%;
  padding: 0;
}



/* Server Plans Container */
.server-plans-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  margin: 0;
  font-size: 14px;
  padding: 0;
}

/* Header Bar */
.server-plans-header {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr 1fr;
  gap: 15px;
  padding: 20px 30px;
  background: #f8f9fa;
  border: 1px solid #eef0f2;
  border-radius: 8px;
  margin-bottom: 5px;
  font-weight: 600;
  color: #2c3e50;
  font-size: 14px;
  align-items: center;
  width: 100%;
}

.server-plans-header span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.server-plans-header span i {
  font-size: 16px;
  color: #007bff;
  opacity: 0.9;
}

.server-plans-header .price-label {
  text-align: right;
  padding-right: 85px;
}

@media (max-width: 992px) {
  .server-plans-header {
    display: none;
  }
}

/* Server Plan Item */
.server-plan-item {
  display: flex;
  width: 100%;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #eef0f2;
  cursor: default;
}

.server-plan-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-color: #007bff;
}

/* Server Specs */
.server-specs {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr 1fr;
  gap: 20px;
  padding: 20px 30px;
  background: #fff;
  align-items: center;
  width: 100%;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.spec-item i {
  font-size: 18px;
  color: #007bff;
  opacity: 0.9;
}

.spec-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.spec-details strong {
  font-size: 15px;
  font-weight: 600;
  color: #2c3e50;
}

.spec-details span {
  font-size: 13px;
  color: #6c757d;
}

/* Price and Actions */
.price-select {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: flex-end;
  min-width: 180px;
  flex-shrink: 0;
}

.server-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.price-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 48px;
}

.old-price {
  font-size: 11px;
  color: #888;
  text-decoration: line-through;
  margin-bottom: 0;
  line-height: 1.1;
}

.discount-code {
  font-size: 9px;
  color: #bbb;
  font-style: italic;
  font-weight: 400;
  background: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
  display: block;
  text-align: left;
  line-height: 1.1;
  letter-spacing: 0.1px;
}

.new-price {
  font-size: 22px;
  font-weight: bold;
  color: #007bff;
  margin-left: 2px;
}

.period {
  font-size: 13px;
  color: #6c757d;
  margin-left: 2px;
}

.ribbon {
  width: 130px;
  background: #00b9ff;
  color: #fff;
  text-align: center;
  font-size: 11px;
  font-weight: bold;
  position: absolute;
  left: -35px;
  top: 12px;
  transform: rotate(-35deg);
  z-index: 20;
  padding: 4px 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  letter-spacing: 1px;
}

.ribbon-popular {
  background: #ff6b6b;
}

.ribbon-new {
  background: #22c55e;
}

.ribbon-limited {
  background: #f59e42;
}

.btn-select {
  text-align: center;
  padding: 10px 25px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  background: linear-gradient(45deg, #007bff, #00c6ff);
  color: #fff;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.15);
  z-index: 10;
  display: inline-block;
  min-width: 120px;
}

.btn-select::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent);
  animation: flash 3s infinite;
}

.btn-select:hover {
  background: linear-gradient(45deg, #0056b3, #0099ff);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.25);
  color: #fff;
}

/* Server Plan Item hover durumunda butonun görünürlüğünü artır */
.server-plan-item:hover .btn-select {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.25);
}

@keyframes flash {
  0% {
    left: -100%;
  }

  20% {
    left: 100%;
  }

  100% {
    left: 100%;
  }
}

/* Collapsible Details */
.collapse {
  display: none;
}

.server-details {
  display: none;
}

/* Responsive Design */
@media (max-width: 992px) {
  .server-specs {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 20px;
  }

  .spec-item {
    padding: 10px 0;
    border-bottom: 1px solid #eef0f2;
  }

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

  .price-select {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eef0f2;
    justify-content: space-between;
  }
}

/* Offer Banner */
.offer-banner {
  background: linear-gradient(45deg, #007bff, #00c6ff);
  padding: 12px 20px;
  border-radius: 8px;
  margin-bottom: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.15);
  position: relative;
  overflow: hidden;
  animation: pulse 2s infinite;
}

.offer-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent);
  animation: shine 3s infinite;
}

.offer-banner h3 {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.offer-banner i {
  color: #ffd700;
  font-size: 18px;
  animation: bounce 2s infinite;
}

.offer-banner strong {
  color: #ffd700;
  font-weight: 700;
  padding: 0 5px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.02);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes shine {
  0% {
    left: -100%;
  }

  20% {
    left: 100%;
  }

  100% {
    left: 100%;
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}



/* Hesitate Support Section Styles */
.hesitate-support-section {
  background: #fff;
  padding: 64px 0 48px 0;
  display: flex;
  justify-content: center;
}

.hesitate-support-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}

.hesitate-support-icon {
  margin-bottom: 18px;
}

.hesitate-support-title {
  font-size: 2rem;
  font-weight: 600;
  color: #5a6a85;
  margin-bottom: 6px;
}

.hesitate-support-subtitle {
  font-size: 1.45rem;
  font-weight: 700;
  color: #0a1a3a;
  margin-bottom: 18px;
}

.hesitate-support-desc {
  font-size: 1.08rem;
  color: #7b8bb2;
  margin-bottom: 28px;
  line-height: 1.6;
}

.hesitate-support-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 32px;
  font-size: 1.08rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg, #007bff 0%, #00c6ff 100%);
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0, 123, 255, 0.10);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}

.hesitate-support-btn:hover {
  background: linear-gradient(90deg, #0056b3 0%, #00aaff 100%);
  box-shadow: 0 8px 32px rgba(0, 123, 255, 0.18);
  transform: translateY(-2px) scale(1.03);
}

.btn-icon {
  display: flex;
  align-items: center;
  margin-right: 4px;
}

.btn-arrow {
  display: flex;
  align-items: center;
  margin-left: 4px;
}

@media (max-width: 600px) {
  .hesitate-support-section {
    padding: 36px 0 24px 0;
  }

  .hesitate-support-title {
    font-size: 1.2rem;
  }

  .hesitate-support-subtitle {
    font-size: 1.05rem;
  }

  .hesitate-support-btn {
    font-size: 0.97rem;
    padding: 10px 16px;
  }
}

/* Germany Features Section Styles */
.germany-features-section {
  padding: 80px 0;
  background: #f0f8ff;
}

.feature-card {
  background: #fff;
  padding: 35px 30px;
  border-radius: 20px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
  text-align: left;
  transition: all 0.3s ease;
  border: 1px solid #e8f0fe;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(79, 172, 254, 0.12);
  border-color: #4facfe;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
  font-size: 22px;
  box-shadow: 0 4px 15px rgba(79, 172, 254, 0.25);
}

.feature-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1a365d;
  margin-bottom: 12px;
  line-height: 1.3;
}

.feature-card p {
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
  font-size: 14px;
}

/* Datacenter Advantages Section */
.datacenter-advantages-section {
  padding: 80px 0;
  background: #f7fafc;
}

.datacenter-content .section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 15px;
}

.datacenter-content .section-header p {
  font-size: 1.1rem;
  color: #4a5568;
  margin-bottom: 40px;
}

.advantages-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 25px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.advantage-item:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 25px rgba(79, 172, 254, 0.08);
  border-color: #4facfe;
}

.advantage-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 3px 12px rgba(79, 172, 254, 0.2);
}

.advantage-content h5 {
  font-size: 17px;
  font-weight: 600;
  color: #1a365d;
  margin-bottom: 8px;
}

.advantage-content p {
  color: #4a5568;
  margin: 0;
  line-height: 1.5;
  font-size: 14px;
}

.datacenter-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.datacenter-image img {
  width: 100%;
  height: auto;
  display: block;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(26, 54, 93, 0.85));
  padding: 35px 30px 30px;
}

.overlay-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
}

.stat-item {
  text-align: center;
  color: white;
}

.stat-number {
  display: block;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #ffffff;
}

.stat-label {
  font-size: 13px;
  opacity: 0.9;
  color: #e2e8f0;
}

/* Performance Stats Section */
.performance-stats-section {
  padding: 80px 0;
  background: #ffffff;
}

.stat-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e8f0fe;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #10b981 0%, #34d399 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.12);
  border-color: #10b981;
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f3f3f3 0%, #00b6ff 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: white;
  font-size: 24px;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 10px;
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 16px;
  color: #4a5568;
  font-weight: 500;
  line-height: 1.4;
}

/* Technical Specs Section */
.technical-specs-section {
  padding: 80px 0;
  background: #ffffff;
}

.spec-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  height: 100%;
}

.spec-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 123, 255, 0.15);
  border-color: #007bff;
}

.spec-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(45deg, #28a745, #20c997);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 28px;
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.spec-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 20px;
}

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

.spec-card ul li {
  padding: 8px 0;
  color: #6c757d;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
}

.spec-card ul li:last-child {
  border-bottom: none;
}

.spec-card ul li:before {
  content: "✓";
  color: #28a745;
  font-weight: bold;
  margin-right: 10px;
}

/* Security Compliance Section */
.security-compliance-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.security-content .section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
}

.security-content .section-header p {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 40px;
}

.compliance-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.compliance-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.compliance-item:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.compliance-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #dc3545, #fd7e14);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.compliance-content h5 {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
}

.compliance-content p {
  color: #6c757d;
  margin: 0;
  line-height: 1.5;
}

.security-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.security-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive Design */
@media (max-width: 768px) {

  .germany-features-section,
  .datacenter-advantages-section,
  .technical-specs-section,
  .security-compliance-section {
    padding: 60px 0;
  }

  .feature-card,
  .spec-card {
    padding: 25px 20px;
  }

  .advantage-item,
  .compliance-item {
    padding: 15px;
    gap: 15px;
  }

  .advantage-item:hover,
  .compliance-item:hover {
    transform: none;
  }

  .overlay-stats {
    gap: 20px;
  }

  .stat-number {
    font-size: 20px;
  }

  .stat-label {
    font-size: 12px;
  }
}

.faq-section {
  padding: 80px 0;

}

/* ================================================================
   Domain Search Styles
================================================================ */

/* Domain Results Container */
.domain-results-wrapper {
  padding: 40px 0;
}

/* Domain Loading */
.domain-loading {
  text-align: center;
  padding: 60px 20px;
}

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

.domain-loading p {
  color: #667093;
  font-size: 16px;
  margin-top: 20px;
}

/* Main Domain Result */
.main-domain-result h3,
.domain-suggestions h3 {
  color: #081131;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}

/* Domain Card */
.domain-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  height: 100%;
}

.domain-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.domain-card-main {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(102, 126, 234, 0.4);
  transition: all 0.3s ease;
  text-align: center;
}

.domain-card-main:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(102, 126, 234, 0.5);
}

/* Domain Status */
.domain-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
}

.domain-status i {
  font-size: 28px;
}

.domain-card.available .domain-status {
  color: #28a745;
}

.domain-card.taken .domain-status {
  color: #dc3545;
}

.domain-card-main .domain-status {
  color: #fff;
  font-size: 24px;
}

.domain-card-main.available .domain-status i {
  color: #90db96;
}

.domain-card-main.taken .domain-status i {
  color: #ff6b6b;
}

/* Domain Name */
.domain-name {
  font-size: 24px;
  font-weight: 700;
  color: #081131;
  text-align: center;
  margin-bottom: 20px;
  word-break: break-all;
}

.domain-card-main .domain-name {
  font-size: 32px;
  color: #fff;
}

/* Domain Action Buttons */
.domain-action .btn {
  font-size: 16px;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.domain-action .btn-success {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  border: none;
}

.domain-action .btn-success:hover {
  background: linear-gradient(135deg, #218838 0%, #1aa179 100%);
  transform: scale(1.05);
}

.domain-action .btn-info {
  background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
  border: none;
  color: #fff;
}

.domain-action .btn-info:hover {
  background: linear-gradient(135deg, #138496 0%, #117a8b 100%);
  transform: scale(1.05);
}

/* WHOIS Modal */
.modal-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border-radius: 10px 10px 0 0;
}

.modal-header .btn-close {
  filter: brightness(0) invert(1);
}

.modal-title {
  font-weight: 700;
}

/* WHOIS Info */
.whois-info {
  padding: 20px 0;
}

.whois-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.whois-item {
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid var(--color-main);
}

.whois-item strong {
  color: #081131;
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

.whois-item span {
  color: #667093;
  font-size: 14px;
}

.whois-raw pre {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 20px;
  font-size: 12px;
  color: #495057;
  max-height: 400px;
  overflow-y: auto;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/* Responsive */
@media (max-width: 768px) {
  .domain-card-main {
    padding: 30px 20px;
  }

  .domain-card-main .domain-name {
    font-size: 24px;
  }

  .main-domain-result h3,
  .domain-suggestions h3 {
    font-size: 22px;
  }
}

/* Domain Suggestions List - Compact Format */
.domain-suggestions-list {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.suggestion-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25px;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

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

.suggestion-item:hover {
  background: #f8f9fa;
}

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

.suggestion-item .domain-name-text {
  font-size: 16px;
  font-weight: 600;
  color: #081131;
  min-width: 200px;
}

.suggestion-item .domain-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.status-badge.available {
  background: #28a745;
  color: #fff;
}

.status-badge.taken {
  background: #6c757d;
  color: #fff;
}

.suggestion-item .original-price {
  color: #999;
  font-size: 13px;
  text-decoration: line-through;
}

.suggestion-action {
  display: flex;
  align-items: center;
  gap: 20px;
}

.suggestion-action .price {
  font-size: 22px;
  font-weight: 700;
  color: #081131;
  min-width: 120px;
  text-align: right;
}

.suggestion-action .price .period {
  font-size: 14px;
  font-weight: 400;
  color: #667093;
}

.suggestion-action .btn {
  min-width: 120px;
  font-weight: 600;
  border-radius: 6px;
  padding: 8px 20px;
}

.suggestion-action .btn-warning {
  background: #3498db;
  border: none;
  color: #ffffff;
}

.suggestion-action .btn-warning:hover {
  background: #64c47a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
}

.suggestion-action .btn-outline-secondary {
  border: 1px solid #dee2e6;
  color: #6c757d;
}

.suggestion-action .btn-outline-secondary:hover {
  background: #6c757d;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .suggestion-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .suggestion-info {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .suggestion-item .domain-name-text {
    min-width: auto;
  }

  .suggestion-action {
    width: 100%;
    justify-content: space-between;
  }

  .suggestion-action .price {
    min-width: auto;
  }
}

/* Ana Domain Sonucu - Kompakt Liste */
.main-domain-item {
  background: #fff;
  border-radius: 12px;
  padding: 25px 30px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
  border-left: 5px solid #ddd;
  transition: all 0.3s ease;
}

.main-domain-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.main-domain-item.available {
  border-left-color: #28a745;
}

.main-domain-item.taken {
  border-left-color: #dc3545;
}

.domain-info-main {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.status-badge-main {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.status-badge-main.available {
  background: #28a745;
  color: #fff;
}

.status-badge-main.taken {
  background: #dc3545;
  color: #fff;
}

.status-badge-main i {
  font-size: 16px;
}

.domain-name-main {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 600;
  color: #081131;
}

.domain-name-main i {
  font-size: 24px;
  color: #667093;
}

.domain-action-main .btn {
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  min-width: 140px;
}

.domain-action-main .btn-success {
  background: #28a745;
  border: none;
}

.domain-action-main .btn-success:hover {
  background: #218838;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.domain-action-main .btn-info {
  background: #17a2b8;
  border: none;
  color: #fff;
}

.domain-action-main .btn-info:hover {
  background: #138496;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(23, 162, 184, 0.3);
}

@media (max-width: 768px) {
  .main-domain-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
  }

  .domain-info-main {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .domain-name-main {
    font-size: 18px;
  }

  .domain-action-main {
    width: 100%;
  }

  .domain-action-main .btn {
    width: 100%;
  }
}

/* ================================================================
   HOMEPAGE REDESIGN - NEW SECTIONS
================================================================ */

/* Services Showcase Section */
.services-showcase {
  background: linear-gradient(4deg, #ffffff 0%, #f4faff 100%);
  position: relative;
  overflow: hidden;
}

/* Main Layout - Flexbox */
.services-layout {
  display: flex;
  gap: 30px;
  align-items: stretch;
}

/* Left - Image Area (360x460) */
.services-image-area {
  flex: 0 0 360px;
  min-height: 460px;
  background: url('../images/adamarka.png') center center / cover no-repeat;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.services-image-area img {
  max-width: 85%;
  max-height: 500px;
  height: auto;
  width: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
  animation: floatImg 4s ease-in-out infinite;
}

@keyframes floatImg {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* Right - Cards Area */
.services-cards-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Cards Row */
.cards-row {
  display: flex;
  gap: 15px;
}

/* Service Card Base */
.svc-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-decoration: none;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  position: relative;
}

.svc-card:hover {
  border-color: #3498db;
  box-shadow: 0 8px 30px rgba(52, 152, 219, 0.12);
  transform: translateY(-3px);
}

/* Small Cards - 2 per row */
.svc-card.small {
  flex: 1;
  min-width: 0;
}

/* Wide Cards - takes more space */
.svc-card.wide {
  flex: 1.5;
  min-width: 0;
}

/* Card Icon */
.svc-card .svc-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0f7ff, #e8f4fd);
  border-radius: 10px;
  position: absolute;
  top: 20px;
  right: 20px;
}

.svc-card .svc-icon i {
  font-size: 20px;
  color: #3498db;
}

.svc-card:hover .svc-icon {
  background: linear-gradient(135deg, #3498db, #2980b9);
}

.svc-card:hover .svc-icon i {
  color: #fff;
}

/* Card Title */
.svc-card h5 {
  font-size: 16px;
  font-weight: 700;
  color: #081131;
  margin-bottom: 8px;
  padding-right: 50px;
}

/* Card Description (only for wide cards) */
.svc-card .svc-desc {
  font-size: 13px;
  color: #667093;
  line-height: 1.5;
  margin-bottom: 12px;
}

/* Card Price */
.svc-card .svc-price {
  font-size: 24px;
  font-weight: 800;
  color: #081131;
  margin-bottom: 3px;
}

.svc-card .svc-price small {
  font-size: 14px;
  font-weight: 400;
  color: #667093;
}

/* Card Subtitle */
.svc-card .svc-subtitle {
  font-size: 12px;
  color: #999;
  margin-bottom: 12px;
}

/* Card Button */
.svc-card .svc-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #667093;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: auto;
}

.svc-card:hover .svc-btn {
  background: #3498db;
  border-color: #3498db;
  color: #fff;
}

.svc-card .svc-btn i {
  transition: transform 0.3s ease;
}

.svc-card:hover .svc-btn i {
  transform: translateX(3px);
}

/* Theme Color Button */
.svc-card .svc-btn.orange {
  background: #3498db;
  border-color: #3498db;
  color: #fff;
}

.svc-card:hover .svc-btn.orange {
  background: #2980b9;
  border-color: #2980b9;
}

/* Featured Card (VDS - Dark) */
.svc-card.featured {
  background: linear-gradient(135deg, #1e3a5f 0%, #0d2137 100%);
  border-color: transparent;
}

.svc-card.featured h5 {
  color: #fff;
}

.svc-card.featured .svc-desc {
  color: rgba(255, 255, 255, 0.7);
}

.svc-card.featured .svc-price {
  color: #fff;
}

.svc-card.featured .svc-price small {
  color: rgba(255, 255, 255, 0.6);
}

.svc-card.featured .svc-subtitle {
  color: rgba(255, 255, 255, 0.5);
}

.svc-card.featured .svc-icon {
  background: rgba(52, 152, 219, 0.2);
}

.svc-card.featured:hover .svc-icon {
  background: #3498db;
}

.svc-card.featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(52, 152, 219, 0.2);
}

/* Responsive */
@media (max-width: 1199px) {
  .services-image-area {
    flex: 0 0 300px;
    min-height: 400px;
  }
}

@media (max-width: 991px) {
  .services-layout {
    flex-direction: column;
  }

  .services-image-area {
    flex: none;
    width: 100%;
    max-width: 400px;
    min-height: 350px;
    margin: 0 auto 20px;
  }

  .cards-row {
    flex-wrap: wrap;
  }

  .svc-card.small,
  .svc-card.wide {
    flex: 1 1 calc(50% - 8px);
    min-width: 200px;
  }
}

@media (max-width: 575px) {

  .svc-card.small,
  .svc-card.wide {
    flex: 1 1 100%;
  }
}

/* USP Section - Neden Bizi Tercih Etmelisiniz */
.usp-section {
  padding: 80px 0;
  background: #fff;
}

.usp-card {
  text-align: center;
  padding: 30px 20px;
  transition: all 0.3s ease;
}

.usp-card .usp-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3498db, #2980b9);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
  transition: all 0.4s ease;
}

.usp-card:hover .usp-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 15px 40px rgba(52, 152, 219, 0.4);
}

.usp-card .usp-icon i {
  font-size: 40px;
  color: #fff;
}

.usp-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #081131;
  margin-bottom: 10px;
}

.usp-card p {
  font-size: 14px;
  color: #667093;
  line-height: 1.6;
  margin: 0;
}

/* Stats Counter Section */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1e3c72 0%, #3090d0 100%);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>') repeat;
  background-size: 50px 50px;
  animation: pattern-move 20s linear infinite;
}

@keyframes pattern-move {
  0% {
    transform: translateX(0) translateY(0);
  }

  100% {
    transform: translateX(50px) translateY(50px);
  }
}

.stat-item {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 20px;
}

.stat-item .stat-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.stat-item .stat-icon i {
  font-size: 30px;
  color: #fff;
}

.stat-item .stat-number {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 5px;
  display: block;
}

.stat-item .stat-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* Tech Logos Section */
.tech-logos-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.tech-logos-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
}

.tech-logo-item {
  opacity: 0.6;
  transition: all 0.3s ease;
  filter: grayscale(100%);
}

.tech-logo-item:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

.tech-logo-item img {
  height: 50px;
  width: auto;
}

/* Yeni Fiyatlandırma Kartları */
.pricing-cards-section {
  padding: 80px 0;
  background: #fff;
}

.pricing-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border: 2px solid #e9ecef;
  position: relative;
}

.pricing-card.featured {
  border-color: #3498db;
  transform: scale(1.05);
}

.pricing-card.featured::before {
  content: 'En Popüler';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #3498db, #2ecc71);
  color: #fff;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(52, 152, 219, 0.2);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-card .plan-name {
  font-size: 22px;
  font-weight: 700;
  color: #081131;
  margin-bottom: 10px;
}

.pricing-card .plan-desc {
  font-size: 14px;
  color: #667093;
  margin-bottom: 25px;
}

.pricing-card .plan-price {
  margin-bottom: 30px;
}

.pricing-card .plan-price .old-price {
  font-size: 18px;
  color: #999;
  text-decoration: line-through;
  display: block;
  margin-bottom: 5px;
}

.pricing-card .plan-price .current-price {
  font-size: 42px;
  font-weight: 800;
  color: #3498db;
}

.pricing-card .plan-price .current-price sup {
  font-size: 18px;
  top: -15px;
}

.pricing-card .plan-price .current-price small {
  font-size: 16px;
  font-weight: 400;
  color: #667093;
}

.pricing-card .plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.pricing-card .plan-features li {
  padding: 10px 0;
  color: #555;
  font-size: 14px;
  border-bottom: 1px dashed #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pricing-card .plan-features li:last-child {
  border-bottom: none;
}

.pricing-card .plan-features li i {
  color: #28a745;
}

/* Responsive */
@media (max-width: 991px) {
  .service-card {
    margin-bottom: 30px;
  }

  .stat-item .stat-number {
    font-size: 36px;
  }

  .pricing-card.featured {
    transform: none;
    margin: 30px 0;
  }

  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 767px) {

  .service-cards-section,
  .usp-section,
  .stats-section,
  .pricing-cards-section {
    padding: 50px 0;
  }

  .tech-logos-wrapper {
    gap: 30px;
  }

  .tech-logo-item img {
    height: 35px;
  }
}

/* ============================================
   FOOTER STYLES
   ============================================ */

/* Footer Styling - Dark Theme with SVG Background */
.main-footer {
  background: url(../asset/img/bg/slider-bg-mountains.svg) center center / cover no-repeat;
  color: white;
  padding: 60px 0 30px;
  position: relative;
  overflow: hidden;
}

.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(0, 123, 255, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(0, 198, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.main-footer .container {
  position: relative;
  z-index: 1;
}

.main-footer .company-info .logo {
  display: inline-block;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.main-footer .company-info .logo:hover {
  transform: scale(1.05);
}

.main-footer .company-info .logo img {
  max-height: 80px;
  width: auto;
}

.main-footer .company-info p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.main-footer .social-info {
  display: flex;
  gap: 12px;
}

.main-footer .social-info a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.main-footer .social-info a:hover {
  background: linear-gradient(135deg, #007bff, #00c6ff);
  border-color: #007bff;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 123, 255, 0.4);
}

.main-footer .footer-list h4 {
  color: white;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.main-footer .footer-list h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #007bff, #00c6ff);
  border-radius: 2px;
}

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

.main-footer .footer-list ul li {
  margin-bottom: 12px;
}

.main-footer .footer-list ul li a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 15px;
}

.main-footer .footer-list ul li a::before {
  content: '\203A';
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
  opacity: 0.7;
  color: #007bff;
}

.main-footer .footer-list ul li a::after {
  content: '';
  position: absolute;
  left: 15px;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #007bff, #00c6ff);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.main-footer .footer-list ul li a:hover {
  color: #00c6ff;
  padding-left: 20px;
}

.main-footer .footer-list ul li a:hover::before {
  opacity: 1;
}

.main-footer .footer-list ul li a:hover::after {
  width: calc(100% - 20px);
}

.main-footer .footer-images {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.main-footer .footer-images div {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 10px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.main-footer .footer-images div:hover {
  background: rgba(0, 123, 255, 0.15);
  border-color: rgba(0, 123, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.2);
}

.main-footer .footer-images img {
  max-width: 80px;
  height: auto;
  display: block;
}

/* Footer Contact List */
.main-footer .footer-contact ul li a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.main-footer .footer-contact ul li a i {
  font-size: 18px;
  color: #00c6ff;
  flex-shrink: 0;
}

.main-footer .footer-contact ul li a span {
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Copyright Section */
.copy-right-info {
  background: linear-gradient(135deg, #151822 0%, #1a1d29 100%);
  color: white;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.copy-right-info p {
  margin: 0;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.copy-right-info p strong {
  color: #00c6ff;
  font-weight: 600;
}

/* Scroll to Top Button */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #007bff, #00c6ff);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 123, 255, 0.4);
}

.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 123, 255, 0.6);
  background: linear-gradient(135deg, #0088ff, #00d4ff);
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
}

.scroll-top svg {
  width: 20px;
  height: 20px;
}

/* Footer Responsive */
@media (max-width: 991px) {
  .main-footer {
    padding: 40px 0 20px;
  }

  .main-footer .company-info {
    margin-bottom: 30px;
    text-align: center;
  }

  .main-footer .company-info .logo {
    display: flex;
    justify-content: center;
  }

  .main-footer .company-info p {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .main-footer .social-info {
    justify-content: center;
  }

  .main-footer .footer-list {
    text-align: center;
    margin-bottom: 10px;
  }

  .main-footer .footer-list h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .main-footer .footer-list ul li a {
    padding-left: 0;
  }

  .main-footer .footer-list ul li a::before {
    display: none;
  }

  .main-footer .footer-list ul li a::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .main-footer .footer-list ul li a:hover {
    padding-left: 0;
  }

  .main-footer .footer-list ul li a:hover::after {
    width: 60%;
  }

  .main-footer .footer-images {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .main-footer {
    padding: 35px 0 20px;
  }

  .main-footer .company-info .logo img {
    max-height: 60px;
  }

  .main-footer .company-info p {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .main-footer .social-info a {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .main-footer .footer-list h4 {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .main-footer .footer-list ul li {
    margin-bottom: 10px;
  }

  .main-footer .footer-list ul li a {
    font-size: 13px;
    padding: 4px 0;
    display: inline-block;
  }

  /* E-posta adreslerinin taşmasını engelle */
  .main-footer .footer-list ul li a[href^="mailto:"],
  .main-footer .footer-list ul li a[href^="tel:"] {
    word-break: break-all;
    font-size: 12px;
  }

  .main-footer .footer-list ul li a i {
    display: inline;
    font-size: 16px;
    color: #00c6ff;
    margin-right: 6px;
  }

  .copy-right-info {
    padding: 15px 0;
  }

  .copy-right-info p {
    font-size: 12px;
    line-height: 1.6;
  }
}

@media (max-width: 575px) {
  .main-footer {
    padding: 30px 0 15px;
  }

  .main-footer .company-info .logo img {
    max-height: 50px;
  }

  .main-footer .company-info p {
    font-size: 12.5px;
    padding: 0 10px;
  }

  .main-footer .social-info {
    gap: 10px;
    margin-bottom: 10px;
  }

  .main-footer .social-info a {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }

  .main-footer .footer-list {
    padding: 0 10px;
  }

  .main-footer .footer-list h4 {
    font-size: 15px;
    margin-bottom: 12px;
    margin-top: 5px;
  }

  .main-footer .footer-list h4::after {
    width: 40px;
    height: 2px;
  }

  .main-footer .footer-list ul li {
    margin-bottom: 8px;
  }

  .main-footer .footer-list ul li a {
    font-size: 13px;
  }

  .copy-right-info p {
    font-size: 11px;
    padding: 0 15px;
  }

  .scroll-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }

  .scroll-top svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 400px) {
  .main-footer {
    padding: 25px 0 12px;
  }

  .main-footer .company-info .logo img {
    max-height: 42px;
  }

  .main-footer .company-info p {
    font-size: 12px;
  }

  .main-footer .footer-list h4 {
    font-size: 14px;
  }

  .main-footer .footer-list ul li a {
    font-size: 12px;
  }

  .main-footer .footer-list ul li a[href^="mailto:"] {
    font-size: 11px;
  }

  .copy-right-info p {
    font-size: 10.5px;
  }
}

/* =============404 Error Page============= */
.error-banner {
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../asset/img/bg/404.svg) center center / cover no-repeat;
  padding: 60px 0;
  position: relative;
}

.error-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 20, 60, 0.6) 0%, rgba(0, 80, 180, 0.4) 100%);
  z-index: 0;
}

.error-banner .container {
  position: relative;
  z-index: 1;
}

.error-banner .error-code {
  font-size: 150px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  margin-bottom: 10px;
}

.error-banner .error-title {
  color: rgba(255, 255, 255, 0.95);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}

.error-banner .error-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .error-banner {
    min-height: 260px;
    padding: 40px 0;
  }

  .error-banner .error-code {
    font-size: 100px;
  }

  .error-banner .error-title {
    font-size: 20px;
  }

  .error-banner .error-desc {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .error-banner {
    min-height: 200px;
    padding: 30px 0;
  }

  .error-banner .error-code {
    font-size: 80px;
  }
}