@charset "UTF-8";
a {
  color: #000000;
  text-decoration: none;
  background-color: transparent;
}
a:hover {
  color: #000000;
}
a:not([href]):not([class]) {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  color: #000000;
}
button:hover {
  color: #000000;
}

.infra-color-background-primary {
  background-color: rgba(4, 42, 119, 0.8745098039);
  color: #ffffff;
  padding: 0px 8px;
  display: inline-block;
}

.infra-color-background-secondary {
  background-color: #ff5405;
  color: #ffffff;
  padding: 0px 8px;
  display: inline-block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideUpWithTransform {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes scaleUp {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.05);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(10deg);
  }
}
@keyframes floatSlow {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-180deg) scale(0);
  }
  to {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}
@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.6);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}
.animate-fadeIn {
  animation: fadeIn 0.6s ease-out forwards;
}

.animate-fadeInUp {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fadeInDown {
  animation: fadeInDown 0.8s ease-out forwards;
}

.animate-fadeInLeft {
  animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-fadeInRight {
  animation: fadeInRight 0.8s ease-out forwards;
}

.animate-slideUp {
  animation: slideUp 0.6s ease-out forwards;
}

.animate-slideDown {
  animation: slideDown 0.6s ease-out forwards;
}

.animate-scaleIn {
  animation: scaleIn 0.5s ease-out forwards;
}

.animate-float {
  animation: float 20s ease-in-out infinite;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

.animate-bounce {
  animation: bounce 1s ease-in-out infinite;
}

.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-300 {
  animation-delay: 0.3s;
}

.delay-400 {
  animation-delay: 0.4s;
}

.delay-500 {
  animation-delay: 0.5s;
}

.delay-600 {
  animation-delay: 0.6s;
}

.delay-700 {
  animation-delay: 0.7s;
}

.delay-800 {
  animation-delay: 0.8s;
}

.delay-1000 {
  animation-delay: 1s;
}

.duration-fast {
  animation-duration: 0.3s;
}

.duration-normal {
  animation-duration: 0.6s;
}

.duration-slow {
  animation-duration: 1s;
}

.duration-slower {
  animation-duration: 1.5s;
}

.infra-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.infra-header .infra-topbar {
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
}
.infra-header .infra-topbar .infra-left-side {
  display: flex;
  align-items: center;
  gap: 20px;
}
.infra-header .infra-topbar .infra-left-side .infra-logo img {
  height: 50px;
  width: auto;
}
.infra-header .infra-topbar .infra-left-side .infra-products-menu {
  height: 70px;
  display: flex;
  align-items: center;
  gap: 40px;
  margin-left: 30px;
  color: #000000;
}
.infra-header .infra-topbar .infra-left-side .infra-products-menu .infra-link {
  font-weight: 600;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.infra-header .infra-topbar .infra-left-side .infra-products-menu .infra-link a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 15px;
}
.infra-header .infra-topbar .infra-left-side .infra-products-menu .infra-link a:hover {
  color: rgba(4, 42, 119, 0.8745098039);
}
.infra-header .infra-topbar .infra-left-side .infra-products-menu .infra-link.has-dropdown > a {
  display: flex;
  align-items: center;
  gap: 6px;
}
.infra-header .infra-topbar .infra-left-side .infra-products-menu .infra-link.has-dropdown > a .dropdown-icon {
  font-size: 12px;
  transition: transform 0.3s ease;
}
.infra-header .infra-topbar .infra-left-side .infra-products-menu .infra-link.has-dropdown:hover > a .dropdown-icon {
  transform: rotate(180deg);
}
.infra-header .infra-topbar .infra-left-side .infra-products-menu .infra-link .mega-dropdown {
  position: fixed;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  padding: 32px 0;
  min-width: 800px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  margin-top: 10px;
  z-index: 9999;
}
.infra-header .infra-topbar .infra-left-side .infra-products-menu .infra-link .mega-dropdown::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
  background: transparent;
}
.infra-header .infra-topbar .infra-left-side .infra-products-menu .infra-link .mega-dropdown .dropdown-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding: 0 32px;
  max-width: 1200px;
}
.infra-header .infra-topbar .infra-left-side .infra-products-menu .infra-link .mega-dropdown .dropdown-section .section-title {
  font-size: 13px;
  font-weight: 700;
  color: #8b8b8b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #f0f0f0;
}
.infra-header .infra-topbar .infra-left-side .infra-products-menu .infra-link .mega-dropdown .dropdown-section .section-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.infra-header .infra-topbar .infra-left-side .infra-products-menu .infra-link .mega-dropdown .dropdown-section .section-items .dropdown-item {
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  transition: all 0.2s ease;
  position: relative;
}
.infra-header .infra-topbar .infra-left-side .infra-products-menu .infra-link .mega-dropdown .dropdown-section .section-items .dropdown-item .item-arrow {
  font-size: 10px;
  color: rgba(4, 42, 119, 0.8745098039);
  margin-left: auto;
  margin-top: 5px;
  opacity: 0;
  transition: all 0.2s ease;
}
.infra-header .infra-topbar .infra-left-side .infra-products-menu .infra-link .mega-dropdown .dropdown-section .section-items .dropdown-item:hover {
  background-color: #f8f9fa;
  transform: translateX(4px);
}
.infra-header .infra-topbar .infra-left-side .infra-products-menu .infra-link .mega-dropdown .dropdown-section .section-items .dropdown-item:hover .item-arrow {
  opacity: 1;
}
.infra-header .infra-topbar .infra-left-side .infra-products-menu .infra-link .mega-dropdown .dropdown-section .section-items .dropdown-item .item-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: rgba(4, 42, 119, 0.8745098039);
  margin-top: 2px;
}
.infra-header .infra-topbar .infra-left-side .infra-products-menu .infra-link .mega-dropdown .dropdown-section .section-items .dropdown-item .item-content {
  flex: 1;
}
.infra-header .infra-topbar .infra-left-side .infra-products-menu .infra-link .mega-dropdown .dropdown-section .section-items .dropdown-item .item-content .item-title {
  font-size: 15px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.infra-header .infra-topbar .infra-left-side .infra-products-menu .infra-link .mega-dropdown .dropdown-section .section-items .dropdown-item .item-content .item-title .badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.infra-header .infra-topbar .infra-left-side .infra-products-menu .infra-link .mega-dropdown .dropdown-section .section-items .dropdown-item .item-content .item-title .badge.badge-new {
  background-color: #e7f5ff;
  color: #0066cc;
}
.infra-header .infra-topbar .infra-left-side .infra-products-menu .infra-link .mega-dropdown .dropdown-section .section-items .dropdown-item .item-content .item-title .badge.badge-popular {
  background-color: #fff3cd;
  color: #856404;
}
.infra-header .infra-topbar .infra-left-side .infra-products-menu .infra-link .mega-dropdown .dropdown-section .section-items .dropdown-item .item-content .item-title .badge.badge-ai {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
}
.infra-header .infra-topbar .infra-left-side .infra-products-menu .infra-link .mega-dropdown .dropdown-section .section-items .dropdown-item .item-content .item-description {
  font-size: 13px;
  color: #6c757d;
  line-height: 1.4;
}
.infra-header .infra-topbar .infra-left-side .infra-products-menu .infra-link .mega-dropdown .dropdown-featured {
  grid-column: 1/-1;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 20px 24px;
  border-radius: 8px;
  margin: 0 32px;
  margin-top: 24px;
}
.infra-header .infra-topbar .infra-left-side .infra-products-menu .infra-link .mega-dropdown .dropdown-featured a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: #ffffff;
}
.infra-header .infra-topbar .infra-left-side .infra-products-menu .infra-link .mega-dropdown .dropdown-featured a .featured-content .featured-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.infra-header .infra-topbar .infra-left-side .infra-products-menu .infra-link .mega-dropdown .dropdown-featured a .featured-content .featured-description {
  font-size: 13px;
  opacity: 0.9;
}
.infra-header .infra-topbar .infra-left-side .infra-products-menu .infra-link .mega-dropdown .dropdown-featured a .featured-icon {
  font-size: 24px;
  opacity: 0.8;
  transition: transform 0.3s ease;
}
.infra-header .infra-topbar .infra-left-side .infra-products-menu .infra-link .mega-dropdown .dropdown-featured a:hover .featured-icon {
  transform: translateX(4px);
}
.infra-header .infra-topbar .infra-left-side .infra-products-menu .infra-link:hover .mega-dropdown {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.infra-header .infra-topbar .infra-right-side .infra-account-button {
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: rgba(4, 42, 119, 0.8745098039);
  border: 2px solid rgba(4, 42, 119, 0.8745098039);
  color: #ffffff;
  padding: 8px 20px;
  transition: all 0.3s ease;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}
.infra-header .infra-topbar .infra-right-side .infra-account-button:hover {
  background-color: #ffffff;
  color: rgba(4, 42, 119, 0.8745098039);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 1400px) {
  .infra-header .infra-topbar .infra-left-side .infra-products-menu {
    gap: 25px;
  }
  .infra-header .infra-topbar .infra-left-side .infra-products-menu .infra-link .mega-dropdown {
    min-width: 700px;
  }
  .infra-header .infra-topbar .infra-left-side .infra-products-menu .infra-link .mega-dropdown .dropdown-inner {
    gap: 30px;
    padding: 0 24px;
  }
}
@media screen and (max-width: 1200px) {
  .infra-header .infra-topbar {
    padding: 10px 20px;
  }
  .infra-header .infra-topbar .infra-left-side .infra-products-menu {
    gap: 20px;
    margin-left: 15px;
  }
  .infra-header .infra-topbar .infra-left-side .infra-products-menu .infra-link a {
    font-size: 14px;
  }
  .infra-header .infra-topbar .infra-left-side .infra-products-menu .infra-link .mega-dropdown {
    min-width: 600px;
    max-width: 90vw;
  }
  .infra-header .infra-topbar .infra-left-side .infra-products-menu .infra-link .mega-dropdown .dropdown-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 0 20px;
  }
}
@media screen and (max-width: 992px) {
  .infra-header .infra-topbar .infra-left-side .infra-products-menu {
    display: none;
  }
}
.infra-hero {
  width: 100%;
  height: 50vw;
  background-color: #ffffff;
}
.infra-hero .infra-hero-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 90px;
}
.infra-hero .infra-hero-container .infra-hero-left {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.infra-hero .infra-hero-container .infra-hero-left .infra-hero-left-content {
  width: 100%;
  height: fit-content;
  padding: 0 40px;
}
.infra-hero .infra-hero-container .infra-hero-left .infra-hero-left-content .infra-hero-title {
  font-size: 40px;
  color: #000000;
  padding-left: 10px;
}
.infra-hero .infra-hero-container .infra-hero-left .infra-hero-left-content .infra-hero-title .infra-hero-title-bigger {
  display: inline-block;
  font-size: 60px;
  font-weight: 700;
  margin-top: 10px;
}
.infra-hero .infra-hero-container .infra-hero-left .infra-hero-left-content .search-input-wrapper {
  width: 90%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #8a8a8a;
  background-color: #ffffff;
  border-radius: 50px;
  padding: 15px 20px;
  margin-top: 40px;
}
.infra-hero .infra-hero-container .infra-hero-left .infra-hero-left-content .search-input-wrapper input {
  width: calc(100% - 40px);
  border: none;
  outline: none;
  background-color: none;
  font-size: 20px;
  letter-spacing: 0.5px;
}
.infra-hero .infra-hero-container .infra-hero-left .infra-hero-left-content .domain-pricing-grid {
  width: 80%;
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 60px;
  padding: 0 10px;
}
.infra-hero .infra-hero-container .infra-hero-left .infra-hero-left-content .domain-pricing-grid .domain-pricing-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 16px;
  padding: 5px 10px;
  background-color: rgba(4, 42, 119, 0.8745098039);
  color: #ffffff;
}
.infra-hero .infra-hero-container .infra-hero-left .infra-hero-left-content .domain-pricing-grid .domain-pricing-item .domain-ext {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
}
.infra-hero .infra-hero-container .infra-hero-left .infra-hero-left-content .domain-pricing-grid .domain-pricing-item .price-old {
  font-size: 10px;
  color: #dadada;
  text-decoration: line-through;
}
.infra-hero .infra-hero-container .infra-hero-left .infra-hero-left-content .domain-pricing-grid .domain-pricing-item .price-new {
  font-size: 10px;
  font-weight: 600;
  color: #ffffff;
}
.infra-hero .infra-hero-container .infra-hero-right {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.infra-hero .infra-hero-container .infra-hero-right .services-cards-container {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.infra-hero .infra-hero-container .infra-hero-right .services-cards-container .service-card {
  position: absolute;
  width: 176px;
  padding: 20px 16px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, z-index 0.3s ease;
  cursor: pointer;
}
.infra-hero .infra-hero-container .infra-hero-right .services-cards-container .service-card:hover {
  transform: translateY(-10px) scale(1.08);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  z-index: 100 !important;
}
.infra-hero .infra-hero-container .infra-hero-right .services-cards-container .service-card .service-icon {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.2);
  margin-bottom: 12px;
}
.infra-hero .infra-hero-container .infra-hero-right .services-cards-container .service-card .service-icon i {
  font-size: 20px;
  color: #ffffff;
}
.infra-hero .infra-hero-container .infra-hero-right .services-cards-container .service-card .service-name {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.3px;
}
.infra-hero .infra-hero-container .infra-hero-right .services-cards-container .service-card .service-price {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.infra-hero .infra-hero-container .infra-hero-right .services-cards-container .service-card .service-price .starting-text {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-weight: 500;
}
.infra-hero .infra-hero-container .infra-hero-right .services-cards-container .service-card .service-price .price-amount {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.infra-hero .infra-hero-container .infra-hero-right .services-cards-container .service-card .service-price .price-amount .price-period {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.85;
}
.infra-hero .infra-hero-container .infra-hero-right .services-cards-container .card-1 {
  background: linear-gradient(135deg, #4e54c8 0%, #8f94fb 100%);
  top: 5%;
  left: 25%;
  z-index: 5;
  animation: float-1 3s ease-in-out infinite;
}
.infra-hero .infra-hero-container .infra-hero-right .services-cards-container .card-2 {
  background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
  top: 5%;
  right: 25%;
  z-index: 4;
  animation: float-2 3.5s ease-in-out infinite;
}
.infra-hero .infra-hero-container .infra-hero-right .services-cards-container .card-3 {
  background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  z-index: 6;
  animation: float-3 4s ease-in-out infinite;
}
.infra-hero .infra-hero-container .infra-hero-right .services-cards-container .card-4 {
  background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
  bottom: 5%;
  right: 25%;
  z-index: 3;
  animation: float-4 3.2s ease-in-out infinite;
}
.infra-hero .infra-hero-container .infra-hero-right .services-cards-container .card-5 {
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  bottom: 5%;
  left: 25%;
  z-index: 2;
  animation: float-5 3.8s ease-in-out infinite;
}
.infra-hero .infra-hero-container .infra-hero-right .services-cards-container .card-6 {
  background: linear-gradient(135deg, #6366f1 0%, #a78bfa 100%);
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  z-index: 4;
  animation: float-6 3.3s ease-in-out infinite;
}
.infra-hero .infra-hero-container .infra-hero-right .services-cards-container .card-7 {
  background: linear-gradient(135deg, #fb923c 0%, #fbbf24 100%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 7;
  animation: float-7 3.6s ease-in-out infinite;
}
@keyframes float-1 {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
  }
  50% {
    transform: translateY(-12px) translateX(8px);
  }
}
@keyframes float-2 {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
  }
  50% {
    transform: translateY(-15px) translateX(-6px);
  }
}
@keyframes float-3 {
  0%, 100% {
    transform: translateY(-50%) translateX(0px);
  }
  50% {
    transform: translateY(-50%) translateX(-10px);
  }
}
@keyframes float-4 {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
  }
  50% {
    transform: translateY(-14px) translateX(-8px);
  }
}
@keyframes float-5 {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
  }
  50% {
    transform: translateY(-10px) translateX(12px);
  }
}
@keyframes float-6 {
  0%, 100% {
    transform: translateY(-50%) translateX(0px);
  }
  50% {
    transform: translateY(-50%) translateX(10px);
  }
}
@keyframes float-7 {
  0%, 100% {
    transform: translate(-50%, -50%) translateY(0px);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-12px);
  }
}

.hero-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  padding: 120px 0;
  background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 50%, #f8fafc 100%);
  overflow: hidden;
}
.hero-section .hero-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
}
.hero-section .hero-content {
  flex: 1;
  width: 40%;
  animation: fadeInLeft 0.8s ease-out;
  padding-right: 50px;
}
.hero-section .hero-content .hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, #e0e7ff 0%, #dbeafe 100%);
  border: 1px solid #93c5fd;
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 24px;
  animation: slideDown 0.6s ease-out;
}
.hero-section .hero-content .hero-badge span {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1e40af;
  letter-spacing: 0.3px;
}
.hero-section .hero-content .hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  color: #111827;
  margin-bottom: 24px;
  animation: fadeIn 0.8s ease-out 0.2s both;
}
.hero-section .hero-content .hero-title .highlight {
  background: linear-gradient(135deg, rgba(4, 42, 119, 0.8745098039) 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}
.hero-section .hero-content .hero-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #6b7280;
  margin-bottom: 32px;
  animation: fadeIn 0.8s ease-out 0.4s both;
}
.hero-section .hero-content .hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  animation: fadeIn 0.8s ease-out 0.6s both;
}
.hero-section .hero-content .hero-actions .btn {
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap;
}
.hero-section .hero-content .hero-actions .btn.btn-primary {
  background: linear-gradient(135deg, rgba(4, 42, 119, 0.8745098039) 0%, #1e40af 100%);
  color: white;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}
.hero-section .hero-content .hero-actions .btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}
.hero-section .hero-content .hero-actions .btn.btn-primary .icon-arrow-right::after {
  content: "→";
  font-size: 1.2rem;
}
.hero-section .hero-content .hero-actions .btn.btn-secondary {
  background: white;
  color: rgba(4, 42, 119, 0.8745098039);
  border: 2px solid rgba(4, 42, 119, 0.8745098039);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.hero-section .hero-content .hero-actions .btn.btn-secondary:hover {
  background: rgba(4, 42, 119, 0.8745098039);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}
.hero-section .hero-content .hero-features {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  animation: fadeIn 0.8s ease-out 0.8s both;
}
.hero-section .hero-content .hero-features .feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-section .hero-content .hero-features .feature-item .icon-check {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-section .hero-content .hero-features .feature-item .icon-check::after {
  content: "✓";
  color: white;
  font-size: 12px;
  font-weight: bold;
}
.hero-section .hero-content .hero-features .feature-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: #4b5563;
}
.hero-section .hero-image {
  flex: 1;
  width: 40%;
  position: relative;
  animation: fadeInRight 0.8s ease-out;
}
.hero-section .hero-image .hero-img {
  max-width: 550px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}
.hero-section .hero-image .hero-img:hover {
  transform: scale(1.02);
}
.hero-section .hero-image .hero-stats {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  background: white;
  padding: 20px 10px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  animation: slideUpWithTransform 0.8s ease-out 1s both;
}
.hero-section .hero-image .hero-stats .stat-item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid #e5e7eb;
}
.hero-section .hero-image .hero-stats .stat-item:last-child {
  border-right: none;
}
.hero-section .hero-image .hero-stats .stat-item .stat-number {
  font-size: 1.25rem;
  font-weight: 800;
  color: rgba(4, 42, 119, 0.8745098039);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-section .hero-image .hero-stats .stat-item .stat-label {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
}
.hero-section .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.hero-section .hero-background .bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  background: linear-gradient(135deg, rgba(4, 42, 119, 0.8745098039) 0%, #3b82f6 100%);
  animation: float 20s ease-in-out infinite;
}
.hero-section .hero-background .bg-shape.shape-1 {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}
.hero-section .hero-background .bg-shape.shape-2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -100px;
  animation-delay: 7s;
}
.hero-section .hero-background .bg-shape.shape-3 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 10%;
  animation-delay: 14s;
}

@keyframes slideUpWithTransform {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
@media (max-width: 1024px) {
  .hero-section {
    padding: 60px 0 40px;
    min-height: auto;
  }
  .hero-section .hero-container {
    gap: 40px;
  }
  .hero-section .hero-content .hero-title {
    font-size: 2.5rem;
  }
  .hero-section .hero-content .hero-description {
    font-size: 1rem;
  }
  .hero-section .hero-image .hero-stats {
    bottom: -20px;
    padding: 15px 20px;
    gap: 15px;
  }
  .hero-section .hero-image .hero-stats .stat-item {
    padding: 0 15px;
  }
  .hero-section .hero-image .hero-stats .stat-item .stat-number {
    font-size: 1.5rem;
  }
  .hero-section .hero-image .hero-stats .stat-item .stat-label {
    font-size: 0.75rem;
  }
}
@media (max-width: 768px) {
  .hero-section {
    padding: 40px 0 30px;
  }
  .hero-section .hero-container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  .hero-section .hero-content {
    max-width: 100%;
  }
  .hero-section .hero-content .hero-badge {
    display: inline-block;
  }
  .hero-section .hero-content .hero-title {
    font-size: 2rem;
  }
  .hero-section .hero-content .hero-description {
    font-size: 1rem;
  }
  .hero-section .hero-content .hero-actions {
    justify-content: center;
  }
  .hero-section .hero-content .hero-actions .btn {
    flex: 1;
    min-width: 140px;
    justify-content: center;
  }
  .hero-section .hero-content .hero-features {
    justify-content: center;
  }
  .hero-section .hero-image {
    max-width: 100%;
    width: 100%;
  }
  .hero-section .hero-image .hero-stats {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: 20px;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
  }
  .hero-section .hero-image .hero-stats .stat-item {
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
    padding: 10px 0;
  }
  .hero-section .hero-image .hero-stats .stat-item:last-child {
    border-bottom: none;
  }
  .hero-section .hero-background .bg-shape.shape-1 {
    width: 250px;
    height: 250px;
    top: -125px;
    right: -75px;
  }
  .hero-section .hero-background .bg-shape.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -50px;
  }
  .hero-section .hero-background .bg-shape.shape-3 {
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 480px) {
  .hero-section {
    padding: 30px 0 20px;
  }
  .hero-section .hero-container {
    padding: 0 15px;
  }
  .hero-section .hero-content .hero-badge span {
    font-size: 0.75rem;
  }
  .hero-section .hero-content .hero-title {
    font-size: 1.75rem;
    margin-bottom: 20px;
  }
  .hero-section .hero-content .hero-description {
    font-size: 0.9rem;
    margin-bottom: 24px;
  }
  .hero-section .hero-content .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-section .hero-content .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-section .hero-content .hero-features {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero-section .hero-image .hero-img {
    border-radius: 12px;
  }
  .hero-section .hero-image .hero-stats {
    padding: 15px;
    gap: 10px;
  }
  .hero-section .hero-image .hero-stats .stat-item {
    padding: 8px 0;
  }
  .hero-section .hero-image .hero-stats .stat-item .stat-number {
    font-size: 1.25rem;
  }
  .hero-section .hero-image .hero-stats .stat-item .stat-label {
    font-size: 0.7rem;
  }
}
.hosting-pricing {
  width: 100%;
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}
.hosting-pricing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.3;
  z-index: 0;
}
.hosting-pricing .hosting-pricing-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.hosting-pricing .hosting-type-selector {
  margin-bottom: 30px;
}
.hosting-pricing .hosting-type-selector .selector-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  background: white;
  padding: 6px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 0 auto;
}
.hosting-pricing .hosting-type-selector .selector-tabs .tab-button {
  flex: 1;
  padding: 12px 16px;
  border: none;
  outline: none;
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.hosting-pricing .hosting-type-selector .selector-tabs .tab-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(4, 42, 119, 0.8745098039), #ff5405);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}
.hosting-pricing .hosting-type-selector .selector-tabs .tab-button i {
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}
.hosting-pricing .hosting-type-selector .selector-tabs .tab-button span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #000000;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}
.hosting-pricing .hosting-type-selector .selector-tabs .tab-button small {
  display: none;
}
.hosting-pricing .hosting-type-selector .selector-tabs .tab-button.active {
  background: rgba(4, 42, 119, 0.8745098039);
  box-shadow: 0 4px 15px rgba(4, 42, 119, 0.3);
}
.hosting-pricing .hosting-type-selector .selector-tabs .tab-button.active i, .hosting-pricing .hosting-type-selector .selector-tabs .tab-button.active span {
  color: #ffffff;
}
.hosting-pricing .hosting-type-selector .selector-tabs .tab-button:hover:not(.active)::before {
  opacity: 0.1;
}
.hosting-pricing .hosting-type-selector .selector-tabs .tab-button .icon-wordpress::before {
  content: "📝";
}
.hosting-pricing .hosting-type-selector .selector-tabs .tab-button .icon-shared::before {
  content: "🌐";
}
.hosting-pricing .hosting-type-selector .selector-tabs .tab-button .icon-vps::before {
  content: "⚡";
}
.hosting-pricing .hosting-plans {
  width: 100%;
  display: none;
  margin-top: 60px;
}
.hosting-pricing .hosting-plans.active {
  display: block;
  animation: fadeInUp 0.6s ease;
}
.hosting-pricing .hosting-plans .plans-grid {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}
.hosting-pricing .hosting-plans .plan-card {
  width: 30%;
  background: white;
  border-radius: 16px;
  padding: 25px 20px;
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
}
.hosting-pricing .hosting-plans .plan-card:hover {
  transform: translateY(-10px);
}
.hosting-pricing .hosting-plans .plan-card.featured {
  border: 2px solid rgba(4, 42, 119, 0.8745098039);
  transform: scale(1.02);
  background: #ffffff;
}
.hosting-pricing .hosting-plans .plan-card.featured .plan-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  color: rgba(4, 42, 119, 0.8745098039);
  border: 2px solid rgba(4, 42, 119, 0.8745098039);
  padding: 4px 16px;
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(4, 42, 119, 0.3);
}
.hosting-pricing .hosting-plans .plan-card .plan-header {
  text-align: center;
  margin-bottom: 20px;
}
.hosting-pricing .hosting-plans .plan-card .plan-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 12px;
}
.hosting-pricing .hosting-plans .plan-card .plan-header .plan-price {
  margin-bottom: 12px;
}
.hosting-pricing .hosting-plans .plan-card .plan-header .plan-price .currency {
  font-size: 1rem;
  color: #8a8a8a;
  vertical-align: top;
}
.hosting-pricing .hosting-plans .plan-card .plan-header .plan-price .amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: #000000;
  line-height: 1;
}
.hosting-pricing .hosting-plans .plan-card .plan-header .plan-price .period {
  font-size: 0.85rem;
  color: #8a8a8a;
}
.hosting-pricing .hosting-plans .plan-card .plan-header .plan-description {
  color: #8a8a8a;
  font-size: 0.8rem;
  line-height: 1.4;
}
.hosting-pricing .hosting-plans .plan-card .plan-features {
  margin-bottom: 20px;
}
.hosting-pricing .hosting-plans .plan-card .plan-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hosting-pricing .hosting-plans .plan-card .plan-features ul li {
  display: flex;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid #f1f5f9;
  color: #000000;
  font-size: 0.8rem;
}
.hosting-pricing .hosting-plans .plan-card .plan-features ul li:last-child {
  border-bottom: none;
}
.hosting-pricing .hosting-plans .plan-card .plan-features ul li.unavailable {
  color: #8a8a8a;
  opacity: 0.7;
}
.hosting-pricing .hosting-plans .plan-card .plan-features ul li .check-icon {
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, #28a745, #059669);
  border-radius: 50%;
  margin-right: 10px;
  position: relative;
  flex-shrink: 0;
}
.hosting-pricing .hosting-plans .plan-card .plan-features ul li .check-icon::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 10px;
  font-weight: bold;
}
.hosting-pricing .hosting-plans .plan-card .plan-features ul li .unavailable-icon {
  width: 16px;
  height: 16px;
  background: #8a8a8a;
  border-radius: 50%;
  margin-right: 10px;
  position: relative;
  flex-shrink: 0;
}
.hosting-pricing .hosting-plans .plan-card .plan-features ul li .unavailable-icon::after {
  content: "✗";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 10px;
  font-weight: bold;
}
.hosting-pricing .hosting-plans .plan-card .plan-action {
  text-align: center;
}
.hosting-pricing .hosting-plans .plan-card .plan-action .btn {
  width: 100%;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.hosting-pricing .hosting-plans .plan-card .plan-action .btn.btn-primary {
  background: rgba(4, 42, 119, 0.8745098039);
  color: #ffffff;
  box-shadow: 0 3px 10px rgba(4, 42, 119, 0.3);
}
.hosting-pricing .hosting-plans .plan-card .plan-action .btn.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(4, 42, 119, 0.4);
}
.hosting-pricing .hosting-features {
  width: 90%;
  margin-left: 5%;
  text-align: center;
  background: white;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.3s forwards;
}
.hosting-pricing .hosting-features h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 25px;
}
.hosting-pricing .hosting-features .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}
.hosting-pricing .hosting-features .features-grid .feature-item {
  text-align: center;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}
.hosting-pricing .hosting-features .features-grid .feature-item:nth-child(1) {
  animation-delay: 0.5s;
}
.hosting-pricing .hosting-features .features-grid .feature-item:nth-child(2) {
  animation-delay: 0.6s;
}
.hosting-pricing .hosting-features .features-grid .feature-item:nth-child(3) {
  animation-delay: 0.7s;
}
.hosting-pricing .hosting-features .features-grid .feature-item:nth-child(4) {
  animation-delay: 0.8s;
}
.hosting-pricing .hosting-features .features-grid .feature-item i {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 12px;
}
.hosting-pricing .hosting-features .features-grid .feature-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 8px;
}
.hosting-pricing .hosting-features .features-grid .feature-item p {
  color: #8a8a8a;
  line-height: 1.4;
  font-size: 0.8rem;
}
.hosting-pricing .hosting-features .features-grid .feature-item .icon-security::before {
  content: "🛡️";
}
.hosting-pricing .hosting-features .features-grid .feature-item .icon-backup::before {
  content: "💾";
}
.hosting-pricing .hosting-features .features-grid .feature-item .icon-support::before {
  content: "🎧";
}
.hosting-pricing .hosting-features .features-grid .feature-item .icon-uptime::before {
  content: "⚡";
}

@media (max-width: 768px) {
  .hosting-pricing {
    padding: 30px 0;
  }
  .hosting-pricing .hosting-type-selector {
    margin-bottom: 25px;
  }
  .hosting-pricing .hosting-type-selector .selector-tabs {
    flex-direction: column;
    gap: 6px;
  }
  .hosting-pricing .hosting-type-selector .selector-tabs .tab-button {
    padding: 10px 12px;
    justify-content: center;
  }
  .hosting-pricing .hosting-type-selector .selector-tabs .tab-button i {
    font-size: 1rem;
  }
  .hosting-pricing .hosting-type-selector .selector-tabs .tab-button span {
    font-size: 0.8rem;
  }
  .hosting-pricing .hosting-plans .plans-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 30px;
  }
  .hosting-pricing .hosting-plans .plan-card {
    padding: 20px 15px;
  }
  .hosting-pricing .hosting-plans .plan-card.featured {
    transform: none;
  }
  .hosting-pricing .hosting-plans .plan-card .plan-header .plan-price .amount {
    font-size: 1.8rem;
  }
  .hosting-pricing .hosting-features {
    padding: 25px 15px;
  }
  .hosting-pricing .hosting-features h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }
  .hosting-pricing .hosting-features .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .hosting-pricing .hosting-features .features-grid .feature-item i {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
}
@media (max-width: 480px) {
  .hosting-pricing .hosting-pricing-container {
    padding: 0 10px;
  }
  .hosting-pricing .hosting-type-selector .selector-tabs .tab-button {
    padding: 8px 10px;
  }
  .hosting-pricing .hosting-type-selector .selector-tabs .tab-button i {
    font-size: 0.9rem;
  }
  .hosting-pricing .hosting-type-selector .selector-tabs .tab-button span {
    font-size: 0.75rem;
  }
  .hosting-pricing .hosting-plans .plan-card {
    padding: 15px 12px;
  }
  .hosting-pricing .hosting-plans .plan-card .plan-header .plan-price .amount {
    font-size: 1.6rem;
  }
}
.data-servers-section {
  position: relative;
  width: 100%;
  padding: 100px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  overflow: hidden;
}
.data-servers-section .servers-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
  z-index: 2;
}
.data-servers-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.data-servers-section .section-header .header-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.2) 0%, rgba(147, 197, 253, 0.2) 100%);
  border: 1px solid rgba(147, 197, 253, 0.3);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 20px;
}
.data-servers-section .section-header .header-badge span {
  font-size: 0.875rem;
  font-weight: 600;
  color: #93c5fd;
  letter-spacing: 0.5px;
}
.data-servers-section .section-header .section-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  color: #f8fafc;
  margin-bottom: 20px;
}
.data-servers-section .section-header .section-title .highlight {
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.data-servers-section .section-header .section-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #cbd5e1;
  max-width: 700px;
  margin: 0 auto;
}
.data-servers-section .servers-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 80px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.data-servers-section .server-card {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  border: 2px solid rgba(71, 85, 105, 0.5);
  display: flex;
  flex-direction: row;
  align-items: center;
}
.data-servers-section .server-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border-color: rgba(96, 165, 250, 0.5);
}
.data-servers-section .server-card.featured {
  border: 2px solid rgba(96, 165, 250, 0.6);
  box-shadow: 0 15px 50px rgba(59, 130, 246, 0.3);
}
.data-servers-section .server-card.featured .server-image-container {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
}
.data-servers-section .server-card.featured:hover {
  box-shadow: 0 25px 70px rgba(59, 130, 246, 0.4);
}
.data-servers-section .server-card .server-image-container {
  position: relative;
  width: 35%;
  min-width: 300px;
  height: auto;
  align-self: stretch;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  flex-shrink: 0;
}
.data-servers-section .server-card .server-image-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(96, 165, 250, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.data-servers-section .server-card .server-image-container .server-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
}
.data-servers-section .server-card .server-image-container .server-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 3;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.data-servers-section .server-card .server-image-container .server-badge.popular {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
}
.data-servers-section .server-card .server-image-container .server-badge.recommended {
  background: linear-gradient(135deg, rgba(4, 42, 119, 0.8745098039) 0%, #1e40af 100%);
  color: white;
}
.data-servers-section .server-card:hover .server-image-container::before {
  opacity: 1;
}
.data-servers-section .server-card:hover .server-image-container .server-image {
  transform: scale(1.05);
}
.data-servers-section .server-card .server-content {
  padding: 30px;
  flex: 1;
}
.data-servers-section .server-card .server-header {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(71, 85, 105, 0.5);
}
.data-servers-section .server-card .server-header .server-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 8px;
  line-height: 1.3;
}
.data-servers-section .server-card .server-header .server-category {
  font-size: 0.9rem;
  color: #94a3b8;
  font-weight: 500;
}
.data-servers-section .server-card .server-specs {
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.data-servers-section .server-card .server-specs .spec-group {
  margin-bottom: 0;
}
.data-servers-section .server-card .server-specs .spec-group h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.data-servers-section .server-card .server-specs .spec-group h4::before {
  content: "";
  width: 4px;
  height: 16px;
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  border-radius: 2px;
}
.data-servers-section .server-card .server-specs .spec-group .spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.data-servers-section .server-card .server-specs .spec-group .spec-list li {
  display: flex;
  align-items: flex-start;
  padding: 6px 0;
  color: #cbd5e1;
  font-size: 0.875rem;
  line-height: 1.5;
}
.data-servers-section .server-card .server-specs .spec-group .spec-list li .spec-icon {
  width: 16px;
  height: 16px;
  min-width: 16px;
  background: linear-gradient(135deg, rgba(4, 42, 119, 0.8745098039) 0%, #3b82f6 100%);
  border-radius: 50%;
  margin-right: 10px;
  margin-top: 2px;
  position: relative;
}
.data-servers-section .server-card .server-specs .spec-group .spec-list li .spec-icon::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 10px;
  font-weight: bold;
}
.data-servers-section .server-card .server-pricing {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.5) 0%, rgba(30, 58, 138, 0.3) 100%);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  margin-bottom: 25px;
  border: 1px solid rgba(96, 165, 250, 0.2);
}
.data-servers-section .server-card .server-pricing .price-label {
  font-size: 0.875rem;
  color: #94a3b8;
  font-weight: 500;
  margin-bottom: 8px;
}
.data-servers-section .server-card .server-pricing .price-amount {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}
.data-servers-section .server-card .server-pricing .price-amount .currency {
  font-size: 1.25rem;
  color: #94a3b8;
  font-weight: 600;
  align-self: flex-start;
  margin-top: 8px;
}
.data-servers-section .server-card .server-pricing .price-amount .amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: #60a5fa;
  line-height: 1;
}
.data-servers-section .server-card .server-pricing .price-amount .period {
  font-size: 1rem;
  color: #94a3b8;
  font-weight: 500;
  align-self: flex-end;
  margin-bottom: 6px;
}
.data-servers-section .server-card .server-pricing .price-note {
  font-size: 0.8rem;
  color: #94a3b8;
  font-style: italic;
}
.data-servers-section .server-card .server-pricing-compact {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.5) 0%, rgba(30, 58, 138, 0.3) 100%);
  border-radius: 10px;
  border: 1px solid rgba(96, 165, 250, 0.2);
  flex: 1;
}
.data-servers-section .server-card .server-pricing-compact .price-label {
  font-size: 0.875rem;
  color: #94a3b8;
  font-weight: 500;
  white-space: nowrap;
}
.data-servers-section .server-card .server-pricing-compact .price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  white-space: nowrap;
}
.data-servers-section .server-card .server-pricing-compact .price-amount .currency {
  font-size: 1rem;
  color: #94a3b8;
  font-weight: 600;
}
.data-servers-section .server-card .server-pricing-compact .price-amount .amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: #60a5fa;
  line-height: 1;
}
.data-servers-section .server-card .server-pricing-compact .price-amount .period {
  font-size: 0.875rem;
  color: #94a3b8;
  font-weight: 500;
}
.data-servers-section .server-card .server-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}
.data-servers-section .server-card .server-actions .btn {
  padding: 14px 24px;
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap;
  width: auto;
  flex-shrink: 0;
}
.data-servers-section .server-card .server-actions .btn.btn-primary {
  background: linear-gradient(135deg, rgba(4, 42, 119, 0.8745098039) 0%, #1e40af 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}
.data-servers-section .server-card .server-actions .btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}
.data-servers-section .server-card .server-actions .btn.btn-primary .icon-arrow::after {
  content: "→";
  font-size: 1.2rem;
}
.data-servers-section .server-card .server-actions .btn.btn-secondary {
  background: transparent;
  color: #60a5fa;
  border: 2px solid #60a5fa;
}
.data-servers-section .server-card .server-actions .btn.btn-secondary:hover {
  background: rgba(96, 165, 250, 0.1);
  transform: translateY(-2px);
}
.data-servers-section .infra-servers-features {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%) !important;
  border-radius: 20px !important;
  padding: 50px !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3) !important;
  margin-bottom: 60px !important;
  border: 1px solid rgba(71, 85, 105, 0.5) !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.data-servers-section .infra-servers-features h3 {
  text-align: center !important;
  font-size: 2rem !important;
  font-weight: 700 !important;
  color: #f8fafc !important;
  margin-bottom: 40px !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.data-servers-section .infra-servers-features .infra-features-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
  gap: 30px !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.data-servers-section .infra-servers-features .infra-features-grid .infra-feature-item {
  text-align: center !important;
  padding: 20px !important;
  border-radius: 12px !important;
  transition: all 0.3s ease;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.data-servers-section .infra-servers-features .infra-features-grid .infra-feature-item:hover {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.5) 0%, rgba(30, 58, 138, 0.3) 100%);
  transform: translateY(-5px);
}
.data-servers-section .infra-servers-features .infra-features-grid .infra-feature-item:hover .infra-feature-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}
.data-servers-section .infra-servers-features .infra-features-grid .infra-feature-item .infra-feature-icon {
  width: 70px !important;
  height: 70px !important;
  margin: 0 auto 20px !important;
  background: linear-gradient(135deg, rgba(4, 42, 119, 0.8745098039) 0%, #3b82f6 100%) !important;
  border-radius: 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3) !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.data-servers-section .infra-servers-features .infra-features-grid .infra-feature-item .infra-feature-icon i {
  font-size: 2rem !important;
  color: white !important;
  font-style: normal !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.data-servers-section .infra-servers-features .infra-features-grid .infra-feature-item .infra-feature-icon .infra-icon-performance::before {
  content: "⚡" !important;
}
.data-servers-section .infra-servers-features .infra-features-grid .infra-feature-item .infra-feature-icon .infra-icon-reliability::before {
  content: "🛡️" !important;
}
.data-servers-section .infra-servers-features .infra-features-grid .infra-feature-item .infra-feature-icon .infra-icon-support::before {
  content: "🎧" !important;
}
.data-servers-section .infra-servers-features .infra-features-grid .infra-feature-item .infra-feature-icon .infra-icon-security::before {
  content: "🔒" !important;
}
.data-servers-section .infra-servers-features .infra-features-grid .infra-feature-item h4 {
  font-size: 1.125rem !important;
  font-weight: 700 !important;
  color: #f8fafc !important;
  margin-bottom: 10px !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.data-servers-section .infra-servers-features .infra-features-grid .infra-feature-item p {
  font-size: 0.9rem !important;
  line-height: 1.6 !important;
  color: #cbd5e1 !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.data-servers-section .servers-cta {
  background: linear-gradient(135deg, rgba(4, 42, 119, 0.8745098039) 0%, #1e40af 100%);
  border-radius: 20px;
  padding: 50px;
  text-align: center;
  box-shadow: 0 15px 50px rgba(37, 99, 235, 0.3);
  position: relative;
  overflow: hidden;
}
.data-servers-section .servers-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}
.data-servers-section .servers-cta .cta-content {
  position: relative;
  z-index: 2;
}
.data-servers-section .servers-cta .cta-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
}
.data-servers-section .servers-cta .cta-content p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.data-servers-section .servers-cta .cta-content .cta-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
.data-servers-section .servers-cta .cta-content .cta-actions .btn {
  padding: 16px 32px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  border: 2px solid transparent;
}
.data-servers-section .servers-cta .cta-content .cta-actions .btn.btn-primary {
  background: white;
  color: rgba(4, 42, 119, 0.8745098039);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.data-servers-section .servers-cta .cta-content .cta-actions .btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.data-servers-section .servers-cta .cta-content .cta-actions .btn.btn-primary .icon-phone::after {
  content: "📞";
  font-size: 1rem;
}
.data-servers-section .servers-cta .cta-content .cta-actions .btn.btn-outline {
  background: transparent;
  color: #f8fafc;
  border: 2px solid #f8fafc;
}
.data-servers-section .servers-cta .cta-content .cta-actions .btn.btn-outline:hover {
  background: #f8fafc;
  color: rgba(4, 42, 119, 0.8745098039);
  transform: translateY(-2px);
}
.data-servers-section .servers-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.data-servers-section .servers-background .bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  background: linear-gradient(135deg, rgba(4, 42, 119, 0.8745098039) 0%, #3b82f6 100%);
  animation: float 20s ease-in-out infinite;
}
.data-servers-section .servers-background .bg-shape.shape-1 {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}
.data-servers-section .servers-background .bg-shape.shape-2 {
  width: 350px;
  height: 350px;
  bottom: -175px;
  left: -100px;
  animation-delay: 7s;
}
.data-servers-section .servers-background .bg-shape.shape-3 {
  width: 250px;
  height: 250px;
  top: 50%;
  left: 15%;
  animation-delay: 14s;
}

@media (max-width: 1200px) {
  .data-servers-section .server-card {
    flex-direction: column;
  }
  .data-servers-section .server-card .server-image-container {
    width: 100%;
    min-height: 300px;
  }
  .data-servers-section .server-card .server-specs {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .data-servers-section {
    padding: 60px 0;
  }
  .data-servers-section .servers-container {
    padding: 0 20px;
  }
  .data-servers-section .section-header {
    margin-bottom: 40px;
  }
  .data-servers-section .section-header .section-title {
    font-size: 2rem;
  }
  .data-servers-section .section-header .section-description {
    font-size: 1rem;
  }
  .data-servers-section .servers-grid {
    gap: 25px;
    margin-bottom: 50px;
  }
  .data-servers-section .server-card {
    flex-direction: column;
  }
  .data-servers-section .server-card .server-image-container {
    width: 100%;
    min-height: 250px;
    padding: 0;
  }
  .data-servers-section .server-card .server-content {
    padding: 20px;
  }
  .data-servers-section .server-card .server-header .server-name {
    font-size: 1.25rem;
  }
  .data-servers-section .server-card .server-specs {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .data-servers-section .server-card .server-pricing-compact {
    padding: 10px 14px;
    font-size: 0.85rem;
  }
  .data-servers-section .server-card .server-pricing-compact .price-label {
    font-size: 0.8rem;
  }
  .data-servers-section .server-card .server-pricing-compact .price-amount .amount {
    font-size: 1.25rem;
  }
  .data-servers-section .server-card .server-pricing-compact .price-amount .period {
    font-size: 0.8rem;
  }
  .data-servers-section .server-card .server-actions {
    flex-wrap: wrap;
  }
  .data-servers-section .server-card .server-actions .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  .data-servers-section .infra-servers-features {
    padding: 30px 20px !important;
    margin-bottom: 40px !important;
  }
  .data-servers-section .infra-servers-features h3 {
    font-size: 1.5rem !important;
    margin-bottom: 30px !important;
  }
  .data-servers-section .infra-servers-features .infra-features-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .data-servers-section .servers-cta {
    padding: 40px 20px;
  }
  .data-servers-section .servers-cta .cta-content h3 {
    font-size: 1.5rem;
  }
  .data-servers-section .servers-cta .cta-content p {
    font-size: 1rem;
  }
  .data-servers-section .servers-cta .cta-content .cta-actions {
    flex-direction: column;
    width: 100%;
  }
  .data-servers-section .servers-cta .cta-content .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .data-servers-section .servers-background .bg-shape.shape-1 {
    width: 250px;
    height: 250px;
    top: -125px;
    right: -75px;
  }
  .data-servers-section .servers-background .bg-shape.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -50px;
  }
  .data-servers-section .servers-background .bg-shape.shape-3 {
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 480px) {
  .data-servers-section {
    padding: 40px 0;
  }
  .data-servers-section .servers-container {
    padding: 0 15px;
  }
  .data-servers-section .section-header .header-badge span {
    font-size: 0.75rem;
  }
  .data-servers-section .section-header .section-title {
    font-size: 1.75rem;
    margin-bottom: 15px;
  }
  .data-servers-section .section-header .section-description {
    font-size: 0.9rem;
  }
  .data-servers-section .server-card {
    flex-direction: column;
  }
  .data-servers-section .server-card .server-image-container {
    width: 100%;
    min-width: auto;
    min-height: 200px;
    padding: 0;
  }
  .data-servers-section .server-card .server-content {
    padding: 20px 15px;
  }
  .data-servers-section .server-card .server-specs {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .data-servers-section .server-card .server-specs .spec-group h4 {
    font-size: 0.9rem;
  }
  .data-servers-section .server-card .server-specs .spec-group .spec-list li {
    font-size: 0.8rem;
  }
  .data-servers-section .server-card .server-pricing-compact {
    padding: 10px 12px;
    gap: 6px;
  }
  .data-servers-section .server-card .server-pricing-compact .price-label {
    font-size: 0.75rem;
  }
  .data-servers-section .server-card .server-pricing-compact .price-amount {
    gap: 3px;
  }
  .data-servers-section .server-card .server-pricing-compact .price-amount .currency {
    font-size: 0.9rem;
  }
  .data-servers-section .server-card .server-pricing-compact .price-amount .amount {
    font-size: 1.1rem;
  }
  .data-servers-section .server-card .server-pricing-compact .price-amount .period {
    font-size: 0.75rem;
  }
  .data-servers-section .server-card .server-actions {
    flex-wrap: wrap;
    gap: 10px;
  }
  .data-servers-section .server-card .server-actions .btn {
    padding: 12px 18px;
    font-size: 0.85rem;
  }
  .data-servers-section .infra-servers-features {
    padding: 25px 15px !important;
  }
  .data-servers-section .infra-servers-features h3 {
    font-size: 1.25rem !important;
  }
  .data-servers-section .infra-servers-features .infra-features-grid .infra-feature-item {
    padding: 15px !important;
  }
  .data-servers-section .infra-servers-features .infra-features-grid .infra-feature-item .infra-feature-icon {
    width: 60px !important;
    height: 60px !important;
    margin-bottom: 15px !important;
  }
  .data-servers-section .infra-servers-features .infra-features-grid .infra-feature-item .infra-feature-icon i {
    font-size: 1.75rem !important;
  }
  .data-servers-section .infra-servers-features .infra-features-grid .infra-feature-item h4 {
    font-size: 1rem !important;
  }
  .data-servers-section .infra-servers-features .infra-features-grid .infra-feature-item p {
    font-size: 0.85rem !important;
  }
  .data-servers-section .servers-cta {
    padding: 30px 15px;
  }
  .data-servers-section .servers-cta .cta-content h3 {
    font-size: 1.25rem;
  }
  .data-servers-section .servers-cta .cta-content p {
    font-size: 0.9rem;
  }
  .data-servers-section .servers-cta .cta-content .cta-actions .btn {
    padding: 14px 24px;
    font-size: 0.9rem;
  }
}
.infra-reviews-section {
  position: relative;
  width: 100%;
  padding: 100px 0 0px 0;
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
  overflow: hidden;
}
.infra-reviews-section * {
  box-sizing: border-box;
}
.infra-reviews-section .infra-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.infra-reviews-section .reviews-header {
  text-align: center;
  margin-bottom: 60px;
}
.infra-reviews-section .reviews-header .reviews-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  margin: 0;
}
@media (max-width: 768px) {
  .infra-reviews-section .reviews-header .reviews-title {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .infra-reviews-section .reviews-header .reviews-title {
    font-size: 28px;
  }
}
.infra-reviews-section .reviews-carousel {
  position: relative;
  margin-bottom: 40px;
  width: 100%;
  overflow: hidden;
}
.infra-reviews-section .reviews-carousel .swiper {
  padding: 20px 60px 40px;
  overflow: visible;
  width: 100%;
  max-width: 100%;
}
@media (max-width: 768px) {
  .infra-reviews-section .reviews-carousel .swiper {
    padding: 20px 50px 40px;
  }
}
@media (max-width: 480px) {
  .infra-reviews-section .reviews-carousel .swiper {
    padding: 20px 40px 40px;
  }
}
.infra-reviews-section .reviews-carousel .swiper-wrapper {
  display: flex;
  align-items: stretch;
  transition-timing-function: ease-in-out;
}
.infra-reviews-section .reviews-carousel .swiper-slide {
  height: auto;
  display: flex;
  box-sizing: border-box;
  flex-shrink: 0;
  min-width: 0;
}
.infra-reviews-section .reviews-carousel .review-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  min-width: 0;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}
.infra-reviews-section .reviews-carousel .review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
@media (max-width: 768px) {
  .infra-reviews-section .reviews-carousel .review-card {
    padding: 24px;
  }
}
.infra-reviews-section .reviews-carousel .review-card .review-content {
  margin-bottom: 24px;
  flex-grow: 1;
}
.infra-reviews-section .reviews-carousel .review-card .review-content .review-quote {
  margin-bottom: 20px;
}
.infra-reviews-section .reviews-carousel .review-card .review-content .review-quote p {
  font-size: 18px;
  line-height: 1.6;
  color: #2d3748;
  margin: 0;
  position: relative;
}
.infra-reviews-section .reviews-carousel .review-card .review-content .review-quote p::before {
  content: '"';
  font-size: 48px;
  font-weight: 700;
  color: #6366f1;
  position: absolute;
  left: -15px;
  top: -10px;
  opacity: 0.2;
}
@media (max-width: 768px) {
  .infra-reviews-section .reviews-carousel .review-card .review-content .review-quote p {
    font-size: 16px;
  }
}
.infra-reviews-section .reviews-carousel .review-card .review-content .review-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.infra-reviews-section .reviews-carousel .review-card .review-content .review-tags .review-tag {
  display: inline-block;
  padding: 6px 12px;
  background: #f0f4ff;
  color: #4f46e5;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: capitalize;
  transition: all 0.2s ease;
}
.infra-reviews-section .reviews-carousel .review-card .review-content .review-tags .review-tag:hover {
  background: #e0e7ff;
  transform: scale(1.05);
}
.infra-reviews-section .reviews-carousel .review-card .review-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.infra-reviews-section .reviews-carousel .review-card .review-author .author-image {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid #f0f4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}
.infra-reviews-section .reviews-carousel .review-card .review-author .author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.infra-reviews-section .reviews-carousel .review-card .review-author .author-info {
  flex-grow: 1;
}
.infra-reviews-section .reviews-carousel .review-card .review-author .author-info .author-name {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 4px 0;
}
.infra-reviews-section .reviews-carousel .review-card .review-author .author-info .author-title {
  font-size: 14px;
  color: #718096;
  margin: 0;
}
.infra-reviews-section .reviews-carousel .review-card .review-video-link {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6366f1;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}
.infra-reviews-section .reviews-carousel .review-card .review-video-link:hover {
  background: #6366f1;
  color: #ffffff;
  transform: scale(1.1);
}
.infra-reviews-section .reviews-carousel .review-card .review-video-link i {
  margin-left: 2px;
}
.infra-reviews-section .reviews-carousel .swiper-button-next,
.infra-reviews-section .reviews-carousel .swiper-button-prev {
  width: 48px;
  height: 48px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  color: #4f46e5;
  transition: all 0.3s ease;
}
.infra-reviews-section .reviews-carousel .swiper-button-next::after,
.infra-reviews-section .reviews-carousel .swiper-button-prev::after {
  display: none;
}
.infra-reviews-section .reviews-carousel .swiper-button-next i,
.infra-reviews-section .reviews-carousel .swiper-button-prev i {
  font-size: 16px;
}
.infra-reviews-section .reviews-carousel .swiper-button-next:hover,
.infra-reviews-section .reviews-carousel .swiper-button-prev:hover {
  background: #6366f1;
  color: #ffffff;
  transform: scale(1.1);
}
.infra-reviews-section .reviews-carousel .swiper-button-next.swiper-button-disabled,
.infra-reviews-section .reviews-carousel .swiper-button-prev.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.infra-reviews-section .reviews-carousel .swiper-button-next.swiper-button-disabled:hover,
.infra-reviews-section .reviews-carousel .swiper-button-prev.swiper-button-disabled:hover {
  background: #ffffff;
  color: #4f46e5;
  transform: scale(1);
}
@media (max-width: 768px) {
  .infra-reviews-section .reviews-carousel .swiper-button-next,
  .infra-reviews-section .reviews-carousel .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
  .infra-reviews-section .reviews-carousel .swiper-button-next i,
  .infra-reviews-section .reviews-carousel .swiper-button-prev i {
    font-size: 14px;
  }
}
.infra-reviews-section .reviews-carousel .swiper-button-prev {
  left: 0;
}
.infra-reviews-section .reviews-carousel .swiper-button-next {
  right: 0;
}
.infra-reviews-section .reviews-carousel .swiper-pagination {
  position: relative;
  margin-top: 40px;
  bottom: auto;
}
.infra-reviews-section .reviews-carousel .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #cbd5e0;
  opacity: 1;
  transition: all 0.3s ease;
}
.infra-reviews-section .reviews-carousel .swiper-pagination .swiper-pagination-bullet:hover {
  background: #a0aec0;
}
.infra-reviews-section .reviews-carousel .swiper-pagination .swiper-pagination-bullet-active {
  background: #6366f1;
  width: 32px;
  border-radius: 5px;
}
.infra-reviews-section .reviews-trusted {
  text-align: center;
  padding-top: 60px;
  border-top: 1px solid #e2e8f0;
}
.infra-reviews-section .reviews-trusted .trusted-label {
  font-size: 14px;
  font-weight: 600;
  color: #718096;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
}
.infra-reviews-section .reviews-trusted .trusted-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .infra-reviews-section .reviews-trusted .trusted-logos {
    gap: 30px;
  }
}
@media (max-width: 480px) {
  .infra-reviews-section .reviews-trusted .trusted-logos {
    gap: 20px;
  }
}
.infra-reviews-section .reviews-trusted .trusted-logos .trusted-logo {
  flex: 0 0 auto;
  opacity: 0.6;
  transition: all 0.3s ease;
  filter: grayscale(100%);
}
.infra-reviews-section .reviews-trusted .trusted-logos .trusted-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}
.infra-reviews-section .reviews-trusted .trusted-logos .trusted-logo img {
  height: 32px;
  width: auto;
  display: block;
}
@media (max-width: 768px) {
  .infra-reviews-section .reviews-trusted .trusted-logos .trusted-logo img {
    height: 28px;
  }
}
@media (max-width: 480px) {
  .infra-reviews-section .reviews-trusted .trusted-logos .trusted-logo img {
    height: 24px;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.infra-reviews-section .review-card {
  animation: fadeInUp 0.6s ease-out;
}

.why-infragrids-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}
.why-infragrids-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(0, 123, 255, 0.03) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(40, 167, 69, 0.03) 0%, transparent 50%);
  pointer-events: none;
}
.why-infragrids-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.why-infragrids-section .why-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease-out;
}
.why-infragrids-section .why-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
@media (max-width: 768px) {
  .why-infragrids-section .why-header h2 {
    font-size: 2rem;
  }
}
.why-infragrids-section .why-header p {
  font-size: 1.125rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .why-infragrids-section .why-header p {
    font-size: 1rem;
  }
}
.why-infragrids-section .why-points-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  animation: fadeInUp 1s ease-out 0.2s both;
}
@media (max-width: 768px) {
  .why-infragrids-section .why-points-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.why-infragrids-section .why-point {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}
.why-infragrids-section .why-point::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #007bff 0%, #0056b3 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.why-infragrids-section .why-point:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 123, 255, 0.2);
}
.why-infragrids-section .why-point:hover::before {
  transform: scaleX(1);
}
.why-infragrids-section .why-point:hover .why-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}
.why-infragrids-section .why-point:hover .why-icon svg {
  stroke: #ffffff;
}
.why-infragrids-section .why-point .why-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #e7f3ff 0%, #cce5ff 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}
.why-infragrids-section .why-point .why-icon svg {
  width: 36px;
  height: 36px;
  stroke: #007bff;
  transition: stroke 0.3s ease;
}
.why-infragrids-section .why-point h3 {
  font-size: 1.375rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .why-infragrids-section .why-point h3 {
    font-size: 1.25rem;
  }
}
.why-infragrids-section .why-point p {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.7;
  margin: 0;
}
.why-infragrids-section .why-point:nth-child(1)::before {
  background: linear-gradient(90deg, #007bff 0%, #0056b3 100%);
}
.why-infragrids-section .why-point:nth-child(1) .why-icon {
  background: linear-gradient(135deg, #e7f3ff 0%, #cce5ff 100%);
}
.why-infragrids-section .why-point:nth-child(1) .why-icon svg {
  stroke: #007bff;
}
.why-infragrids-section .why-point:nth-child(1):hover .why-icon {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}
.why-infragrids-section .why-point:nth-child(2)::before {
  background: linear-gradient(90deg, #28a745 0%, #218838 100%);
}
.why-infragrids-section .why-point:nth-child(2) .why-icon {
  background: linear-gradient(135deg, #e7f8ed 0%, #d4edda 100%);
}
.why-infragrids-section .why-point:nth-child(2) .why-icon svg {
  stroke: #28a745;
}
.why-infragrids-section .why-point:nth-child(2):hover .why-icon {
  background: linear-gradient(135deg, #28a745 0%, #218838 100%);
}
.why-infragrids-section .why-point:nth-child(3)::before {
  background: linear-gradient(90deg, #ffc107 0%, #e0a800 100%);
}
.why-infragrids-section .why-point:nth-child(3) .why-icon {
  background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
}
.why-infragrids-section .why-point:nth-child(3) .why-icon svg {
  stroke: #ffc107;
}
.why-infragrids-section .why-point:nth-child(3):hover .why-icon {
  background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
}
.why-infragrids-section .why-point:nth-child(4)::before {
  background: linear-gradient(90deg, #dc3545 0%, #c82333 100%);
}
.why-infragrids-section .why-point:nth-child(4) .why-icon {
  background: linear-gradient(135deg, #ffe7e9 0%, #f8d7da 100%);
}
.why-infragrids-section .why-point:nth-child(4) .why-icon svg {
  stroke: #dc3545;
}
.why-infragrids-section .why-point:nth-child(4):hover .why-icon {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}
.why-infragrids-section .why-point:nth-child(5)::before {
  background: linear-gradient(90deg, #6f42c1 0%, #5a32a3 100%);
}
.why-infragrids-section .why-point:nth-child(5) .why-icon {
  background: linear-gradient(135deg, #f3e5ff 0%, #e9d5ff 100%);
}
.why-infragrids-section .why-point:nth-child(5) .why-icon svg {
  stroke: #6f42c1;
}
.why-infragrids-section .why-point:nth-child(5):hover .why-icon {
  background: linear-gradient(135deg, #6f42c1 0%, #5a32a3 100%);
}
.why-infragrids-section .why-point:nth-child(6)::before {
  background: linear-gradient(90deg, #17a2b8 0%, #138496 100%);
}
.why-infragrids-section .why-point:nth-child(6) .why-icon {
  background: linear-gradient(135deg, #e1f5f8 0%, #d1ecf1 100%);
}
.why-infragrids-section .why-point:nth-child(6) .why-icon svg {
  stroke: #17a2b8;
}
.why-infragrids-section .why-point:nth-child(6):hover .why-icon {
  background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.faqs-section {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
.faqs-section .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
.faqs-section .faqs-header {
  text-align: center;
  margin-bottom: 60px;
}
.faqs-section .faqs-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
@media (max-width: 768px) {
  .faqs-section .faqs-header h2 {
    font-size: 2rem;
  }
}
.faqs-section .faqs-header p {
  font-size: 1.125rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .faqs-section .faqs-header p {
    font-size: 1rem;
  }
}
.faqs-section .faqs-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faqs-section .faq-item {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
}
.faqs-section .faq-item:hover {
  border-color: rgba(0, 123, 255, 0.3);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.faqs-section .faq-item.active {
  border-color: #007bff;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 123, 255, 0.15);
}
.faqs-section .faq-item.active .faq-question {
  color: #007bff;
  font-weight: 600;
  background: #f8f9fa;
}
.faqs-section .faq-item.active .faq-icon {
  transform: rotate(45deg);
  stroke: #007bff;
}
.faqs-section .faq-item.active .faq-icon line:first-child {
  opacity: 0;
}
.faqs-section .faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 24px;
  opacity: 1;
}
.faqs-section .faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: transparent;
  border: none;
  font-size: 1.125rem;
  font-weight: 500;
  color: #1a1a1a;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  gap: 16px;
}
@media (max-width: 768px) {
  .faqs-section .faq-question {
    font-size: 1rem;
    padding: 16px 20px;
  }
}
.faqs-section .faq-question:hover {
  color: #007bff;
  background: #f8f9fa;
}
.faqs-section .faq-question:focus {
  outline: 2px solid #007bff;
  outline-offset: -2px;
}
.faqs-section .faq-question span {
  flex: 1;
}
.faqs-section .faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  stroke: currentColor;
  transition: all 0.3s ease;
}
.faqs-section .faq-icon line {
  transition: opacity 0.2s ease;
}
.faqs-section .faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faqs-section .faq-answer p {
  font-size: 1rem;
  line-height: 1.7;
  color: #6c757d;
  margin: 0;
}
@media (max-width: 768px) {
  .faqs-section .faq-answer p {
    font-size: 0.9375rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .faqs-section .faq-item,
  .faqs-section .faq-answer,
  .faqs-section .faq-icon {
    transition: none;
  }
}
.faqs-section.loading .faq-item {
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@media print {
  .faqs-section .faq-item {
    page-break-inside: avoid;
    border: 1px solid #dee2e6;
  }
  .faqs-section .faq-answer {
    max-height: none !important;
    opacity: 1 !important;
    padding: 0 24px 24px !important;
  }
  .faqs-section .faq-icon {
    display: none;
  }
}
.infra-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  font-size: 14px;
}
.infra-footer .container {
  padding-left: 7.5px;
  padding-right: 7.5px;
}
@media (min-width: 768px) {
  .infra-footer .container {
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
}
.infra-footer .footer-main {
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.infra-footer .footer-main .footer-column {
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .infra-footer .footer-main .footer-column {
    margin-bottom: 40px;
  }
}
.infra-footer .footer-main .footer-heading {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: capitalize;
  letter-spacing: 0.3px;
}
.infra-footer .footer-main .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.infra-footer .footer-main .footer-links li {
  margin-bottom: 12px;
}
.infra-footer .footer-main .footer-links li a {
  color: #b8b8c7;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 14px;
  line-height: 1.6;
}
.infra-footer .footer-main .footer-links li a:hover {
  color: #ffffff;
  transform: translateX(3px);
}
.infra-footer .footer-main .footer-about .footer-logo {
  margin-bottom: 20px;
}
.infra-footer .footer-main .footer-about .footer-logo .footer-logo-img {
  max-width: 180px;
  height: auto;
}
@media (max-width: 991px) {
  .infra-footer .footer-main .footer-about .footer-logo .footer-logo-img {
    max-width: 160px;
  }
}
.infra-footer .footer-main .footer-about .footer-about-text {
  color: #b8b8c7;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 25px;
  padding-right: 20px;
}
@media (max-width: 991px) {
  .infra-footer .footer-main .footer-about .footer-about-text {
    padding-right: 0;
  }
}
.infra-footer .footer-main .footer-about .footer-social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.infra-footer .footer-main .footer-about .footer-social-icons li {
  list-style: none;
}
.infra-footer .footer-main .footer-about .footer-social-icons li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #e0e0e0;
  transition: all 0.3s ease;
  font-size: 16px;
  text-decoration: none;
}
.infra-footer .footer-main .footer-about .footer-social-icons li a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  transform: translateY(-3px);
}
.infra-footer .footer-bottom {
  padding: 30px 0;
  background-color: #16162a;
}
@media (max-width: 991px) {
  .infra-footer .footer-bottom .footer-bottom-left,
  .infra-footer .footer-bottom .footer-bottom-right {
    text-align: center;
    margin-bottom: 20px;
  }
}
.infra-footer .footer-bottom .footer-bottom-right {
  text-align: right;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}
@media (max-width: 991px) {
  .infra-footer .footer-bottom .footer-bottom-right {
    justify-content: center;
    flex-wrap: wrap;
  }
}
.infra-footer .footer-bottom .footer-legal-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 991px) {
  .infra-footer .footer-bottom .footer-legal-links {
    justify-content: center;
  }
}
.infra-footer .footer-bottom .footer-legal-links li a {
  color: #b8b8c7;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
}
.infra-footer .footer-bottom .footer-legal-links li a:hover {
  color: #ffffff;
}
.infra-footer .footer-bottom .footer-language-selector .btn-language {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #e0e0e0;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  transition: all 0.3s ease;
}
.infra-footer .footer-bottom .footer-language-selector .btn-language:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
}
.infra-footer .footer-bottom .footer-language-selector .btn-language .iti-flag {
  margin-right: 8px;
}
.infra-footer .footer-bottom .footer-language-selector .btn-language .language-text {
  white-space: nowrap;
}
.infra-footer .footer-bottom .footer-social-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 12px;
  align-items: center;
}
.infra-footer .footer-bottom .footer-social-links li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #e0e0e0;
  transition: all 0.3s ease;
  font-size: 16px;
}
.infra-footer .footer-bottom .footer-social-links li a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  transform: translateY(-2px);
}
.infra-footer .footer-bottom .footer-payment-methods {
  text-align: center;
  padding: 20px 0;
  margin-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.infra-footer .footer-bottom .footer-payment-methods .payment-icon {
  font-size: 32px;
  color: #b8b8c7;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}
.infra-footer .footer-bottom .footer-payment-methods .payment-icon:hover {
  color: #ffffff;
  transform: scale(1.1);
}
.infra-footer .footer-bottom .footer-payment-methods .payment-icon i {
  display: block;
}
.infra-footer .footer-bottom .footer-copyright {
  text-align: center;
  color: #8a8a97;
  font-size: 13px;
  margin: 20px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 767px) {
  .footer .footer-main {
    padding: 40px 0 30px;
  }
  .footer .footer-main .footer-column {
    margin-bottom: 35px;
  }
  .footer .footer-bottom {
    padding: 25px 0;
  }
  .footer .footer-bottom .footer-legal-links {
    flex-direction: column;
    gap: 10px;
  }
  .footer .footer-bottom .footer-legal-links li {
    margin-bottom: 8px;
  }
}
@media (prefers-color-scheme: dark) {
  .footer {
    background-color: #0f0f1e;
  }
  .footer .footer-bottom {
    background-color: #0a0a18;
  }
}

/*# sourceMappingURL=main.css.map */
