@charset "UTF-8";
/*------------------------------------------------------------------
Cyberin.in - Modern Vercel-Inspired Design System
------------------------------------------------------------------*/

/* Font Face Declarations */
@font-face {
  font-family: "Borna";
  src: url("../fonts/Borna-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Borna";
  src: url("../fonts/Borna-RegularItalic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Borna";
  src: url("../fonts/Borna-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Borna";
  src: url("../fonts/Borna-MediumItalic.otf") format("opentype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Borna";
  src: url("../fonts/Borna-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Borna";
  src: url("../fonts/Borna-SemiBoldItalic.otf") format("opentype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Borna";
  src: url("../fonts/Borna-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Borna";
  src: url("../fonts/Borna-BoldItalic.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* CSS Custom Properties for Theming */
:root {
  /* Primary Palette */
  --color-primary: #1b1b1b;
  --color-primary-hover: #333333;
  --color-primary-border: #1b1b1b;
  --color-white: #ffffff;

  /* Neutral Scale */
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #eaeaea;
  --gray-300: #d4d4d4;
  --gray-400: #999999;
  --gray-500: #666666;
  --gray-600: #444444;
  --gray-900: #1b1b1b;

  /* Accent Colors */
  --color-blue: #0070f3;
  --color-blue-hover: #0055c9;
  --color-violet: #7928ca;
  --color-red: #e00000;
  --color-red-dark: #c00000;
  --color-green: #10b981;
  --color-green-dark: #15803d;

  /* Text Colors */
  --text-primary: var(--color-primary);
  --text-secondary: var(--gray-500);
  --text-tertiary: var(--gray-400);
  --text-muted: var(--gray-400);
  --text-inverse: var(--color-white);

  /* Backgrounds */
  --bg-primary: var(--color-white);
  --bg-secondary: var(--gray-50);
  --bg-tertiary: var(--gray-100);
  --bg-inverse: var(--color-primary);

  /* Borders */
  --border-subtle: var(--gray-300);
  --border-default: var(--gray-300);
  --border-strong: var(--gray-500);
  --border-primary: var(--border-subtle);
  --border-secondary: var(--border-default);
  --border-tertiary: var(--border-strong);

  /* Shadows */
  --shadow-subtle: 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-medium: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-large: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-xlarge: 0 12px 32px rgba(0, 0, 0, 0.12);
  --shadow-sm: var(--shadow-subtle);
  --shadow-md: var(--shadow-medium);
  --shadow-lg: var(--shadow-large);
  --shadow-xl: var(--shadow-xlarge);

  /* Spacing Scale */
  --spacing-2xs: 4px;
  --spacing-xs: 8px;
  --spacing-sm: 12px;
  --spacing-md: 16px;
  --spacing-lg: 20px;
  --spacing-xl: 24px;
  --spacing-2xl: 32px;
  --spacing-3xl: 40px;
  --spacing-4xl: 48px;
  --spacing-5xl: 64px;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --radius-pill: 50px;

  /* Typography */
  --font-family-sans: "Borna", sans-serif;
  --font-family-poppins:
    "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
    "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans",
    "Helvetica Neue", sans-serif;
  --font-family-mono:
    "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New",
    monospace;

  /* Font Sizes */
  --font-size-2xs: 11px;
  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-md: 16px;
  --font-size-md-2: 16px;
  --font-size-md-3: 17px;
  --font-size-lg: 18px;
  --font-size-xl: 20px;
  --font-size-2xl: 24px;
  --font-size-3xl: 28px;
  --font-size-4xl: 36px;
  --font-size-5xl: 42px;
  --font-size-6xl: 46px;

  /* Font Weights */
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-light: 300;
  --font-weight-normal: var(--font-weight-regular);

  /* Line Heights */
  --line-height-body: 1.5;
  --line-height-heading: 1.35;
  --line-height-description: 1.6;
  --line-height-tight: var(--line-height-heading);
  --line-height-normal: var(--line-height-body);
  --line-height-relaxed: var(--line-height-description);

  /* Letter Spacing */
  --letter-spacing-heading-tight: -0.02em;
  --letter-spacing-heading-hero: -0.025em;
  --letter-spacing-uppercase: 0.08em;

  /* Motion */
  --transition-fast: 0.15s ease;
  --transition-standard: 0.2s ease;
  --transition-smooth: 0.25s ease;
  --transition-normal: var(--transition-standard);

  /* Gradients */
  --gradient-black: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  --gradient-blue: linear-gradient(135deg, #006bff, #006affde);
  --gradient-blue-violet: linear-gradient(135deg, #0070f3 0%, #7928ca 100%);
  --gradient-green: linear-gradient(135deg, #10b981, #34d399);
  --gradient-purple: linear-gradient(135deg, #7928ca, #a855f7);
  --gradient-orange: linear-gradient(135deg, #f5a623, #fbbf24);
  --gradient-red: linear-gradient(135deg, #e00000, #ff4d4d);
  --gradient-cyan: linear-gradient(135deg, #00d9ff, #22d3ee);

  /* Z-Index Scale */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
}

/*------------------------------------------------------------------
1. Global Styles & Reset
------------------------------------------------------------------*/

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: var(--font-size-md);
  line-height: var(--line-height-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-family-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-body);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  -webkit-transition: all var(--transition-standard);
  transition: all var(--transition-standard);
  overflow-x: hidden;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings:
    "slnt" 0,
    "wdth" 100,
    "GRAD" 0,
    "ROND" 0;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--letter-spacing-heading-tight);
}

/* Typography Scale */
h1 {
  font-size: var(--font-size-6xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-heading);
  letter-spacing: var(--letter-spacing-heading-hero);
  color: var(--text-primary);
  margin-bottom: var(--spacing-3xl);
}

h2 {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-heading);
  color: var(--text-primary);
  margin-bottom: var(--spacing-xl);
}

h3 {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-heading);
  color: var(--text-primary);
  margin-bottom: var(--spacing-lg);
}

h4 {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-heading);
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
}

h5 {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-heading);
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
}

h6 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-heading);
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
}

p {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-description);
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
}

a {
  font-size: inherit;
  font-weight: var(--font-weight-medium);
  color: var(--color-blue);
  text-decoration: none;
  transition: color var(--transition-fast);
}

span {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

small {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-normal);
  color: var(--text-tertiary);
}

.fs-semi-bold {
  font-weight: var(--font-weight-medium);
}

/* Typography Utility Classes */
.text-xs {
  font-size: var(--font-size-xs);
}
.text-sm {
  font-size: var(--font-size-sm);
}
.text-md {
  font-size: var(--font-size-md);
}
.text-lg {
  font-size: var(--font-size-lg);
}
.text-xl {
  font-size: var(--font-size-xl);
}
.text-2xl {
  font-size: var(--font-size-2xl);
}
.text-3xl {
  font-size: var(--font-size-3xl);
}
.text-4xl {
  font-size: var(--font-size-4xl);
}
.text-5xl {
  font-size: var(--font-size-5xl);
}
.text-6xl {
  font-size: var(--font-size-6xl);
}

.font-light {
  font-weight: var(--font-weight-light);
}
.font-normal {
  font-weight: var(--font-weight-normal);
}
.font-medium {
  font-weight: var(--font-weight-medium);
}
.font-semibold {
  font-weight: var(--font-weight-semibold);
}
.font-bold {
  font-weight: var(--font-weight-bold);
}

.leading-tight {
  line-height: var(--line-height-tight);
}
.leading-normal {
  line-height: var(--line-height-normal);
}
.leading-relaxed {
  line-height: var(--line-height-relaxed);
}

.text-primary {
  color: var(--text-primary);
}
.text-secondary {
  color: var(--text-secondary);
}
.text-tertiary {
  color: var(--text-tertiary);
}
.text-inverse {
  color: var(--text-inverse);
}

/*------------------------------------------------------------------Cyberin.in, Simplified Hosting and Domains-------------------------------------------------------------------*/
/*------------------------------------------------------------------ 1. General Styles-------------------------------------------------------------------*/
a {
  cursor: pointer;
}
h1,
h2,
h1 span,
h2 span,
h3,
h4,
.message-area .box .h3,
.mega-box .mega-title,
.trustpilot a span,
.font-bold {
  font-weight: 600;
}

.affiliateInfo h2 {
  color: var(--text-primary);
  font-size: var(--font-size-2xl);
}
.cyberin_offers h1 {
  padding-bottom: var(--spacing-lg);
  text-align: center;
  font-size: var(--font-size-3xl);
  color: var(--text-inverse);
  font-weight: var(--font-weight-bold);
}

/*------------------------------------------------------------------ 2. Vercel-Inspired Navigation -------------------------------------------------------------------*/

/* Main Navigation Container */
.vercel-nav {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 10000 !important;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.2s cubic-bezier(0.4, 0, 0.2, 1),
    border-bottom-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  height: 70px;
  transform: translateY(0) !important;
  opacity: 1 !important;
  pointer-events: auto;
  background: #fff;
}

/* Navbar hidden state - scrolling down (top to bottom) */
.vercel-nav.navbar-hidden {
  transform: translateY(-100%) !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Navbar visible state - scrolling up (bottom to top) */
.vercel-nav.navbar-visible {
  transform: translateY(0) !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.vercel-nav.scrolled {
  animation: navbarPulse 0.3s ease-out;
}

/* Promotional Banner */
.nav-promo-banner {
  position: relative;
  background-image: linear-gradient(to left, #6b7280 25%, #333 75%
  );
  overflow: hidden;
  margin: auto;
  text-align: center;
  padding: 1rem;
  z-index: 99;
}

.promo-banner-content {
  margin: 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: nowrap;
}

.promo-banner-ribbon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 65px;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.ribbon-scroll {
  display: flex;
  align-items: center;
  animation: ribbonScroll 30s linear infinite;
  white-space: nowrap;
  opacity: 0.75;
  height: 100%;
}

.promo-banner-ribbon .ribbon-text {
  display: block;
  white-space: nowrap;
  animation: ribbonFlash 1.5s ease-in-out infinite;
  margin-right: 80px;
  transform: rotate(0deg);
  position: relative;
}

.promo-banner-ribbon .ribbon-text img {
  max-height: 65px;
  opacity: 0.35;
}

.promo-banner-ribbon .ribbon-text:nth-child(2n) {
  animation-delay: 0.2s;
  color: rgba(255, 255, 255, 0.25);
}

.promo-banner-ribbon .ribbon-text:nth-child(3n) {
  animation-delay: 0.4s;
  color: rgba(255, 255, 255, 0.18);
}

.promo-banner-ribbon .ribbon-text:nth-child(4n) {
  animation-delay: 0.6s;
  color: rgba(255, 255, 255, 0.22);
}

@keyframes ribbonScroll {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.nav-promo-banner .promo-deal-btn-highlighted {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 5px 16px !important;
  background: rgba(255, 255, 255, 0.2) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  transition: all 0.2s ease !important;
  margin-left: 10px !important;
}

.nav-promo-banner .promo-deal-btn-highlighted:hover {
  background: rgba(255, 255, 255, 0.3) !important;
  transform: translateY(-1px) !important;
  color: #ffffff !important;
}

.promo-banner-text {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  white-space: nowrap;
}

.promo-title {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.promo-banner-countdown {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 5px 16px;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.promo-countdown-soon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.02rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

.countdown-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2px;
}

.countdown-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.countdown-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
  margin-top: 5px;
}

/* Hide promo banner when navbar is hidden */
.vercel-nav.navbar-hidden .nav-promo-banner {
  display: none;
}

/* Responsive styles for promo banner */
@media (max-width: 991px) {
  .nav-promo-banner {
    padding: 10px 16px;
    bottom: -44px;
  }

  .promo-banner-content {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }

  .promo-banner-text {
    width: 100%;
    text-align: center;
    white-space: normal;
  }

  .promo-title {
    font-size: 14px;
  }

  .promo-banner-countdown {
    width: 100%;
    justify-content: center;
    padding: 6px 12px;
  }

  .countdown-value {
    font-size: 18px;
  }

  .promo-banner-ribbon .ribbon-text {
    font-size: 90px;
    letter-spacing: 15px;
    margin-right: 60px;
  }

  .ribbon-scroll {
    animation-duration: 40s;
  }

  .vercel-nav:has(.nav-promo-banner) {
    height: 114px;
  }
}

@media (max-width: 768px) {
  .nav-promo-banner {
    padding: 12px;
    bottom: 0;
  }

  .promo-title {
    font-size: 1.25rem;
  }

  .promo-banner-countdown {
    gap: 8px;
    padding: 10px;
    border-radius: 20px;
  }

  .countdown-value {
    font-size: 16px;
  }

  .countdown-label {
    font-size: 9px;
  }

  .promo-banner-ribbon .ribbon-text {
    font-size: 70px;
    letter-spacing: 10px;
    margin-right: 40px;
  }

  .ribbon-scroll {
    animation-duration: 50s;
  }

  .vercel-nav:has(.nav-promo-banner) {
    height: 75px;
    max-width: 100vw;
  }
}

@keyframes navbarPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.002);
  }
  100% {
    transform: scale(1);
  }
}

/* Navigation Container */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Brand Section */
.nav-brand {
  flex-shrink: 0;
}

.brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-link:hover {
  opacity: 0.8;
  text-decoration: none;
  transform: scale(1.05);
}

.brand-logo {
  height: 45px;
  width: auto;
  display: block;
}

/* Navigation Links */
.vercel-nav .nav-links {
  display: flex;
  align-items: center;
  flex: 1;
  margin-left: 50px;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
  position: relative;
}

/* Sliding indicator background */
.nav-menu::before {
  content: "";
  position: absolute;
  top: 8px;
  left: var(--slider-left, 0);
  height: 32px;
  width: var(--slider-width, 0);
  border-radius: 6px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: var(--slider-opacity, 0);
  z-index: -1;
  pointer-events: none;
  transform: scale(var(--slider-scale, 1));
}

/* Enhanced hover effect for nav items */
.nav-item:hover .nav-link {
  transform: translateY(-1px);
}

/* Smooth transition for nav links */
.nav-link {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item {
  position: relative;
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 0;
}

.nav-item.active .nav-link {
  color: #000;
  font-weight: 600;
}

.nav-item:nth-child(1) {
  animation-delay: 0.1s;
}
.nav-item:nth-child(2) {
  animation-delay: 0.2s;
}
.nav-item:nth-child(3) {
  animation-delay: 0.3s;
}
.nav-item:nth-child(4) {
  animation-delay: 0.4s;
}
.nav-item:nth-child(5) {
  animation-delay: 0.5s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  font-size: 1rem;
  font-weight: 600;
  color: #1b1b1b;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  background: none;
  border: none;
  cursor: pointer;
  gap: 4px;
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.6s ease;
}

.nav-link:hover::before {
  left: 100%;
}

.nav-link:hover,
.nav-link:focus {
  color: #1b1b1b;
  background-color: rgb(208 198 198 / 22%);
  text-decoration: none;
  border-radius: 25px;
}

/* Dropdown Icons */
.dropdown-icon {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-trigger[aria-expanded="true"] .dropdown-icon {
  transform: rotate(180deg);
}

.nav-link:hover .dropdown-icon {
  transform: scale(1.1);
}

/* ============================================
   DROPDOWN MENUS - Consolidated Styles
   ============================================ */

/* Base Dropdown Menu */
.dropdown-menu {
  position: fixed;
  top: 70px;
  background: #00000042;
  border-radius: 8px;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  display: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
  overflow: hidden;
  height: 100vh;
  transform: translateY(-20px) scale(0.98);
  transform-origin: top center;
}

/* Adjust dropdown position when promo banner is present */
.vercel-nav:has(.nav-promo-banner) ~ .dropdown-menu,
.vercel-nav:has(.nav-promo-banner) .dropdown-menu {
  top: 118px;
}

/* Regular Dropdowns (Non-Mega) - Centered */
.dropdown-menu:not(.mega-dropdown) {
  left: 50%;
  right: auto;
  width: auto;
  min-width: 850px;
  max-width: 100vw;
  transform: translateX(-50%) translateY(-20px) scale(0.98);
  margin-left: auto;
  margin-right: auto;
}

/* Regular Dropdown Content */
.dropdown-menu:not(.mega-dropdown) .dropdown-content {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 12px;
  min-width: 850px;
}

/* Mega Dropdown - Full Width with Bootstrap Grid */
.dropdown-menu.mega-dropdown {
  position: fixed !important;
  top: 70px !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  border-radius: 0;
  border-left: none;
  box-shadow: none;
  border: 0;
}

/* Adjust mega dropdown position when promo banner is present */
.vercel-nav:has(.nav-promo-banner) ~ .dropdown-menu.mega-dropdown,
.vercel-nav:has(.nav-promo-banner) .dropdown-menu.mega-dropdown {
  top: 118px !important;
}

.dropdown-menu.mega-dropdown {
  border-right: none;
  padding: 0;
  margin: 0 !important;
  transform: translateY(-20px) scale(0.98);
  transform-origin: top center;
}

.dropdown-menu.mega-dropdown.active {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) scale(1) !important;
}

/* Mega Dropdown Content - Bootstrap Grid Container */
.dropdown-menu.mega-dropdown .container-fluid {
  padding: 85px 100px 20px 100px;
  background: #fff;
  border-radius: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Bootstrap Grid Responsive Adjustments for Mega Dropdowns */
.dropdown-menu.mega-dropdown .row {
  margin-left: -12px;
  margin-right: -12px;
}

.dropdown-menu.mega-dropdown [class*="col-"] {
  padding-left: 12px;
  padding-right: 12px;
}

/* Ensure proper spacing in Bootstrap grid columns */
.dropdown-menu.mega-dropdown .col-lg-9,
.dropdown-menu.mega-dropdown .col-lg-6,
.dropdown-menu.mega-dropdown .col-lg-4,
.dropdown-menu.mega-dropdown .col-lg-3 {
  padding-left: 12px;
  padding-right: 12px;
}

/* Dropdown Section Styles */
.dropdown-section {
  display: flex;
  flex-direction: column;
}

.dropdown-section:last-child {
  margin-bottom: 0;
}

.dropdown-menu .section-title {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 10px 0;
  color: #999;
  padding-left: 15px;
}

.dropdown-section:hover .section-title {
  color: #666;
}

/* Promo Section for Mega Dropdowns */
.dropdown-promo-section {
  padding: 0px 8px 24px 24px;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  height: 100%;
}

.dropdown-promo-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 16px;
}

.dropdown-promo-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 8px;
}

.dropdown-promo-content p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 16px;
}

.dropdown-promo-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0070f3;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.dropdown-promo-link:hover {
  color: #0055c9;
  gap: 12px;
}

.dropdown-item {
  display: flex;
  align-items: flex-start;
  padding: 12px 15px;
  margin-bottom: 0.5rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 16px;
  position: relative;
  overflow: visible;
  background: transparent;
}

.dropdown-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.dropdown-item:hover::before {
  opacity: 1;
}

.dropdown-item:hover {
  background-color: rgba(0, 0, 0, 0.02);
  text-decoration: none;
  transform: translateX(2px);
}

/* Dropdown Item Badges */
.dropdown-item-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-left: 8px;
  line-height: 1.2;
}

.dropdown-item-badge.badge-ai {
  background: #1d76f4;
  color: #fff;
}

.dropdown-item-badge.badge-new {
  background: #10b981;
  color: #fff;
}

.dropdown-item-badge.badge-popular {
  background: #0070f3;
  color: #fff;
}

/* Staggered animation for dropdown items */
.dropdown-menu .dropdown-item:nth-child(1) {
  animation-delay: 0.05s;
}

.dropdown-menu .dropdown-item:nth-child(2) {
  animation-delay: 0.1s;
}

.dropdown-menu .dropdown-item:nth-child(3) {
  animation-delay: 0.15s;
}

.dropdown-menu .dropdown-item:nth-child(4) {
  animation-delay: 0.2s;
}

.dropdown-menu .dropdown-item:nth-child(5) {
  animation-delay: 0.25s;
}

.nav-item.has-dropdown:hover .dropdown-item {
  animation: slideInUp 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.item-icon {
  flex-shrink: 0;
  color: #666;
  margin-top: 2px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.item-icon svg {
  width: 100%;
  height: 100%;
}

.item-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.item-title {
  font-size: var(--font-size-md);
  font-weight: 500;
  color: #000;
  line-height: 1.4;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.item-description {
  font-size: var(--font-size-sm);
  color: #666;
  line-height: 1.5;
}

/* Navigation Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
  animation: fadeInRight 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.login-link {
  padding: 8px 12px;
  font-size: 16px;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.login-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.login-link:hover::before {
  left: 100%;
}

.login-link:hover {
  background-color: rgb(208 198 198 / 22%);
  text-decoration: none;
  transform: translateY(-1px);
}

.nav-button {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.nav-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.nav-button:hover::before {
  left: 100%;
}

.nav-button.primary {
  background: #1b1b1b;
  color: #fff;
  border-color: #fff;
  font-size: 1rem;
}

.nav-button.primary:hover {
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-button.secondary {
  background: #f3f4f6;
  color: #111827;
  border: 1px solid #e5e7eb;
  font-weight: 500;
  padding: 7px 14px;
  font-size: 14px;
  border-radius: 6px;
}

.nav-button.secondary:hover {
  background: #e5e7eb;
  color: #111827;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Language Selector Button */
.language-selector-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #666;
}

.language-selector-btn:hover {
  background-color: rgb(208 198 198 / 22%);
  color: #000;
  transform: translateY(0);
}

.language-flag-icon {
  width: 20px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}

.language-selector-text {
  font-weight: 600;
  white-space: nowrap;
}

/* Language Selection Modal */
.language-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.language-modal.active {
  opacity: 1;
  visibility: visible;
}

.language-modal-content {
  background: #fff;
  width: 100%;
  max-width: 1200px;
  max-height: 90vh;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.language-modal.active .language-modal-content {
  transform: scale(1);
}

.language-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.language-modal-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #000;
  margin: 0;
}

.language-modal-close {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: color 0.2s ease;
  border-radius: 6px;
}

.language-modal-close:hover {
  color: #000;
  background: rgba(0, 0, 0, 0.05);
}

.language-modal-search {
  position: relative;
  padding: 15px 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.language-search-input {
  width: 100%;
  max-width: 275px;
  padding: 10px 12px 10px 45px;
  font-size: 1rem;
  border: 1px solid rgb(229 229 229);
  border-radius: 8px;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  font-family: inherit;
}

.language-search-input:focus,
.language-search-input:hover {
  border-color: #01abff !important;
  box-shadow: 0 0 0 3px #01abff1a;
  outline: 0 !important;
}

.language-search-icon {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  color: #01abff;
  pointer-events: none;
}

.language-modal-list {
  padding: 15px 25px;
  overflow-y: auto;
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(235px, 1fr));
  gap: 12px;
}

.language-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.2s ease;
  color: #000;
  border: 1px solid transparent;
}

.language-item:hover {
  background: rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: #000;
}

.language-item-current {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.1);
}

.language-item-flag {
  width: 32px;
  height: 24px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
  border: 1px solid #e5e5e573;
}

.language-item-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.language-item-country {
  font-size: 1rem;
  font-weight: 500;
  color: #000;
}

.language-item-lang {
  font-size: 0.9rem;
  color: #666;
}

/* Fullscreen Loader */
.fullscreen-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.577);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.fullscreen-loader.active {
  opacity: 1;
  visibility: visible;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.loader-logo-wrapper {
  position: relative;
  width: 135px;
  height: 135px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-top-color: #4285f4;
  border-radius: 50%;
  animation: loaderSpin 1s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}

.loader-ring::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border: 3px solid transparent;
  border-top-color: #34a853;
  border-radius: 50%;
  animation: loaderSpinReverse 1.5s linear infinite;
}

.loader-ring::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  border: 2px solid transparent;
  border-bottom-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: loaderSpin 0.8s linear infinite;
}

@keyframes loaderSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes loaderSpinReverse {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.loader-logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.loader-logo-img {
  width: 100px;
  object-fit: contain;
}

.loader-logo-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  color: #4285f4;
  background: #fff;
}

.loader-text {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s ease;
  gap: 3px;
}

.mobile-menu-toggle:hover {
  background-color: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.2);
}

.hamburger-line {
  width: 16px;
  height: 2px;
  background: #000;
  border-radius: 1px;
  transition: all 0.15s ease;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1002;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.2s ease;
  overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu-content {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-brand-logo {
  height: 35px;
  width: auto;
}

.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.mobile-menu-close:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

/* Mobile Navigation */
.mobile-nav {
  padding: 0 20px;
  display: block;
  width: 100%;
}

.mobile-nav-section {
  margin-bottom: 8px;
}

.mobile-nav-item {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 0;
  font-size: 1.1rem;
  font-weight: 400;
  color: #000;
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  visibility: visible;
  opacity: 1;
}

.mobile-nav-item:hover {
  color: #666;
  text-decoration: none;
}

.mobile-dropdown-trigger {
  justify-content: space-between;
}

.mobile-dropdown-icon {
  transition: transform 0.15s ease;
}

.mobile-dropdown-trigger[aria-expanded="true"] .mobile-dropdown-icon {
  transform: rotate(180deg);
}

.mobile-dropdown-content {
  padding-left: 16px;
  margin-top: 8px;
  display: none;
}

.mobile-dropdown-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 5px;
  display: inline-block;
}

.mobile-dropdown-group {
  margin-bottom: 20px;
}

.mobile-dropdown-content.active {
  display: block !important;
  visibility: visible;
  opacity: 1;
}

.mobile-dropdown-item {
  display: block !important;
  padding: 5px 0;
  font-size: 0.95rem;
  color: #666;
  text-decoration: none;
  border-bottom: none;
  visibility: visible;
  opacity: 1;
  line-height: 1.25;
}

.mobile-dropdown-item:hover {
  color: #000;
  text-decoration: none;
}

/* Mobile Actions */
.mobile-menu-actions {
  padding: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-action-button {
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.15s ease;
  border: 1px solid transparent;
  visibility: visible;
  opacity: 1;
}

.mobile-action-button.secondary {
  background: transparent;
  color: #000;
  border-color: rgba(0, 0, 0, 0.15);
}

.mobile-action-button.secondary:hover {
  background-color: rgba(0, 0, 0, 0.05);
  text-decoration: none;
}

.mobile-action-button.primary {
  background: #000;
  color: #fff;
  border-color: #000;
}

.mobile-action-button.primary:hover {
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  text-decoration: none;
}

.dropdown-menu > * {
  position: relative;
  z-index: 1;
}

/* Ensure dropdown doesn't interfere with page scroll */
body:has(.dropdown-menu[style*="visibility: visible"]) {
  overflow-x: hidden;
}

/* Navbar positioning */

.nav-item.has-dropdown {
  position: static;
}

/* All dropdowns outside nav-item - ensure proper positioning */
.mega-dropdown,
#mega-services,
#mega-security,
#mega-addons,
#mega-domains,
#mega-emails {
  position: fixed !important;
  top: 70px !important;
  z-index: 9;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Adjust regular dropdown position when promo banner is present */
.vercel-nav:has(.nav-promo-banner) ~ #dropdown-domains,
.vercel-nav:has(.nav-promo-banner) ~ #dropdown-emails {
  top: 118px !important;
}

/* Mega dropdowns - full width */
.vercel-nav .mega-dropdown,
#mega-services,
#mega-security,
#mega-addons {
  left: 0 !important;
  right: 0 !important;
}

/* Regular dropdowns - centered */
#dropdown-domains,
#dropdown-emails {
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) translateY(-20px) scale(0.98);
}

/* Show regular dropdowns on hover */
.nav-item.has-dropdown:hover #dropdown-domains,
.nav-item.has-dropdown:hover #dropdown-emails {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateX(-50%) translateY(0) scale(1) !important;
}

/* Responsive Breakpoints */
@media (max-width: 1199px) {
  /* Tablet and below - Adjust grid for half-screen layouts */
  .dropdown-menu.mega-dropdown .container {
    padding: 32px 20px;
  }
}

@media (max-width: 991px) {
  /* Medium screens - Stack columns */
  .dropdown-menu.mega-dropdown .col-lg-9,
  .dropdown-menu.mega-dropdown .col-lg-6,
  .dropdown-menu.mega-dropdown .col-lg-4,
  .dropdown-menu.mega-dropdown .col-lg-3 {
    margin-bottom: 24px;
  }

  .dropdown-menu.mega-dropdown .col-lg-3:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 16px;
    max-width: 100vw;
    overflow: hidden;
  }

  .nav-links,
  .vercel-nav .nav-links {
    display: none;
  }

  .nav-actions .language-selector-btn,
  .nav-actions .nav-button {
    display: none;
  }

  .language-modal-list {
    grid-template-columns: 1fr;
  }

  .language-modal-header {
    padding: 10px 20px;
  }

  .language-modal-search {
    padding: 10px 24px;
  }

  .language-modal-list {
    padding: 10px 24px;
    gap: 5px;
  }

  .language-search-input {
    max-width: 100%;
  }

  .mobile-menu-toggle {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .dropdown-menu,
  .dropdown-menu.mega-dropdown {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    min-width: 100%;
    transform: translateY(-20px) scale(0.98);
    border-radius: 0;
    margin: 0;
  }

  .dropdown-menu:not(.mega-dropdown) {
    transform: translateY(-20px) scale(0.98);
  }

  .nav-item.has-dropdown:hover .dropdown-menu:not(.mega-dropdown),
  .nav-item.has-dropdown
    .dropdown-trigger[aria-expanded="true"]
    + .dropdown-menu:not(.mega-dropdown) {
    transform: translateY(0) scale(1);
  }

  .dropdown-menu.mega-dropdown .container {
    padding: 24px 16px;
  }

  .dropdown-section {
    margin-bottom: 24px;
  }

  .dropdown-promo-section {
    border-left: none;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 24px 16px;
    margin-top: 24px;
  }
}

@media (max-width: 480px) {
  .mobile-menu-content {
    max-width: 100%;
  }
}
/* Logo Styles - Vercel Inspired */
.logo-holder {
  color: var(--text-primary);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  height: 64px;
  padding: var(--spacing-sm) 0;
  transition: opacity var(--transition-fast);
}
.logo-holder:hover,
.logo-holder:focus {
  color: var(--text-primary);
  text-decoration: none;
  opacity: 0.8;
}
.logo-holder .logo {
  display: inline-block;
  background: url(../images/logo-big.png);
  background-size: contain;
  background-repeat: no-repeat;
  height: 40px;
  width: 140px;
}
.logo-holder .logo2 {
  background: url("../images/logo-big.png");
  position: relative;
  background-size: contain;
  background-repeat: no-repeat;
  height: 40px;
  width: 140px;
}
svg.logo {
  width: 40px;
  height: auto;
}
svg.logo text {
  font-weight: var(--font-weight-medium);
  fill: var(--text-primary);
}
/* Vercel-Style Navbar Container */
.navbar {
  border: 0;
  border-radius: 0;
  margin-bottom: 0;
  min-height: 64px;
  padding: 0;
  background: transparent;
}

.navbar .container,
.navbar .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 64px;
  max-width: 1200px;
  margin: 0 auto;
}

.navbar-header {
  height: 64px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Vercel-Style Navigation Links */
.navbar-default .navbar-nav {
  display: flex;
  align-items: center;
  margin: 0;
  list-style: none;
  padding: 0;
}

.navbar-default .navbar-nav > li {
  margin: 0;
  display: flex;
  align-items: center;
}

.navbar-default .navbar-nav > li > a {
  font-size: 14px;
  font-weight: 400;
  color: #666;
  padding: 8px 12px;
  height: auto;
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: color 0.15s ease;
  position: relative;
  border-radius: 6px;
}

.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
  color: #000;
  background-color: rgba(0, 0, 0, 0.05);
}

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:focus,
.navbar-default .navbar-nav > .active > a:hover {
  color: #000;
  background-color: transparent;
  font-weight: 500;
}

/* Vercel-Style Right Side Buttons */
.navbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

/* Login Button - Vercel Style */
.navbar-default .navbar-nav > li > a.login-button {
  margin-left: 8px;
  padding: 6px 12px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 14px;
  font-weight: 400;
  color: #000;
  background-color: transparent;
  transition: all 0.15s ease;
}

.navbar-default .navbar-nav > li > a.login-button:hover,
.navbar-default .navbar-nav > li > a.login-button:focus {
  background-color: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.2);
  color: #000;
}

.navbar-default .navbar-nav > li > a.support-button {
  color: #fff;
}
/* Support Button - Vercel Style */
.support-button-holder a.support-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 6px 12px;
  background-color: #000;
  border-radius: 6px;
  color: #fff;
  margin-left: 8px;
  font-weight: 400;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid #000;
  transition: all 0.15s ease;
  height: 32px;
  min-width: 80px;
}

.support-button-holder a.support-button:hover,
.support-button-holder a.support-button:focus {
  background-color: rgba(0, 0, 0, 0.8);
  border-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  text-decoration: none;
}
/* Responsive Navigation */
@media (min-width: 768px) {
  .navbar-nav > li > a {
    padding-top: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
  }
}

/* Mobile Toggle Button - Vercel Style */
.navbar-default .navbar-toggle {
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  background-color: transparent;
  padding: 6px;
  margin-top: 16px;
  margin-right: 0;
  transition: all 0.15s ease;
  width: 32px;
  height: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.navbar-default .navbar-toggle .icon-bar {
  background-color: #000;
  height: 2px;
  width: 16px;
  border-radius: 1px;
  transition: all 0.15s ease;
  margin: 1px 0;
}

.navbar-default .navbar-toggle:focus,
.navbar-default .navbar-toggle:hover {
  background-color: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.2);
}

.navbar-toggle {
  margin-top: 16px;
  margin-bottom: 16px;
}
/* Legacy dropdown styles removed - using consolidated dropdown styles above */
.bgGray {
  background: #f6f6f6;
}
/*------------------------------------------------------------------ 3. Top Content Styles-------------------------------------------------------------------*/
#top-content {
  text-align: center;
  padding: 50px 0 0 0;
}
#top-content .big-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 50px;
  margin-bottom: 40px;
  color: #333;
}
#top-content h1.big-title {
  margin-bottom: 0;
  line-height: 50px;
}
#top-content .big-title span {
  font-size: 36px;
  color: #171717;
  font-weight: 700;
}
/*------------------------------------------------------------------ 4. info Section Styles-------------------------------------------------------------------*/

/******************************* * Graph Y-axis Markers styles * *******************************/
/* Y-axis Markers list */
/********************* * Graph Bars styles * *********************/
/* Bar wrapper - hides the inner bar when it goes below the bar, required */
.bar-wrapper {
  overflow: hidden;
}
/* Bar container - this guy is a real parent of a bar's parts - they all are positioned relative to him */
.bar-container {
  position: relative;
  margin-top: 2.5em;
  width: 12.5em;
}
/** BACK CASING **/
/* Back panel */
.bar-background {
  width: 10em;
  height: 100%;
  position: absolute;
  top: -2.5em;
  left: 2.5em;
  z-index: 1;
  /* just for reference */
}
.bar-background:before,
.bar-background:after {
  content: "";
  position: absolute;
}
/* Bottom panel */
.bar-background:before {
  bottom: -2.5em;
  right: 1.25em;
  width: 10em;
  height: 2.5em;
  -webkit-backface-visibility: hidden;
  -webkit-transform: skew(-45deg);
  -moz-transform: skew(-45deg);
  -o-transform: skew(-45deg);
  -ms-transform: skew(-45deg);
  transform: skew(-45deg);
}
/* Left back panel */
.bar-background:after {
  top: 1.25em;
  right: 10em;
  width: 2.5em;
  height: 100%;
  -webkit-backface-visibility: hidden;
  /* skew only the Y-axis */
  -webkit-transform: skew(0deg, -45deg);
  -moz-transform: skew(0deg, -45deg);
  -o-transform: skew(0deg, -45deg);
  -ms-transform: skew(0deg, -45deg);
  transform: skew(0deg, -45deg);
}
/** FRONT CASING **/
/* Front panel */
.bar-foreground {
  z-index: 3;
  /* be above .bar-background and .bar-inner */
}
.bar-foreground,
.bar-inner {
  position: absolute;
}
.bar-foreground:before,
.bar-foreground:after,
.bar-inner:before,
.bar-inner:after {
  content: "";
  position: absolute;
}
/* Right front panel */
.bar-foreground:before,
.bar-inner:before {
  top: -1.25em;
  right: -2.5em;
  width: 2.5em;
  height: 100%;
  background-color: rgba(160, 160, 160, 0.27);
  -webkit-transform: skew(0deg, -45deg);
  -moz-transform: skew(0deg, -45deg);
  -o-transform: skew(0deg, -45deg);
  -ms-transform: skew(0deg, -45deg);
  transform: skew(0deg, -45deg);
}
/* Top front panel */
.bar-foreground:after,
.bar-inner:after {
  top: -2.5em;
  right: -1.25em;
  width: 100%;
  height: 2.5em;
  background-color: rgba(160, 160, 160, 0.2);
  -webkit-transform: skew(-45deg);
  -moz-transform: skew(-45deg);
  -o-transform: skew(-45deg);
  -ms-transform: skew(-45deg);
  transform: skew(-45deg);
}
/** BAR's inner block **/
.bar-inner {
  z-index: 2;
  /* to be above .bar-background */
  top: auto;
  /* reset position top */
  background-color: rgba(5, 62, 123, 0.6);
  height: 0;
  bottom: -2.5em;
  color: transparent;
  /* hide text values */
  -webkit-transition:
    height 0.8s ease-out,
    bottom 0.8s ease-out;
  -moz-transition:
    height 0.8s ease-out,
    bottom 0.8s ease-out;
  -o-transition:
    height 0.8s ease-out,
    bottom 0.8s ease-out;
  -ms-transition:
    height 0.8s ease-out,
    bottom 0.8s ease-out;
  transition:
    height 0.8s ease-out,
    bottom 0.8s ease-out;
}
/* Right panel */
.bar-inner:before {
  background-color: rgba(5, 62, 123, 0.6);
}
/* Top panel */
.bar-inner:after {
  background-color: rgba(47, 83, 122, 0.7);
}
/****************************************************************************** ** ** ** UI Elements ** ** ** ** You don't need this stuff in general, it's just used for the demo page ** ** ** ******************************************************************************/
/**************** * FILL BUTTONS * ****************/
input[name^="fill-"] {
  width: 65px;
  height: 25px;
  position: absolute;
  opacity: 0;
  cursor: pointer;
  z-index: 100;
}
input[name^="fill-"] + label {
  display: none;
}
input[name^="fill-"]:checked + label {
  background: rgba(34, 35, 36, 0.7);
  border-color: #333;
  color: #fff;
  text-shadow: none;
  box-shadow: 0px 1px 1px rgba(255, 255, 255, 0.4);
}
/* Change bars fill when a Product is selected */
/* None */
/**************** * COLOR BUTTONS * ****************/
input[name^="paint-"] {
  width: 25px;
  height: 25px;
  position: absolute;
  opacity: 0;
  cursor: pointer;
  z-index: 100;
}
/**************** * SIZE BUTTONS * ****************/
input[name^="resize-"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  z-index: 100;
  width: 70px;
  height: 35px;
  z-index: 100;
}
/* unselected color switch */
input[name^="resize-"] + label {
  color: #fff;
  display: inline-block;
  background: rgba(183, 172, 172, 0.7);
  width: 70px;
  line-height: 35px;
  height: 35px;
  text-align: center;
  position: relative;
}
input[name^="resize-"]:checked + label {
  opacity: 0;
}
/**************** * Colors * ****************/
.main span:first-of-type {
  margin-left: -18px;
}
.bt85 {
  margin-bottom: 85px;
}
@media screen and (max-width: 900px) {
  .main {
    display: none;
  }
}
/* Toggle Features Start*/
.navbar-inverse {
  color: #575757;
  margin-bottom: 75px;
  background: #f9fcff;
  border-bottom: 1px solid #cfdeff;
}
.navbar-inverse .navbar-inner {
  min-height: 40px;
}
.navbar-inverse .nav > li > a {
  color: #575757;
  position: relative;
  border-radius: 0;
  font-weight: 600;
  border: none;
  margin-right: 0;
  padding: 15px 35px;
  font-size: 1.15rem;
}
.navbar-inverse .nav > li > a:focus,
.navbar-inverse .nav > li > a:hover {
  background-color: #5eb9fe;
  color: #fff;
}
.navbar-inverse .nav .active > a,
.navbar-inverse .nav .active > a:focus,
.navbar-inverse .nav .active > a:hover {
  background-color: #5eb9fe;
  color: #fff;
  border: none;
}
.navbar-inverse .nav .active > a:after {
  content: " ";
  position: absolute;
  display: inline-block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-top-color: #5eb9fe;
  border-width: 15px;
  margin-left: -15px;
  top: 100%;
  left: 50%;
}
.tab-content .fade.in {
  background: transparent;
}
.navbar-inverse .nav-tabs {
  border-bottom: none;
}
/* Toggle Features End */
#custom-plan {
  text-align: center;
  padding-top: 60px;
  padding-bottom: 30px;
}
#custom-plan h4 {
  color: #3f3d59;
  font-size: 1.25rem;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 30px;
}
#custom-plan p {
  color: #3f3d59;
  font-size: 1.15rem;
  font-weight: 300;
  padding-left: 100px;
  padding-right: 100px;
  line-height: 25px;
  margin-bottom: 40px;
}
.border-0 {
  border: none !important;
}
/* Press */
.press-logos-section img {
  max-width: 100%;
  border-radius: 5px;
}
.press-logos-section .press-logo-link {
  display: inline-block;
}

/*------------------------------------------------------------------ 12. Footer Section Styles-------------------------------------------------------------------*/
.footer {
  background-color: #10205a;
  padding-top: 50px;
  padding-bottom: 25px;
  position: relative;
  text-align: center;
}
.footer .footer-menu-holder {
  display: inline-block;
  text-align: left;
  min-width: 130px;
}
.footer .address-holder {
  display: inline-block;
  text-align: left;
}
.footer h4,
.footer h2 {
  font-size: 1.25rem;
  color: #fff;
  margin: 0;
  margin-bottom: 10px;
  font-weight: 600;
}
.footer ul.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.footer ul.footer-menu li {
  margin-bottom: 5px;
}
.footer ul.footer-menu li a {
  color: #ccc9fb;
  font-size: 1rem;
  font-weight: 300;
  padding: 2px 12px;
  margin-left: -15px;
  border-radius: 10px;
  cursor: pointer;
}
.footer ul.footer-menu li a:hover,
.footer ul.footer-menu li a:focus,
.footer ul.footer-menu li.active a {
  color: #756de7;
  background-color: #fff;
  -webkit-box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  text-decoration: none;
}
.footer p {
  color: #fff;
  font-size: 15px;
}
.footer .phone {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 15px;
  border-radius: 10px;
  padding: 15px 25px;
  margin-top: -15px;
  margin-left: -25px;
}

.footer .email .fa {
  color: #fff;
  font-size: 1.25rem;
  width: 20px;
  margin-right: 7px;
  text-align: center;
}
.footer .address {
  margin-bottom: 15px;
  border-radius: 10px;
  padding: 15px 25px;
  margin-top: -15px;
  margin-left: -25px;
}
.footer .address div {
  display: inline-block;
  color: #fff;
  font-size: 15px;
}
.footer .address .fa {
  color: #fff;
  font-size: 25px;
  width: 20px;
  margin-right: 7px;
  text-align: center;
  vertical-align: top;
}
.footer .social-menu {
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer .social-menu li {
  margin-bottom: 20px;
  text-align: left;
}
.footer .social-menu li a {
  display: inline-block;
}
.footer .social-menu li a .fa {
  color: #5550a8;
  font-size: 30px;
  text-align: center;
  min-width: 30px;
}
.footer .social-menu li a:hover .fa,
.footer .social-menu li a:focus .fa {
  color: #fff;
}
.footer .fa-code {
  color: #fd6f6f;
}
.footer .link {
  color: #ccc9fb;
}
.footer .bottom-line {
  color: #fff;
  margin: 0 10px;
}
/*------------------------------------------------------------------ 13. Sign in - Sign up Pages Styles-------------------------------------------------------------------*/
.form-control::-webkit-input-placeholder {
  color: #526489;
}
.form-control:-moz-placeholder {
  color: #526489;
}
.form-control::-moz-placeholder {
  color: #526489;
}
.form-control:-ms-input-placeholder {
  color: #526489;
}

.navbar-inverse {
  text-align: center;
}
.navbar-inverse .nav-tabs > li {
  float: none;
  display: inline-block;
}
.right.carousel-control {
  left: 100%;
}

.align-items {
  display: flex;
  align-items: center;
}
/* Catrd Home End */
/*------------------------------------------------------------------ 15. Responsive Styles-------------------------------------------------------------------*/
/* Other screens styles modifications */
@media screen and (max-width: 680px) {
  .cp_shared,
  .ssd_shared,
  .cp_reseller,
  .ssd_reseller {
    height: 275px;
    width: 100%;
  }
  .cyberin_offers p.terms {
    margin-top: 20px;
  }
  .cyberin_offers h2 {
    padding: 0 20px;
  }
  .tld_pricing {
    margin: 20px 0;
  }
  .vpsBox {
    min-width: 295px;
    max-width: 295px;
    display: inline-block;
  }
  .mobile-view .navbar-default .navbar-nav .offersList span {
    top: 90%;
    right: 50px;
    height: 20px;
  }
  .affliateBg {
    background: transparent;
  }
  .mobile-view .support-dropdown {
    display: none;
  }
  .mobile-view #nav {
    padding: 0;
    padding-bottom: 10px;
  }
  .mobile-view .mega .dropdown-menu .mega-box {
    padding: 06px 0 06px 38px;
  }
  .mobile-view .mega-box .mega-icon .fa {
    font-size: 1.45rem;
  }
  .mobile-view .mega-box .mega-details {
    display: none;
  }
  .mobile-view .mega-box .mega-icon {
    top: 10px;
    left: 0;
    margin-top: 0;
  }
  .mobile-view #nav .dropdown-menu {
    display: none;
    box-shadow: none;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
  }
  .mobile-view .navbar-default .navbar-nav > li > a {
    padding: 10px;
  }
  /* Mobile navbar styles removed - using unified Vercel design */
  .mobile-view ul li,
  .mobile-view .mark,
  .mobile-view mark {
    font-size: 15px;
  }
  .mobile-view .message-area .box .h3 {
    font-size: 28px;
  }
  .mobile-view .mobile-login {
    display: block;
  }
}
@media (max-width: 992px) {
  .message-area .buttons-holder .ybtn {
    margin-left: 0;
  }
  .vpsBox {
    min-width: 295px;
    max-width: 295px;
    display: inline-block;
  }
  .nav > li > a {
    padding: 20px 12px;
  }
  .navbar-default .navbar-nav > li > a.login-button {
    margin-left: 10;
  }
  .support-button-holder a.support-button {
    padding: 9px 20px;
  }
  #form-section svg.logo text {
    fill: #756de7;
  }
  #contact-info div[class^="col-"]:nth-child(2) .info-box:before {
    opacity: 0;
  }
  #contact-info div[class^="col-"]:nth-child(2) .info-box:after {
    opacity: 0;
  }
}
@media (max-width: 768px) {
  .vpsBox {
    min-width: 295px;
    max-width: 295px;
    display: inline-block;
  }
  body {
    overflow-x: hidden;
  }
  .navbar-toggle {
    margin-right: 0;
    background-color: #171717;
  }
  #offerModal img {
    width: 85%;
    margin-top: 45%;
  }
  #nav .dropdown-menu {
    display: block;
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    top: 0;
    border-radius: 0;
  }
  #nav .dropdown {
    width: 100%;
  }
  .nav > li {
    text-align: center;
  }
  .navbar-default .navbar-nav > li > a.login-button {
    margin-left: 0;
  }
  .support-button-holder a.support-button {
    margin-left: 0;
  }
  .support-button-holder .dropdown-menu {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 1;
  }
  /* Legacy mega dropdown styles removed - using new mega dropdown system */
  .support-button-holder .dropdown-menu:before {
    right: 50%;
    margin-right: -2px;
  }
  #top-content .domain-search-holder input[type="text"] {
    max-width: 100%;
    margin-bottom: 10px;
  }
  #top-content .domain-search-holder input[type="submit"] {
    margin-left: 0px;
  }
  #top-content .big-title {
    font-size: 40px;
  }
  #top-content .big-title span {
    font-size: 40px;
  }
  #info {
    padding-top: 20px;
    padding-bottom: 40px;
  }
  #info .info-text {
    padding-left: 5%;
    padding-right: 5%;
  }
  #custom-plan {
    padding-top: 20px;
    padding-bottom: 10px;
  }
  #custom-plan p {
    padding-left: 20px;
    padding-right: 20px;
  }
  #testimonials {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .company-info-holder .details-holder p {
    font-size: 1.25rem;
  }
  .icons-animation-holder {
    width: 238px;
    height: 184px;
  }
  #more-info {
    padding-bottom: 150px;
  }
}
@media (max-width: 480px) {
  .section-dark {
    background: #47525d;
  }
  .promo-box.premium {
    padding: 0;
  }
  .promo-box.premium ul li {
    width: 100%;
  }
}
@media (max-width: 320px) {
  #apps .apps-holder .app-icon-holder {
    width: 23%;
  }
  #apps .apps-holder .app-icon-holder .app-icon img {
    width: 30px;
  }
  #apps .apps-holder .app-icon-holder .app-title {
    font-size: 10px;
  }
}
h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 16px;
  color: #454545;
}
h4.small {
  font-size: 1.35rem;
}
/* Upgrade CSS*/
@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  to {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
@keyframes bounce {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  to {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
/* ToolTip 05/09/2020*/

.tab-swipe .indicator {
  border-radius: 50px;
  margin: 0 10px;
}
.tab-swipe {
  position: relative;
  margin: 25px 0;
  display: flex;
}
.tab-swipe .indicator {
  background-color: #4e4e4e;
  position: absolute;
  left: 0;
  z-index: -1;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  height: calc(100% - 10px);
}

.nav-tabs > li > a:hover,
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus {
  border: none;
}
.nav-tabs > li.active > a {
  background: #3769dd;
}

@keyframes arr {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(50px);
  }
}
/*TrustPilot*/
.loader,
.loader:before,
.loader:after {
  border-radius: 50%;
  width: 1.5em;
  height: 1.5em;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: load7 1.8s infinite ease-in-out;
  animation: load7 1.6s infinite ease-in-out;
}
.loader {
  color: #00b67a;
  font-size: 10px;
  margin: 80px auto;
  position: relative;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.loader:before,
.loader:after {
  content: "";
  position: absolute;
  top: 0;
}
.loader:before {
  left: -3.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.loader:after {
  left: 3.5em;
}
@-webkit-keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
@keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
.trustpilot a {
  color: #333;
  font-size: 1.15rem;
  display: block;
  margin: 15px 0;
}
.trustpilot img {
  width: 25px;
  margin-top: -5px;
}
.trustpilot-widget {
  color: #333;
  padding: 30px 0 25px 0;
  overflow: hidden;
  border-top: 1px solid #e7e7e7;
}
.trustpilot-widget .wrapper-left a {
  color: #333;
  font-weight: 600;
  text-decoration: underline;
}
.trustpilot-widget .wrapper-left {
  text-align: center;
}
.trustpilot-widget .wrapper-left .title {
  color: #333;
  font-size: 1.5rem;
  padding: 0;
  margin: 0;
  margin-bottom: 10px;
}
.trustpilot-widget .wrapper-left .rating img {
  max-width: 160px;
  margin: auto;
}
.trustpilot-widget .wrapper-left .info {
  color: #333;
  font-size: 13px;
  line-height: 45px;
}
.trustpilot-widget .wrapper-left .brand-logo img {
  max-width: 25px;
  margin: auto;
  margin-top: -10px;
  display: inline-block;
}
.trustpilot-widget .wrapper-left .brand-logo p {
  font-size: 1.25rem;
  line-height: 35px;
  color: #333;
  text-align: center;
  display: inline-block;
}
.trustpilot-widget .reviews {
  margin-left: 2%;
}
/* The controlsy */
.trustpilot-widget .carousel-control {
  height: 23px;
  width: 23px;
  border: 1px solid #bfbfbf;
  border-radius: 50%;
  margin-top: 60px;
  font-size: 25px;
  line-height: 18px;
  color: #b3afaf;
  text-shadow: none;
}
.trustpilot-widget .carousel-control.right {
  margin-left: 40px;
}
.trustpilot-widget .carousel-control.left {
  left: -70px;
}
.trustpilot-widget .carousel-control.right:hover,
.trustpilot-widget .carousel-control.left:hover {
  color: #b3afaf;
}
.trustpilot-widget .carousel-inner .rating img {
  max-width: 110px;
}
.trustpilot-widget .carousel-inner {
  overflow: hidden;
}
.trustpilot-widget .carousel-inner .date,
.trustpilot-widget .carousel-inner .name {
  color: rgba(0, 0, 0, 0.6);
  font-size: 13px;
}
.trustpilot-widget .carousel-inner .title {
  margin: 15px 0 10px 0;
  font-weight: 700;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
}
.trustpilot-widget .carousel-inner .descriptions {
  min-height: 60px;
  font-size: 0.9rem;
}
.trustpilot-widget .carousel-inner .name {
  margin-top: 25px;
}
@media (min-width: 320px) and (max-width: 480px) {
  .trustpilot-widget {
    padding: 15px 0 25px 0;
  }
  .trustpilot-widget .carousel-inner {
    display: none;
  }
  .pull-right {
    float: none !important;
    display: inline-block;
  }
  .xs-pricing-group ul li h4 {
    display: none;
  }
  .main-nav-tab li {
    display: block;
  }
  .brand-info {
    text-align: center;
  }
  .brand-info .img-responsive {
    max-width: 175px;
    margin: auto;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .trustpilot-widget .carousel-inner {
    padding: 20px;
  }
  .brand-info {
    text-align: center;
  }
  .brand-info .img-responsive {
    max-width: 175px;
    margin: auto;
  }
}
/* Video frame */
.videoWrapper {
  position: relative;
  width: 100%;
  height: 0;
}
.videoWrapper43 {
  padding-top: 75%;
}
.videoWrapper169 {
  padding-top: 56%;
}
.videoIframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
}
.videoPoster {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  cursor: pointer;
  border: 0;
  outline: none;
  background-position: 50% 50%;
  background-size: 100% 100%;
  background-size: cover;
  text-indent: -999em;
  overflow: hidden;
  opacity: 1;
  border-radius: 3px;
  background: url(../images/mailchannels-webmail.png);
  -webkit-transition:
    opacity 800ms,
    height 0s;
  -moz-transition:
    opacity 800ms,
    height 0s;
  transition:
    opacity 800ms,
    height 0s;
  -webkit-transition-delay: 0s, 0s;
  -moz-transition-delay: 0s, 0s;
  transition-delay: 0s, 0s;
}
.videoPoster:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  margin: -40px 0 0 -40px;
  border: 5px solid #fff;
  border-radius: 100%;
  -webkit-transition: border-color 300ms;
  -moz-transition: border-color 300ms;
  transition: border-color 300ms;
}
.videoPoster:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  margin: -20px 0 0 -10px;
  border-left: 32px solid #fff;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  -webkit-transition: border-color 300ms;
  -moz-transition: border-color 300ms;
  transition: border-color 300ms;
}
.videoPoster:hover:after,
.videoPoster:focus:after {
  border-left-color: #0070f3;
}
.videoWrapperActive .videoPoster {
  opacity: 0;
  height: 0;
  -webkit-transition-delay: 0s, 800ms;
  -moz-transition-delay: 0s, 800ms;
  transition-delay: 0s, 800ms;
}

/* --- Bootstrap 5 Margin and Padding Utility Classes --- */
.m-0 {
  margin: 0 !important;
}
.m-1 {
  margin: 0.25rem !important;
}
.m-2 {
  margin: 0.5rem !important;
}
.m-3 {
  margin: 1rem !important;
}
.m-4 {
  margin: 1.5rem !important;
}
.m-5 {
  margin: 3rem !important;
}

.mt-0 {
  margin-top: 0 !important;
}
.mt-1 {
  margin-top: 0.25rem !important;
}
.mt-2 {
  margin-top: 0.5rem !important;
}
.mt-3 {
  margin-top: 1rem !important;
}
.mt-4 {
  margin-top: 1.5rem !important;
}
.mt-5 {
  margin-top: 3rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}
.mb-1 {
  margin-bottom: 0.25rem !important;
}
.mb-2 {
  margin-bottom: 0.5rem !important;
}
.mb-3 {
  margin-bottom: 1rem !important;
}
.mb-4 {
  margin-bottom: 1.5rem !important;
}
.mb-5 {
  margin-bottom: 3rem !important;
}

.ms-0 {
  margin-left: 0 !important;
}
.ms-1 {
  margin-left: 0.25rem !important;
}
.ms-2 {
  margin-left: 0.5rem !important;
}
.ms-3 {
  margin-left: 1rem !important;
}
.ms-4 {
  margin-left: 1.5rem !important;
}
.ms-5 {
  margin-left: 3rem !important;
}

.me-0 {
  margin-right: 0 !important;
}
.me-1 {
  margin-right: 0.25rem !important;
}
.me-2 {
  margin-right: 0.5rem !important;
}
.me-3 {
  margin-right: 1rem !important;
}
.me-4 {
  margin-right: 1.5rem !important;
}
.me-5 {
  margin-right: 3rem !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.mx-1 {
  margin-left: 0.25rem !important;
  margin-right: 0.25rem !important;
}
.mx-2 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}
.mx-3 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}
.mx-4 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}
.mx-5 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}
.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}
.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}
.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}
.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}
.p-1 {
  padding: 0.25rem !important;
}
.p-2 {
  padding: 0.5rem !important;
}
.p-3 {
  padding: 1rem !important;
}
.p-4 {
  padding: 1.5rem !important;
}
.p-5 {
  padding: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}
.pt-1 {
  padding-top: 0.25rem !important;
}
.pt-2 {
  padding-top: 0.5rem !important;
}
.pt-3 {
  padding-top: 1rem !important;
}
.pt-4 {
  padding-top: 1.5rem !important;
}
.pt-5 {
  padding-top: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}
.pb-1 {
  padding-bottom: 0.25rem !important;
}
.pb-2 {
  padding-bottom: 0.5rem !important;
}
.pb-3 {
  padding-bottom: 1rem !important;
}
.pb-4 {
  padding-bottom: 1.5rem !important;
}
.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}
.ps-1 {
  padding-left: 0.25rem !important;
}
.ps-2 {
  padding-left: 0.5rem !important;
}
.ps-3 {
  padding-left: 1rem !important;
}
.ps-4 {
  padding-left: 1.5rem !important;
}
.ps-5 {
  padding-left: 3rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}
.pe-1 {
  padding-right: 0.25rem !important;
}
.pe-2 {
  padding-right: 0.5rem !important;
}
.pe-3 {
  padding-right: 1rem !important;
}
.pe-4 {
  padding-right: 1.5rem !important;
}
.pe-5 {
  padding-right: 3rem !important;
}

.pe-10 {
  padding-right: 10rem !important;
}

.pe-14 {
  padding-right: 14rem !important;
}

.pe-16 {
  padding-right: 16rem !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.px-1 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}
.px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}
.px-3 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}
.px-4 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}
.px-5 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}
.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}
.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

/* Remote Working Section Styles */

.remote-work-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
}

.floating-icons {
  position: relative;
  width: 200px;
  height: 200px;
}

.floating-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: float 3s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.floating-icon:nth-child(2) {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.floating-icon:nth-child(3) {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.floating-icon:nth-child(4) {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.floating-icon i {
  font-size: 1.5rem;
  color: white;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) translateX(-50%);
  }
  50% {
    transform: translateY(-10px) translateX(-50%);
  }
}

.floating-icon:nth-child(2) {
  animation-name: floatRight;
}

.floating-icon:nth-child(4) {
  animation-name: floatLeft;
}

@keyframes floatRight {
  0%,
  100% {
    transform: translateY(-50%) translateX(0px);
  }
  50% {
    transform: translateY(-50%) translateX(10px);
  }
}

@keyframes floatLeft {
  0%,
  100% {
    transform: translateY(-50%) translateX(0px);
  }
  50% {
    transform: translateY(-50%) translateX(-10px);
  }
}

/* Team Collage Styles */
.team-collage-container {
  margin-top: 3rem;
}

.collage-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.team-collage-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  height: 500px;
  position: relative;
}

.collage-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.collage-item:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.main-image {
  grid-row: 1 / 3;
  grid-column: 1;
}

.secondary-image.top {
  grid-row: 1;
  grid-column: 2;
}

.secondary-image.bottom {
  grid-row: 2;
  grid-column: 2;
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.collage-item:hover img {
  transform: scale(1.1);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: all 0.3s ease;
}

.collage-item:hover .image-overlay {
  opacity: 1;
}

.overlay-content {
  color: white;
}

.overlay-content p {
  font-size: 0.9rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.collage-cta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  z-index: 10;
  transition: all 0.3s ease;
}

.collage-cta:hover {
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
  .team-collage-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
  }

  .main-image {
    grid-row: 1;
    grid-column: 1;
    height: 250px;
  }

  .secondary-image.top {
    grid-row: 2;
    grid-column: 1;
    height: 200px;
  }

  .secondary-image.bottom {
    grid-row: 3;
    grid-column: 1;
    height: 200px;
  }

  .collage-cta {
    position: static;
    transform: none;
    margin-top: 1rem;
  }

  .collage-cta:hover {
    transform: scale(1.02);
  }

  .remote-benefits .row {
    flex-direction: column;
  }

  .benefit-item {
    margin-bottom: 1rem;
  }

  .floating-icons {
    width: 150px;
    height: 150px;
  }

  .floating-icon {
    width: 45px;
    height: 45px;
  }

  .floating-icon i {
    font-size: 1.2rem;
  }
}
.zsiq_float {
  display: none !important;
}

/* Custom Backgrounds */
.cpanel-advantage {
  position: relative;
  background-color: #000;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom right;
  overflow: hidden;
}

.cpanel-advantage::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../images/cpanel-advantage.png) no-repeat 106% 0%;
  background-size: 20%;
  filter: brightness(1.4) contrast(0.5);
  opacity: 0.5;
  z-index: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.support-section::before {
  content: "";
  position: absolute;
  inset: 0 0 0 0;
  pointer-events: none;
  z-index: 0;
  background: url("../images/support-conversation.png")
    no-repeat;
  background-repeat: no-repeat;
  background-size: 42%;
  background-position: 105% 100px;
  opacity: 1;
}

.cpanel-advantage::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../images/cpanel-advantage-2.png) no-repeat -10%
    111%;
  background-size: 20%;
  filter: brightness(1) contrast(0.5);
  opacity: 0.5;
  z-index: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.cpanel-advantage {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .cpanel-advantage::before {
    background-size: 70%;
    filter: brightness(1.3) contrast(1.05);
  }
}

@media (max-width: 480px) {
  .cpanel-advantage::before {
    background-size: 60%;
    filter: brightness(1.2) contrast(1.05);
  }
}
.mark {
  font-size: 1.15rem;
  padding: 20px 25px;
  border-radius: 10px;
  color: #575757;
  margin: auto;
  margin-bottom: 4rem;
  letter-spacing: -0.02rem;
  max-width: 875px;
  position: relative;
  padding-left: 50px;
  padding-right: 50px;
  line-height: 1.5;
}

.mark::before {
  content: "\f10d";
  font-family: "FontAwesome";
  position: absolute;
  left: 20px;
  top: 10px;
  font-size: 1.5rem;
  color: #f59e0b;
  opacity: 0.6;
}

.mark::after {
  content: "\f10e";
  font-family: "FontAwesome";
  position: absolute;
  right: 20px;
  bottom: 10px;
  font-size: 1.5rem;
  color: #f59e0b;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .mark {
    padding-left: 40px;
    padding-right: 40px;
  }
  .mark::before {
    left: 15px;
    font-size: 1.2rem;
  }
  .mark::after {
    right: 15px;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .mark {
    padding-left: 35px;
    padding-right: 35px;
  }
  .mark::before {
    left: 12px;
    font-size: 1rem;
    top: 8px;
  }
  .mark::after {
    right: 12px;
    font-size: 1rem;
    bottom: 8px;
  }
}
/* Light Block Backgrounds */
.light-yellow-block {
  background: #fefce8;
  border: 1px solid #f7f3cc;
}

.light-yellow-block .card-icon,
.light-yellow-block .card-content .card-badge {
  color: #5e5c5c;
}

.light-pink-block {
  background: #fdf4ff;
  border: 1px solid #fdeaff;
}

.light-red-block {
  background: rgb(251 67 128);
  border: none;
}

.light-pink-block .card-icon,
.light-pink-block .card-badge {
  background: #f9bfff;
  color: #5e5c5c;
}

.light-blue-block {
  background: #e6f5ff;
  border: none;
}

.light-blue-block-2 {
  background: #f0f9ff;
  border: 1px solid #ccebff;
}

.light-green-block-2 {
  background: #bcc1ca;
  border: 1px solid #bcc1ca !important;
}

.light-blue-block-3 {
  background: #cce6ff;
  border: none;
}

.blue-block-4 {
  background: #01abff;
  border: none;
}

.light-blue-block .card-icon,
.light-blue-block .card-content .card-badge {
  background: #b3d9ff;
  color: #5e5c5c;
}

.light-green-block {
  background: #e4f1ef;
  border: 1px solid #d5ebe7;
}

.black-block {
  background: #1b1b1b;
  border: none;
}

.brown-block {
  background: #907057;
  border: none;
}

.brown-block-2 {
  background: #eee4db;
  border: none;
}

.light-green-block .card-icon,
.light-green-block .card-content .card-badge {
  background: #d1fbe0;
  color: #5e5c5c;
}

.light-brown-block {
  background: #f9fafb;
  border: none;
}

.light-orange-block {
  background: #fef2f2;
  border: none;
}

.why-cyberin {
  padding-bottom: 135px;
}

.media-coverage .hero-section {
  min-height: 580px;
}

.primary-header {
  background: #fff;
}

/* Featured Card */
.ssl-card::before,
.server-nvme-card::before,
.why-cyberin::before,
.hero-section::before,
.hero-section::after,
.cp-reseller-header::after,
.media-coverage::after,
.media-coverage::after,
.domain-page::before,
.domain-page::after,
.email-marketing::before,
.email-marketing::after,
.cpanel-card::after {
  content: "";
  position: absolute;
  inset: 0 0 0 0;
  pointer-events: none;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: 70%;
  background-position: 100% 100%;
}
.ssl-card::before {
  background: url(../images/ssl-benefits.png);
  background-repeat: no-repeat;
  background-size: 75%;
  background-position: 165% 105%;
  filter: brightness(0.25);
}
.server-nvme-card::before {
  background: url(../images/server-amd.png);
  background-repeat: no-repeat;
  background-size: 20%;
  background-position: 95% 85%;
  filter: brightness(0.25);
}
.why-cyberin::before {
  background: url(../images/why-cyberin.png);
  background-repeat: no-repeat;
  background-size: 80%;
  background-position: 0% 100%;
}
.hero-section::before {
  background: url(../images/right-hero.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: -29% 0;
}
.hero-section::after {
  background: url(../images/left-hero.svg);
  background-repeat: no-repeat;
  background-size: 80%;
  background-position: 100% 0;
}
.cp-reseller-header::after {
  background: url(../images/whm-right.png);
  background-repeat: no-repeat;
  background-size: 27%;
  background-position: 100% 50%;
  filter: brightness(1.4) contrast(0.5);
  opacity: 0.35;
}
.media-coverage::before {
  background: url(../images/media-left.png);
  background-repeat: no-repeat;
  background-size: 25%;
  background-position: 0% 36%;
  filter: brightness(1.4) contrast(0.5);
  opacity: 0.35;
}
.media-coverage::after {
  background: url(../images/media-right.png);
  background-repeat: no-repeat;
  background-size: 25%;
  background-position: 100% 38%;
  filter: brightness(1.4) contrast(0.5);
  transform: rotate(0deg);
  opacity: 0.35;
}
.domain-page::before {
  background: url(../images/domain-left.png);
  background-repeat: no-repeat;
  background-size: 28%;
  background-position: -5% 50%;
  filter: brightness(1.4) contrast(0.5);
  opacity: 0.5;
}
.domain-page::after {
  background: url(../images/domain-right.png);
  background-repeat: no-repeat;
  background-size: 28%;
  background-position: 100% 50%;
  filter: brightness(1.4) contrast(0.5);
  transform: rotate(0deg);
  opacity: 0.5;
}
.email-marketing::before {
  background: url(../images/email-marketing-left.png);
  background-repeat: no-repeat;
  background-size: 20%;
  background-position: -5% 65%;
  filter: brightness(1) contrast(0.75);
  opacity: 0.5;
}
.email-marketing::after {
  background: url(../images/email-marketing-right.png);
  background-repeat: no-repeat;
  background-size: 18%;
  background-position: 105% 65%;
  filter: brightness(1) contrast(1);
  transform: rotate(0deg);
  opacity: 0.5;
}
.cpanel-card::after {
  background: url(../images/cpanel-logo.png);
  background-repeat: no-repeat;
  background-size: 35%;
  background-position: 100% 100%;
  bottom: 10px;
  right: 10px;
  filter: brightness(0.05);
}
@media (max-width: 768px) {
  .why-cyberin::before {
    background-size: 100%;
    background-position: 0% 50px;
  }
}
@media (max-width: 480px) {
  .why-cyberin::before {
    background-size: 100%;
    background-position: 0% 50px;
  }
}
/* OneClickApps */
.oneclick-apps {
  background: #f8fafc;
}
.logo-marquee {
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
}

/* each row */
.marquee-row {
  position: relative;
  overflow: hidden;
  margin-bottom: 28px;

  /* fade edges */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

/* moving track */
.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee-ltr 50s linear infinite;
}

/* reverse direction */
.marquee-row.rtl .marquee-track {
  animation: marquee-rtl 50s linear infinite;
}

/* logo cards */
.logo-card {
  width: 200px;
  height: 100px;
  background: #fff;
  border-radius: 10px;
  display: grid;
  place-items: center;
  padding: 20px 30px;
}

.logo-card img {
  max-width: 100%;
  max-height: 55px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* animations */
@keyframes marquee-ltr {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes marquee-rtl {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

/* Lazy loading styles */
.lazy-img {
  opacity: 0;
  transition: opacity 0.3s ease-in;
}

.lazy-img.loaded {
  opacity: 1;
}
/* OneClick apps end*/
/* Migration */
.migration-flow {
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}
.migration-card {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.migration-card:last-child {
  display: flex;
  align-items: center;
}

.migration-flow .performance-header {
  background: #f0faff;
  padding: 20px 30px;
  border-radius: 12px;
}

.migration-card:last-child .performance-header {
  width: 100%;
}
.integration-wrap {
  width: 100%;
  height: 635px;
  overflow: hidden;
  /* important for Bootstrap columns */
}

.integration-svg {
  width: 100%;
  /* deliberate overscale like reference */
  height: 100%;
}

/* curved dashed lines */
.ray {
  fill: none;
  stroke: #d3d3d3;
  stroke-width: 2;
  stroke-dasharray: 6 10;
  animation: dash 3s linear infinite;
}

@keyframes dash {
  to {
    stroke-dashoffset: -120;
  }
}

/* moving pulse-dot */
.pulse-dot {
  fill: #00abff;
}

/* cloudexter card */
.cloud-card {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 22px;
  display: grid;
  place-items: center;
  font-size: 32px;
  font-weight: 700;
}

.cloud-card img {
  width: 100%;
}

/* logo pills */
.logo-pill {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 999px;
  display: grid;
  place-items: center;
}

.logo-pill img {
  width: 135px;
}
/* Migration Ends */
/* Data Centers Start */
/* DataCenter */
.section-dark {
  border: none;
  width: 100%;
  padding: 50px 0;
  margin-top: 25px;
}

.location-map {
  position: relative;
}

.location-container {
  position: absolute;
  top: 50%;
  left: 50%;
}

.section-dark .location-map .map {
  opacity: 0.8;
}

.location-map-sm {
  height: 260px;
}

.location-map-sm .location-container {
  height: 260px;
  width: 524px;
  margin: -130px 0 0 -262px;
}

.location-map-sm .map {
  height: 260px;
  width: 524px;
}

.location-map-sm .location-name {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all ease 0.15s;
  transition: all ease 0.15s;
  -webkit-transform: scale(0.65);
  transform: scale(0.65);
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
}

.location-map-sm .location:hover {
  z-index: 1000;
}

.location-map-sm .location:hover .location-name {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* 3.8.2 Map: Large */
.location-map-lg .map {
  height: 580px;
  width: 1174px;
}

/* 3.8.3 Map: Pin */
.location-pin {
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}

/* Cloud pin (blue) - default */
.location-pin-cloud,
.location-pin-cloud:after {
  background-color: #6b7280;
}

/* Active pin (green) - for active data centers */
.location-pin-active,
.location-pin-active:after {
  background-color: #16a34a;
  box-shadow: 0 0 10px rgba(22, 163, 74, 0.6);
}

.location-pin-active:after {
  -webkit-animation: pulsate-green 1.5s ease-out infinite;
  animation: pulsate-green 1.5s ease-out infinite;
}

@keyframes pulsate-green {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* cPanel pin (green) */
.location-pin-cpanel,
.location-pin-cpanel:after {
  background-color: #10b981;
}

.location-pin {
  position: absolute;
  z-index: 999;
  display: block;
  height: 12px;
  width: 12px;
  left: 0;
  top: 0;
}

/* Dual pins positioning - show both pins side by side */
.location-cpanel {
  width: 28px;
}

.location-cpanel .location-pin-cloud {
  left: -8px;
}

.location-cpanel .location-pin-cpanel {
  left: 8px;
}

.location-cpanel .location-name:after {
  background-color: #00b5ca;
}

.location-pin-lg {
  position: relative;
  display: block;
  height: 20px;
  width: 20px;
}

.location-pin:after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  content: "";
  height: 22px;
  width: 22px;
  border-radius: 50%;
  margin: -11px 0 0 -11px;
  -webkit-animation: pulsate 1s linear;
  animation: pulsate 1s linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.location-pin-lg:after {
  height: 40px;
  width: 40px;
  margin: -20px 0 0 -20px;
}

.location-map-sm .location {
  height: 8px;
  width: 8px;
  cursor: pointer;
}

.location-map-sm .location-pin {
  height: 8px;
  width: 8px;
}

.location-map-sm .location-pin:after {
  height: 16px;
  width: 16px;
  margin: -8px 0 0 -8px;
}

.location-map-sm .location-cpanel {
  width: 20px;
}

.location-map-sm .location-cpanel .location-pin-cloud {
  left: -6px;
}

.location-map-sm .location-cpanel .location-pin-cpanel {
  left: 6px;
}

@-webkit-keyframes pulsate {
  0% {
    -webkit-transform: scale(0);
    opacity: 0.05;
  }

  20% {
    -webkit-transform: scale(0.7);
    opacity: 0.1;
  }

  40% {
    -webkit-transform: scale(0.9);
    opacity: 0.2;
  }

  60% {
    -webkit-transform: scale(1.1);
    opacity: 0.3;
  }

  100% {
    -webkit-transform: scale(1.4);
    opacity: 0;
  }
}

@keyframes pulsate {
  0% {
    transform: scale(0);
    opacity: 0.05;
  }

  20% {
    transform: scale(0.7);
    opacity: 0.1;
  }

  40% {
    transform: scale(0.9);
    opacity: 0.2;
  }

  60% {
    transform: scale(1.1);
    opacity: 0.3;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* 3.8.3 Map: Locations */
.location {
  position: absolute;
  z-index: 998;
  height: 12px;
  width: 12px;
}

.location-name {
  position: absolute;
  z-index: 999;
  display: block;
  height: 28px;
}

.location-name > span {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 15px;
  background-color: #717c93;
  color: #fff;
  font-size: 14px;
  line-height: 28px;
  white-space: nowrap;
  border-radius: 15px;
  -webkit-box-shadow: 0 5px 20px -5px rgba(11, 27, 38, 0.2);
  box-shadow: 0 5px 20px -5px rgba(11, 27, 38, 0.2);
}

.location-name:after {
  position: absolute;
  z-index: -1;
  display: block;
  content: "";
  height: 1px;
  width: 20px;
  background-color: #00b5ca;
}

/* Location Badge - Active / Coming Soon */
.location-badge {
  position: absolute;
  z-index: 1000;
  display: inline-block;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 600;
  border-radius: 10px;
  background-color: #6b7280;
  color: #fff;
  white-space: nowrap;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}

.location-badge-active {
  background-color: #16a34a;
  box-shadow: 0 0 8px rgba(22, 163, 74, 0.5);
}

/* Inline status text inside label bubble */
.location-status {
  font-size: 10px;
  font-weight: 500;
  margin-left: 6px;
  padding: 1px 6px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.2);
}

.location-status-active {
  color: #00ff88;
}

.location-status-soon {
  color: #cccccc;
}

/* Legend pin for active */
.legend-pin-active {
  background-color: #16a34a !important;
  box-shadow: 0 0 6px rgba(22, 163, 74, 0.5);
}

/* Datacenter Legend */
.datacenter-legend {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 100px;
  padding: 20px 0;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.legend-pin {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  position: relative;
}

.legend-pin:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 22px;
  margin: -11px 0 0 -11px;
  border-radius: 100%;
  opacity: 0.3;
}

.legend-pin-cpanel {
  background-color: #10b981;
}

.legend-pin-cpanel:after {
  background-color: #10b981;
}

.legend-pin-cloud {
  background-color: #6b7280;
}

.legend-pin-cloud:after {
  background-color: #6b7280;
}

.legend-text {
  font-size: 14px;
  color: rgb(243, 241, 241);
  font-weight: 500;
}

.section-dark .legend-text {
  color: #fff;
}

.location-map-grey .location-name:after {
  background-color: #c4cacc;
}

.location-seattle {
  top: 180px;
  left: 150px;
}

.location-seattle .location-name {
  bottom: 44px;
  right: 44px;
}

.location-seattle .location-name:after {
  bottom: -20px;
  right: -49px;
  width: 58px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.location-map-sm .location-seattle {
  top: 84px;
  left: 66px;
}

.location-silicon-valley {
  top: 215px;
  left: 148px;
}

.location-silicon-valley .location-name {
  top: 35px;
  right: 37px;
}

.location-silicon-valley .location-name:after {
  top: -10px;
  right: -35px;
  width: 50px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.location-map-sm .location-silicon-valley {
  top: 100px;
  left: 64px;
}

.location-los-angeles {
  top: 232px;
  left: 164px;
}

.location-los-angeles .location-name {
  top: 78px;
  right: -45px;
}

.location-los-angeles .location-name:after {
  left: 50%;
  top: -70px;
  height: 70px;
  width: 1px;
}

.location-map-sm .location-los-angeles {
  top: 108px;
  left: 72px;
}

.location-dallas {
  top: 238px;
  left: 232px;
}

.location-dallas .location-name {
  bottom: 72px;
  right: -24px;
}

.location-dallas .location-name:after {
  left: 50%;
  bottom: -60px;
  height: 60px;
  width: 1px;
}

.location-map-sm .location-dallas {
  top: 106px;
  left: 98px;
}

.location-miami {
  top: 265px;
  left: 288px;
}

.location-miami .location-name {
  top: 29px;
  left: 30px;
}

.location-miami .location-name:after {
  top: -10px;
  left: -30px;
  width: 40px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.location-map-sm .location-miami {
  top: 120px;
  left: 126px;
}

.location-atlanta {
  top: 234px;
  left: 276px;
}

.location-atlanta .location-name {
  top: -9px;
  left: 110px;
}

.location-atlanta .location-name:after {
  top: 50%;
  left: -100px;
  width: 100px;
}

.location-map-sm .location-atlanta {
  top: 108px;
  left: 126px;
}

.location-new-jersey {
  top: 210px;
  left: 300px;
}

.location-new-jersey .location-name {
  bottom: 28px;
  left: 28px;
}

.location-new-jersey .location-name:after {
  bottom: -10px;
  left: -24px;
  width: 30px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.location-map-sm .location-new-jersey {
  top: 98px;
  left: 132px;
}

.location-chicago {
  top: 200px;
  left: 267px;
}

.location-chicago .location-name {
  bottom: 70px;
  left: 70px;
}

.location-chicago .location-name:after {
  bottom: -31px;
  left: -75px;
  width: 90px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.location-map-sm .location-chicago {
  top: 90px;
  left: 116px;
}

.location-london {
  top: 134px;
  left: 525px;
}

.location-london .location-name {
  bottom: 24px;
  right: 24px;
}

.location-london .location-name:after {
  bottom: 0;
  right: -28px;
  width: 42px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.location-map-sm .location-london {
  top: 62px;
  left: 232px;
}

.location-amsterdam {
  top: 131px;
  left: 545px;
}

.location-amsterdam .location-name {
  bottom: 73px;
  left: 73px;
}

.location-amsterdam .location-name:after {
  bottom: -32px;
  left: -78px;
  width: 95px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.location-map-sm .location-amsterdam {
  top: 60px;
  left: 242px;
}

.location-paris {
  top: 154px;
  left: 538px;
}

.location-paris .location-name {
  top: 50px;
  left: 50px;
}

.location-paris .location-name:after {
  top: -20px;
  left: -52px;
  width: 65px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.location-map-sm .location-paris {
  top: 70px;
  left: 240px;
}

.location-frankfurt {
  top: 142px;
  left: 562px;
}

.location-frankfurt .location-name {
  top: -9px;
  left: 60px;
}

.location-frankfurt .location-name:after {
  top: 50%;
  left: -60px;
  width: 60px;
}

.location-map-sm .location-frankfurt {
  top: 66px;
  left: 250px;
}

.location-tokyo {
  top: 201px;
  right: 162px;
}

.location-tokyo .location-name {
  bottom: 50px;
  left: 50px;
}

.location-tokyo .location-name:after {
  bottom: -22px;
  left: -58px;
  width: 75px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.location-map-sm .location-tokyo {
  top: 90px;
  right: 72px;
}

.location-singapore {
  top: 318px;
  right: 285px;
}

.location-singapore .location-name {
  bottom: 35px;
  left: 35px;
}

.location-singapore .location-name:after {
  bottom: -12px;
  left: -28px;
  width: 45px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.location-map-sm .location-singapore {
  top: 142px;
  right: 126px;
}

.location-map-sm .location-singapore .location-name {
  bottom: 24px;
  left: 24px;
}

.location-map-sm .location-singapore .location-name:after {
  bottom: -10px;
  left: -24px;
  width: 30px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.location-sydney {
  bottom: 102px;
  right: 83px;
}

.location-sydney .location-name {
  bottom: 50px;
  left: 50px;
}

.location-sydney .location-name:after {
  bottom: -22px;
  left: -58px;
  width: 75px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.location-map-sm .location-sydney {
  bottom: 44px;
  right: 36px;
}

.location-london .location-name {
  -webkit-transform-origin: bottom right;
  transform-origin: bottom right;
}

.location-san-francisco .location-name {
  -webkit-transform-origin: top right;
  transform-origin: top right;
}

.location-atlanta .location-name,
.location-frankfurt .location-name {
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

.location-bangalore .location-name {
  -webkit-transform-origin: top left;
  transform-origin: top left;
}

.location-new-york .location-name,
.location-toronto .location-name {
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
}

.location-amsterdam .location-name {
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
}

.location-singapore .location-name,
.location-sydney .location-name {
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
}

.location-india {
  top: 255px;
  left: 800px;
}

.location-india .location-name {
  top: 80px;
  left: -50px;
}

.location-india .location-name:after {
  top: -40px;
  left: 0px;
  width: 85px;
  -webkit-transform: rotate(110deg);
  transform: rotate(110deg);
}

.location-map-sm .location-india {
  top: 70px;
  left: 240px;
}

.location-new-york {
  top: 205px;
  left: 295px;
}

.location-new-york .location-name {
  bottom: 28px;
  left: 28px;
}

.location-new-york .location-name:after {
  bottom: -10px;
  left: -18px;
  width: 30px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.location-map-sm .location-new-york {
  top: 95px;
  left: 130px;
}

.location-toronto {
  top: 185px;
  left: 280px;
}

.location-toronto .location-name {
  bottom: 50px;
  left: 50px;
}

.location-toronto .location-name:after {
  bottom: -22px;
  left: -58px;
  width: 75px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.location-map-sm .location-toronto {
  top: 85px;
  left: 124px;
}

.location-san-francisco {
  top: 215px;
  left: 148px;
}

.location-san-francisco .location-name {
  top: 35px;
  right: 37px;
}

.location-san-francisco .location-name:after {
  top: -10px;
  right: -35px;
  width: 50px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.location-map-sm .location-san-francisco {
  top: 100px;
  left: 64px;
}

.location-bangalore {
  top: 275px;
  left: 790px;
}

.location-bangalore .location-name {
  top: 80px;
  left: -50px;
}

.location-bangalore .location-name:after {
  top: -40px;
  left: 0px;
  width: 85px;
  -webkit-transform: rotate(110deg);
  transform: rotate(110deg);
}

.location-map-sm .location-bangalore {
  top: 70px;
  left: 240px;
}

.location-map .map {
  background: url("../images/worldmap.svg") no-repeat center center;
  background-size: cover;
}

/* ============================================
     Media Queries - Combined and Organized
     ============================================ */

/* Mobile: max-width 567px */
@media (max-width: 567px) {
  .location-map-lg .map {
    display: none;
  }

  .location-map-lg .location-container {
    position: inherit;
    top: auto;
    left: auto;
    max-width: 380px;
    margin: 0 auto;
    padding: 25px 0;
  }

  .location-container:after,
  .location-container:before {
    display: block;
    content: "";
    clear: both;
  }

  .location-map-lg .location-map {
    padding: 0 30px;
  }

  .location-map-lg .location {
    position: inherit;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    float: left;
    height: auto;
    width: 50%;
    margin-bottom: 8px;
    padding-left: 30px;
  }

  .location-map-lg .location:after,
  .location-map-lg .location:before {
    display: block;
    content: "";
    clear: both;
  }

  .location-map-lg .location-pin {
    position: absolute;
    left: 0;
    top: 4px;
    margin: 5px 10px 5px;
  }

  .location-map-lg .location .location-name {
    position: inherit;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    display: inline-block;
    background: transparent;
    color: #fff;
    margin-left: 0.5rem;
    font-size: 0.9rem;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
  }

  .location-map-lg .location .location-name > span {
    position: inherit;
    align-items: center;
    background: transparent;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
  }

  .location-map-lg .location-name:after {
    display: none;
  }

  .section-dark .location-map-lg .location .location-name span {
    color: #fff;
  }

  .datacenter-legend {
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    padding: 15px 0;
  }
}

/* Tablet: 568px - 767px */
@media (min-width: 568px) and (max-width: 767px) {
  .location-map-lg {
    height: 290px;
  }

  .location-map-lg .location-container {
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5);
  }

  .location-map-lg .location-name {
    height: 36px;
    font-size: 20px;
    line-height: 36px;
  }
}

/* Tablet/Desktop: min-width 568px */
@media (min-width: 568px) {
  .location-map-lg {
    height: 520px;
  }

  .location-map-lg .location-container {
    height: 580px;
    width: 1174px;
    margin: -250px 0 0 -582px;
  }

  .location-map .actions {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
  }
}

/* Tablet: 568px - 991px */
@media (min-width: 568px) and (max-width: 991px) {
  .location-map-lg {
    height: 424px;
  }

  .location-map-lg .location-container {
    -webkit-transform: scale(0.68);
    -moz-transform: scale(0.68);
    -ms-transform: scale(0.68);
    -o-transform: scale(0.68);
    transform: scale(0.68);
  }
}

/* Desktop: max-width 991px */
@media (max-width: 991px) {
  .location-map-sm {
    height: 170px;
  }

  .location-map-sm .location-container {
    -webkit-transform: scale(0.65);
    transform: scale(0.65);
  }
}

/* Desktop: 568px - 1199px */
@media (min-width: 568px) and (max-width: 1199px) {
  .location-map-lg {
    height: 450px;
  }

  .location-map-lg .location-container {
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
    transform: scale(0.9);
  }
}

/* Desktop: max-width 1199px */
@media (max-width: 1199px) {
  .location-san-francisco .location-name {
    bottom: 54px;
    right: -26px;
  }

  .location-sydney .location-name {
    left: auto;
    right: 50px;
  }

  .location-sydney .location-name:after {
    left: auto;
    right: -58px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .location-san-francisco .location-name:after {
    right: 3px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
/* Data Centers End */
