:root {
    --primary-color: #1565c0; /* Güven veren ana mavi */
    --primary-dark: #0d47a1; /* Koyu mavi */
    --primary-light: #42a5f5; /* Açık mavi */
    --secondary-color: #1976d2; /* İkincil mavi */
    --accent-color: #64b5f6; /* Vurgu için açık mavi */
    --success-color: #2196f3;
    --light-gray: #f8f9fa;
    --dark-gray: #6c757d;
    --white: #ffffff;
    --dark: #212529;
    --text-dark: #043348;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --border-color: #e9ecef;
}

.bg-dark {
    background-color: #043348!important;
}

.step-icon.text-primary {
    color: white !important;
}

.service-icon {
    color: white !important;
}

section .container {
    margin-top: 100px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#webSubTab { margin-bottom:0px!important;}

html, body {
    font-family: 'Inter', sans-serif !important;
    line-height: 1.6;
    color: var(--text-dark);
    /*padding-top: 90px;*/ /* Fixed navbar height */
    background-color: #e9ecef;
}

.left5{ margin-left:5px;}

/* Navigation Styles - Completely Rewritten */
.navbar {
    padding: 0.75rem 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 1050;
    background: rgba(255, 255, 255, 0.98) !important;
}

/* Mobile Navigation - Completely Redesigned */
@media (max-width: 991px) {
  .navbar {
    padding: 0.5rem 0;
    background: white !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2010;
  }
  
  .navbar-brand {
    font-size: 1.3rem;
    padding: 0.5rem 0;
  }
  
  .navbar-brand img {
    max-height: 55px !important;
  }
  
  .navbar-toggler {
    border: none;
    padding: 0.5rem;
    border-radius: 8px;
    background: transparent;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2020;
  }
  
  .navbar-toggler:focus {
    box-shadow: none;
    outline: none;
  }
  
  .navbar-toggler:hover {
    background: rgba(21, 101, 192, 0.1);
  }
  
  .navbar-toggler.active {
    background: rgba(21, 101, 192, 0.15) !important;
    border: 1px solid rgba(21, 101, 192, 0.3);
  }
  
  .navbar-toggler-icon {
    width: 20px;
    height: 16px;
    position: relative;
    background: none !important;
    background-image: none !important;
    border: none;
    transform: rotate(0deg);
    transition: all 0.3s ease;
  }
  
  /* Remove Bootstrap's default lines and create custom hamburger */
  .navbar-toggler-icon,
  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  }
  
  .navbar-toggler-icon {
    position: relative;
    background: var(--primary-color) !important;
  }
  
  .navbar-toggler-icon::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 0;
  }
  
  .navbar-toggler-icon::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 0;
  }
  
  /* Active state - Transform to X with better animation */
  .navbar-toggler.active .navbar-toggler-icon {
    background: transparent !important;
  }
  
  .navbar-toggler.active .navbar-toggler-icon::before {
    top: 0;
    transform: rotate(45deg);
  }
  
  .navbar-toggler.active .navbar-toggler-icon::after {
    top: 0;
    transform: rotate(-45deg);
  }
  
  .navbar-collapse {
    position: fixed;
    top: 0;
    left: -100%;
    right: 0;
    bottom: 0;
    width: 85vw;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    z-index: 2015;
    overflow-y: auto;
    padding-top: 100px;
    padding-left: 0;
    padding-right: 0;
    box-shadow: 2px 0 20px rgba(0,0,0,0.15);
    transition: left 0.3s cubic-bezier(0.4,0,0.2,1);
  }
  
  .navbar-collapse.show {
    left: 0;
  }
  
  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 2005;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    pointer-events: none;
  }
  
  .navbar-collapse.show ~ .mobile-menu-overlay,
  body.menu-open .mobile-menu-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  
  .navbar-nav {
    flex-direction: column;
    width: 100%;
    gap: 0;
    padding: 0;
  }
  
  .navbar-nav .nav-item {
    width: 100%;
    border-bottom: 1px solid #f1f3f4;
  }
  
  .navbar-nav .nav-item:last-child {
    border-bottom: none;
  }
  
  .navbar-nav .nav-link {
    width: 100%;
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
    justify-content: flex-start;
    color: #444 !important;
    font-weight: 500;
    border-radius: 0;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .navbar-nav .nav-link:hover {
    background: rgba(21, 101, 192, 0.06);
    color: var(--primary-color) !important;
    transform: none;
  }
  
  .navbar-nav .nav-link i {
    width: 16px;
    margin-right: 10px;
    text-align: center;
    color: #999;
    font-size: 0.85rem;
  }
  
  .navbar-nav .nav-link:hover i {
    color: var(--primary-color);
  }
  
  .dropdown-toggle::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    border: none;
    vertical-align: middle;
    margin-left: auto;
    transition: transform 0.2s ease;
    font-size: 0.75rem;
    color: #bbb;
    opacity: 0.8;
  }
  
  .dropdown-toggle.show::after {
    transform: rotate(180deg);
    color: var(--primary-color);
    opacity: 1;
  }
  
  .dropdown-menu, .mega-menu {
    position: static !important;
    box-shadow: none !important;
    background: #f8f9fa;
    width: 100%;
    border-radius: 0;
    margin: 0;
    padding: 0.25rem 0;
    border: none;
    display: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition: all 0.25s ease;
    max-height: 60vh;
    overflow-y: auto;
  }
  
  .dropdown-menu.show, .mega-menu.show {
    display: block !important;
    animation: slideDown 0.3s ease;
  }
  
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-5px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .mega-menu .container, .mega-menu .row, .mega-menu .col-md-3 {
    padding: 0;
    margin: 0;
    width: 100%;
  }
  
  /* Mobilde mega-menu sadeleştir */
  .mega-menu .row {
    flex-direction: column;
  }
  
  .mega-menu .col-md-3 {
    margin-bottom: 0.5rem;
  }
  
  .mega-menu .col-md-3:last-child {
    margin-bottom: 0;
  }
  
  .mega-menu .dropdown-header {
    padding: 0.4rem 1.5rem 0.2rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(21, 101, 192, 0.05);
    border-bottom: 1px solid rgba(21, 101, 192, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 0.3rem;
  }
  
  .dropdown-item {
    padding: 0.3rem 1.5rem 0.3rem 1.8rem;
    border-radius: 0;
    transition: background-color 0.2s ease;
    font-size: 0.8rem;
    color: #555;
    border-bottom: none;
    background: transparent;
    line-height: 1.4;
  }
  
  .dropdown-item:last-child {
    border-bottom: none;
  }
  
  .dropdown-item:hover {
    background: rgba(21, 101, 192, 0.08);
    color: var(--primary-color);
    transform: none;
  }
  
  .dropdown-item i {
    width: 12px;
    margin-right: 6px;
    color: #999;
    text-align: center;
    font-size: 0.7rem;
  }
  
  .dropdown-item:hover i {
    color: var(--primary-color);
  }
  
  .mobile-auth-buttons {
    flex-direction: column !important;
    width: 100%;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding: 1rem 1.5rem 1.5rem 1.5rem;
    /*border-top: 1px solid #e0e0e0;*/
  }
  
  .mobile-login-btn, .mobile-register-btn {
    width: 100%;
    font-size: 1rem;
    padding: 0.75rem 0;
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
    transition: all 0.2s ease;
  }
  
  .mobile-login-btn:hover, .mobile-register-btn:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(21, 101, 192, 0.15);
  }
}

/* Body scroll lock when menu is open */
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* Menu açık iken navbar'ı vurgula */
body.menu-open .navbar {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(10px);
}
 
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  transition: transform 0.3s ease;
  color: var(--primary-color) !important;
  text-decoration: none;
}

.navbar-brand img {
  max-height: 70px;
}

.navbar-brand:hover {
  transform: scale(1.02);
  color: var(--primary-dark) !important;
}

.navbar-nav {
  align-items: center;
  gap: 0.5rem;
}

.nav-link {
  font-weight: 500;
  padding: 0.75rem 1rem !important;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  color: var(--text-dark) !important;
  font-size: 0.95rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--primary-color) !important;
  background: rgba(32, 178, 170, 0.08);
  transform: translateY(-1px);
}

.nav-link.active {
  color: var(--primary-color) !important;
  background: rgba(32, 178, 170, 0.12);
  font-weight: 600;
}

.nav-link i {
  font-size: 0.85rem;
  margin-right: 0.4rem;
  width: 16px;
  text-align: center;
}

/* Dropdown Styles - Enhanced */
.dropdown {
  position: relative;
}

.dropdown-menu {
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  margin-top: 0.5rem;
  padding: 0.75rem 0;
  min-width: 220px;
  background: white;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  position: absolute;
  top: 100%;
  left: 0;
}

.dropdown:hover .dropdown-menu,
.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Desktop dropdown improvements */
@media (min-width: 992px) {
  .dropdown-menu {
    margin-top: 0.5rem;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 0.5rem 0;
    min-width: 200px;
  }
  
  .mega-menu {
    margin-top: 0.5rem;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 1rem 0;
  }
}

.dropdown-item {
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  color: var(--text-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.dropdown-item:hover {
  background-color: var(--bg-light);
  color: var(--primary-color);
  transform: translateX(5px);
}

.dropdown-item i {
  width: 20px;
  margin-right: 8px;
  color: var(--text-light);
}

/* Mega Menu Styles - Redesigned */
.mega-menu {
  width: 100vw;
  max-width: 900px;
  padding: 2rem;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-top: 10px;
  background: white;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  top: 100%;
}

/* Desktop mega menu positioning fix */
@media (min-width: 992px) {
  .mega-menu {
    width: 100vw;
    max-width: 900px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 800px;
    overflow: hidden;
  }
  
  .mega-menu .container {
    max-width: 100%;
    padding: 0;
    width: 100%;
    overflow: hidden;
  }
  
  .mega-menu .row {
    margin: 0;
    gap: 1rem;
    width: 100%;
    flex-wrap: wrap;
  }
  
  .mega-menu .col-md-3 {
    padding: 0 1rem;
    margin-bottom: 1.5rem;
    flex: 1;
    min-width: 0;
    max-width: 25%;
  }
}

/* Large screen mega menu adjustments */
@media (min-width: 1200px) {
  .mega-menu {
    max-width: 1000px;
    min-width: 900px;
  }
}

/* Desktop dropdown positioning fix */
@media (min-width: 992px) {
  .dropdown-menu {
    margin-top: 0.5rem !important;
  }
  
  .mega-menu {
    margin-top: 0.5rem !important;
  }
  
  .dropdown {
    position: relative;
  }
}

.dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-menu .container {
  max-width: 100%;
  padding: 0;
  width: 100%;
}

.mega-menu .row {
  margin: 0;
  gap: 1rem;
  width: 100%;
}

.mega-menu .col-md-3 {
  padding: 0 1rem;
  margin-bottom: 1.5rem;
  flex: 1;
  min-width: 0;
}

.dropdown-header {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.dropdown-header i {
  margin-right: 0.5rem;
  color: var(--primary-color);
  flex-shrink: 0;
}

/* Status Badge */
.navbar .badge {
  font-size: 0.7rem;
  padding: 0.35rem 0.7rem;
  border-radius: 15px;
  animation: pulse-badge 3s infinite;
  white-space: nowrap;
}

/* Navbar Buttons */
.navbar .btn {
  margin: 0 0.25rem;
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.navbar .btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 500;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.navbar .btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  color: white;
}

.navbar .btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 500;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.navbar .btn-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(32, 178, 170, 0.3);
}

@media (max-width: 991px) {
  .hero-slider{ 
    margin-top: 75px!important;
  }
}



/* Hero Slider Styles */
.hero-slider {
  margin-top: 0; /* 76px yerine 0 yap */
  position: relative;
  overflow: hidden;
}

.hero-background-pattern {
  /* Gradient and patterns suitable for blue theme */
  background: radial-gradient(circle at 20% 80%, rgba(21, 101, 192, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(66, 165, 245, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(25, 118, 210, 0.18) 0%, transparent 50%);
  z-index: 1;
}

.hero-slide {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-attachment: fixed;
  z-index: 2;
}

.hero-slide-main {
  background: linear-gradient(
    135deg,
    rgba(21, 101, 192, 0.97) 0%,
    rgba(13, 71, 161, 0.97) 50%,
    rgba(66, 165, 245, 0.97) 100%
  );
}

.hero-slide-ping {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.97) 0%,
    rgba(5, 150, 105, 0.97) 50%,
    rgba(4, 120, 87, 0.97) 100%
  );
}

.hero-slide-ssl {
  background: linear-gradient(
    135deg,
    rgba(66, 165, 245, 0.97) 0%,
    rgba(21, 101, 192, 0.97) 50%,
    rgba(13, 71, 161, 0.97) 100%
  );
}

.hero-slide-domain {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #b45309 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-slide-api {
  background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 50%, #4c1d95 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-slide-ai {
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.97) 0%,
    rgba(220, 38, 38, 0.97) 50%,
    rgba(185, 28, 28, 0.97) 100%
  );
}

.hero-slide-port {
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.97) 0%,
    rgba(79, 70, 229, 0.97) 50%,
    rgba(67, 56, 202, 0.97) 100%
  );
}

/* Add gradient animation */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.text-gradient {
  background: linear-gradient(45deg, #fff, #f8f9fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 32px;
  opacity: 0.95;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
}

.feature-item i {
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.btn-hero-primary {
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 14px 28px;
  font-weight: 600;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(21, 101, 192, 0.15);
  transition: all 0.3s ease;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(21, 101, 192, 0.22);
  color: #fff;
  background: var(--primary-dark);
}

.btn-hero-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 12px 26px;
  font-weight: 600;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background: var(--primary-light);
  border-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
}

.hero-trust {
  font-size: 14px;
  opacity: 0.9;
}

.hero-trust i {
  color: #28a745;
}

.hero-image-container {
  position: relative;
  padding: 40px;
}

.hero-image-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 20px;
  backdrop-filter: blur(20px);
}

.hero-dashboard-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: #333;
  animation: float 3s ease-in-out infinite;
}

.uptime-card {
  top: 20%;
  right: -10%;
  animation-delay: 0s;
}

.ssl-card {
  top: 60%;
  left: -5%;
  animation-delay: 1s;
}

.speed-card {
  bottom: 20%;
  right: 10%;
  animation-delay: 2s;
}

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #28a745;
  animation: pulse 2s infinite;
}

.status-indicator.online {
  background: #28a745;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}

.stat-item {
  text-align: center;
  padding: 1rem;
}

.stat-item h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-item span {
  font-size: 14px;
  opacity: 0.9;
}

.hero-checklist {
  margin-bottom: 32px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 16px;
}

.check-item i {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.btn-hero-primary {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%);
  color: white;
  border: none;
  padding: 16px 32px;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-transform: none;
  letter-spacing: 0.5px;
  min-width: 200px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
}

.btn-hero-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

.btn-hero-primary:hover::before {
  left: 100%;
}

.btn-hero-primary:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.45);
  color: white;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
  text-decoration: none;
}

.btn-hero-primary:active {
  transform: translateY(-2px) scale(1.01);
  transition: all 0.15s ease;
}

.btn-hero-primary i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  z-index: 2;
  position: relative;
}

.btn-hero-primary:hover i {
  transform: scale(1.15) rotate(-8deg);
}

.btn-hero-primary span {
  z-index: 2;
  position: relative;
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 16px 32px;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 14px;
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-width: 200px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.btn-hero-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.08) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.btn-hero-secondary:hover::before {
  opacity: 1;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-4px) scale(1.03);
  color: white;
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
  text-decoration: none;
}

.btn-hero-secondary:active {
  transform: translateY(-2px) scale(1.01);
  transition: all 0.15s ease;
}

.btn-hero-secondary i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  z-index: 2;
  position: relative;
}

.btn-hero-secondary:hover i {
  transform: scale(1.15) rotate(8deg);
}

.btn-hero-secondary span {
  z-index: 2;
  position: relative;
}

.hero-trust {
  font-size: 14px;
  opacity: 0.9;
}

.hero-trust i {
  color: #28a745;
}

.hero-image-container {
  position: relative;
  padding: 40px;
}

.hero-image-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 20px;
  backdrop-filter: blur(20px);
}

.hero-dashboard-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: #333;
  animation: float 3s ease-in-out infinite;
}

.uptime-card {
  top: 20%;
  right: -10%;
  animation-delay: 0s;
}

.ssl-card {
  top: 60%;
  left: -5%;
  animation-delay: 1s;
}

.speed-card {
  bottom: 20%;
  right: 10%;
  animation-delay: 2s;
}

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #28a745;
  animation: pulse 2s infinite;
}

.status-indicator.online {
  background: #28a745;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}

.stat-item {
  text-align: center;
  padding: 1rem;
}

.stat-item h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-item span {
  font-size: 14px;
  opacity: 0.9;
}

.hero-checklist {
  margin-bottom: 32px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 16px;
}

.check-item i {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* Custom Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
  width: 40px;
  height: 40px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
  backdrop-filter: blur(15px);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.carousel-control-prev {
  left: 40px;
}

.carousel-control-next {
  right: 40px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.25) 100%);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.carousel-control-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.carousel-control-prev:hover .carousel-control-icon,
.carousel-control-next:hover .carousel-control-icon {
  transform: scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: none;
}

/* Custom Carousel Indicators */
.carousel-indicators {
  bottom: 40px;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  z-index: 10;
  padding: 0 20px;
}

.carousel-indicators [data-bs-target] {
  width: 50px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.3);
  margin: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
  backdrop-filter: blur(10px);
}

.carousel-indicators [data-bs-target]:hover {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.15);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.carousel-indicators .active {
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
  border-color: rgba(255, 255, 255, 0.8);
  width: 60px;
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.5);
  transform: scale(1.2);
}

/* Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-features {
    flex-direction: column;
    gap: 16px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    text-align: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .floating-card {
    display: none;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 50px;
    height: 50px;
  }

  .carousel-control-prev {
    left: 20px;
  }

  .carousel-control-next {
    right: 20px;
  }

  .carousel-control-icon {
    font-size: 14px;
  }

  .carousel-indicators {
    bottom: 15px;
    gap: 5px;
    padding: 0 10px;
  }

  .carousel-indicators [data-bs-target] {
    width: 25px;
    height: 4px;
  }

  .carousel-indicators .active {
    width: 35px;
  }

  .hero-content {
    padding: 0 10px;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    gap: 10px;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* Feature Cards */
.feature-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--white);
  font-size: 1.5rem;
}

.feature-icon i {
  font-size: 1.5rem;
  color: white;
}

.feature-card h4 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

/* Stats Section */
.stat-item h3 {
  margin-bottom: 0.5rem;
}

/* Pricing Cards */
.pricing-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  border: 2px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.pricing-card.popular {
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.pricing-card.popular::before {
  content: "En Popüler";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-header h4 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.price {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.currency {
  font-size: 1.2rem;
  font-weight: 500;
}

.amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
}

.period {
  font-size: 1rem;
  color: var(--text-light);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

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

/* Buttons */
.btn {
  border-radius: 25px;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 500;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(32, 178, 170, 0.3);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  background-color: transparent;
  font-weight: 500;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* Forms */
.form-control {
  border-radius: 8px;
  border: 2px solid #e9ecef;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Footer */
footer {
  background: var(--dark) !important;
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  transition: background 0.3s ease;
}

.social-links a:hover {
  background: var(--primary-color);
}

/* Animation classes */
.animate__animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animate__fadeInUp {
  animation-name: fadeInUp;
}

.animate__fadeInRight {
  animation-name: fadeInRight;
}

.animate__delay-1s {
  animation-delay: 0.5s;
}

.animate__delay-2s {
  animation-delay: 1s;
}

.animate__delay-3s {
  animation-delay: 1.5s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(40px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    text-align: center;
  }

  .hero-content {
    margin-bottom: 3rem;
  }

  .display-4 {
    font-size: 2.5rem;
  }

  .display-3 {
    font-size: 2.5rem;
  }

  .pricing-card.popular {
    transform: none;
    margin-bottom: 2rem;
  }

  .feature-card {
    margin-bottom: 2rem;
  }

  .hero-slide {
    min-height: 80vh;
    text-align: center;
  }

  .hero-content {
    margin-bottom: 2rem;
  }
}

@media (max-width: 576px) {
  .display-4 {
    font-size: 2rem;
  }

  .display-3 {
    font-size: 2rem;
  }

  .btn-lg {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  .hero-section {
    padding: 1rem 0;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
  }

  .carousel-control-prev {
    left: 10px;
  }

  .carousel-control-next {
    right: 10px;
  }

  .carousel-control-icon {
    font-size: 10px;
  }

  .carousel-indicators {
    bottom: 10px;
    gap: 4px;
    padding: 0 8px;
  }

  .carousel-indicators [data-bs-target] {
    width: 20px;
    height: 3px;
  }

  .carousel-indicators .active {
    width: 30px;
  }

  .hero-content {
    padding: 0 5px;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    padding: 12px 24px;
    font-size: 1rem;
    min-width: 100%;
    margin-bottom: 10px;
  }

  .btn-hero-primary:hover,
  .btn-hero-secondary:hover {
    transform: translateY(-2px) scale(1.01);
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Auth Page Basic Styles */
.auth-page {
  min-height: 100vh;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.auth-card {
  background: white;
  border-radius: 0;
  box-shadow: none;
  max-width: 100%;
  width: 100%;
  border: none;
  overflow: hidden;
}

.auth-tabs {
  display: flex;
  background: #f8f9fa;
  border-radius: 25px;
  margin: 2rem;
  padding: 4px;
  position: relative;
  gap: 2px;
}

.auth-tab {
  flex: 1;
  padding: 10px 16px;
  text-align: center;
  background: transparent;
  border: none;
  border-radius: 21px;
  font-weight: 500;
  color: #6c757d;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  z-index: 1;
  font-size: 0.9rem;
  white-space: nowrap;
}

.auth-tab.active {
  background: white;
  color: var(--primary-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.auth-tab-content {
  display: none;
  padding: 0 1rem 1rem 1rem;
}

.auth-tab-content.active {
  display: block;
}

.auth-header {
  background: white;
  color: var(--text-dark);
  padding: 2.5rem 2rem 1rem 2rem;
  text-align: center;
  /*border-bottom: 1px solid #f1f3f4;*/
}

.auth-header h1 {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--primary-color);
}

.auth-header p {
  margin: 0.5rem 0 0 0;
  color: var(--text-light);
  font-size: 0.95rem;
}

.auth-form .form-control {
  border-radius: 8px;
  border: 1px solid #e1e5e9;
  padding: 0.75rem 1rem;
  transition: all 0.2s ease;
  background: #fafbfc;
}

.auth-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(32, 178, 170, 0.1);
  background: white;
}

.auth-form .btn {
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.auth-form .btn-primary {
  background: var(--primary-color);
  border: none;
}

.auth-form .btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(32, 178, 170, 0.2);
}

.social-login {
  margin-top: 1.5rem;
}

.social-login .btn {
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-weight: 500;
  transition: all 0.2s ease;
  border: 1px solid #e1e5e9;
  background: white;
}

.social-login .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.auth-divider {
  text-align: center;
  margin: 1.5rem 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #e1e5e9;
  z-index: 1;
}

.auth-divider span {
  background: white;
  padding: 0 1.5rem;
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  z-index: 2;
  display: inline-block;
  min-width: 60px;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  :root {
    --white: #1a1a1a;
    --light-gray: #2d2d2d;
    --dark: #ffffff;
  }
}

/* Utility Classes */
.text-primary {
  color: var(--primary-color) !important;
}

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

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

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
  animation: pulse 1.5s ease-in-out infinite;
}

.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

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

/* Site favicon styles */
.site-favicon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(32, 178, 170, 0.1);
  border-radius: 6px;
  flex-shrink: 0;
}

/* Enhanced button styles */
.btn-group .btn {
  border-radius: 4px !important;
  margin-right: 2px;
}

.btn-group .btn:last-child {
  margin-right: 0;
}

/* Testimonial cards */
.avatar {
  flex-shrink: 0;
}

/* Enhanced stats cards */
.text-xs {
  font-size: 0.75rem;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.text-gray-800 {
  color: #5a5c69 !important;
}

.text-gray-300 {
  color: #dddfeb !important;
}

/* Success/Warning/Danger text colors */
.text-success {
  color: var(--primary-color) !important;
}

.text-warning {
  color: #f6c23e !important;
}

.text-danger {
  color: #e74a3b !important;
}

.text-info {
  color: var(--secondary-color) !important;
}

/* Enhanced pricing cards */
.pricing-card .pricing-features li {
  padding: 0.75rem 0;
  font-size: 0.95rem;
}

/* Smooth transitions */
.card,
.btn,
.badge {
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-2px);
}

/* Mobile responsiveness improvements */
@media (max-width: 768px) {
  .btn-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .btn-group .btn {
    margin-right: 0;
    margin-bottom: 2px;
  }

  .table-responsive {
    font-size: 0.875rem;
  }
}

/* Loading animation */
@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* Integration items */
.integration-item {
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.integration-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.integration-item i {
  color: var(--primary-color);
}

/* Mobile app buttons */
.btn-dark {
  background-color: #000;
  border-color: #000;
}

.btn-dark:hover {
  background-color: #333;
  border-color: #333;
  transform: translateY(-2px);
}

.btn-success {
  background-color: #34a853;
  border-color: #34a853;
}

.btn-success:hover {
  background-color: #2d8f47;
  border-color: #2d8f47;
  transform: translateY(-2px);
}

/* Enhanced mobile responsiveness */
@media (max-width: 768px) {
  .integration-item {
    margin-bottom: 1rem;
  }

  .d-flex.gap-3 {
    flex-direction: column;
    gap: 1rem !important;
  }

  .d-flex.gap-3 .btn {
    width: 100%;
  }
}

/* Status Badge */
.badge {
  font-size: 0.75rem;
  padding: 0.5rem 0.75rem;
  border-radius: 20px;
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
  }
}



/* Dropdown Animation */
.dropdown-menu {
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  display: block;
  visibility: hidden;
}

.dropdown:hover .dropdown-menu,
.dropdown-menu.show {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

/* Navigation Icons */
.nav-link i {
  font-size: 0.9rem;
  opacity: 0.8;
}

.dropdown-item i {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* Hover Effects */
.navbar-brand:hover i {
  animation: bounce 0.6s ease;
}

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

/* Active State */
.nav-item.active .nav-link {
  background: linear-gradient(135deg, rgba(32, 178, 170, 0.1), rgba(32, 178, 170, 0.05));
  color: var(--primary-color) !important;
}

/* Notification Dot */
.nav-link.has-notification::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 8px;
  width: 8px;
  height: 8px;
  background: #ff4757;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Dashboard Sidebar Styles */
/* Dashboard Layout Styles */
.dashboard-body {
  font-family: 'Inter', sans-serif;
  background: #f8f9fa;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Mobile Sidebar Overlay */
.mobile-sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.sidebar-open .mobile-sidebar-overlay {
  opacity: 1;
  visibility: visible;
}

/* Modern Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 260px;
  height: 100vh;
  background: #ffffff;
  border-right: 1px solid #e9ecef;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  z-index: 1050;
  transform: translateX(0);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

/* Sidebar Header */
.sidebar-header {
  padding: 1.25rem;
  border-bottom: 1px solid #f1f3f4;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.sidebar-logo {
  max-height: 50px;
}

.sidebar-close {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: #6c757d;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

.sidebar-close:hover {
  background: rgba(108, 117, 125, 0.1);
  color: var(--primary-color);
}

/* Sidebar Content */
.sidebar-content {
  flex: 1;
  padding: 1rem 0;
  overflow-y: auto;
}

.sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0 1rem;
}

.sidebar-link {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  color: #6c757d;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  position: relative;
  font-weight: 500;
  font-size: 0.875rem;
  margin: 0.125rem 0.75rem;
}

.sidebar-link:hover {
  background: rgba(21, 101, 192, 0.08);
  color: var(--primary-color);
  text-decoration: none;
}

.sidebar-link.active {
  background: var(--primary-color);
  color: white;
}

.sidebar-link-icon {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  font-size: 0.8rem;
  color: #6c757d;
}

.sidebar-link:hover .sidebar-link-icon {
  color: var(--primary-color);
}

.sidebar-link.active .sidebar-link-icon {
  color: #fff;
}

.sidebar-link-text {
  flex: 1;
}

.sidebar-link-badge {
  margin-left: auto;
}

.sidebar-link-badge .badge {
  font-size: 0.7rem;
  padding: 0.25rem 0.5rem;
}

.sidebar-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0.75rem 1rem;
}

/* Sidebar Footer */
.sidebar-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.user-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  backdrop-filter: blur(10px);
}

.user-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.875rem;
}

.user-details {
  flex: 1;
}

.user-name {
  font-weight: 600;
  color: #2d3436;
  font-size: 0.875rem;
}

.user-status {
  font-size: 0.75rem;
  color: #22c55e;
  font-weight: 500;
}

/* Main Content Area */
.main-content {
  margin-left: 260px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  transition: margin-left 0.3s ease;
}

/* Top Bar */
.topbar {
  background: #ffffff;
  border-bottom: 1px solid #e9ecef;
  padding: 0.875rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1030;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sidebar-toggle {
  background: none;
  border: none;
  padding: 0.5rem;
  border-radius: 0.5rem;
  color: #6c757d;
  font-size: 1.125rem;
  transition: all 0.2s ease;
}

.sidebar-toggle:hover {
  background: rgba(108, 117, 125, 0.1);
  color: var(--primary-color);
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6c757d;
  font-size: 0.8rem;
  font-weight: 500;
}

.page-breadcrumb i {
  font-size: 0.7rem;
}

.topbar-right {
  display: flex;
  align-items: center;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.topbar-item {
  position: relative;
}

.topbar-btn {
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  transition: all 0.2s ease;
  position: relative;
}

.topbar-btn:hover {
  background: rgba(108, 117, 125, 0.1);
  color: var(--primary-color);
}

.notification-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 18px;
  height: 18px;
  background: #ef4444;
  color: white;
  border-radius: 50%;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.topbar-user {
  background: none;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  color: #495057;
  font-weight: 500;
}

.topbar-user:hover {
  background: #f8f9fa;
  border-color: #e9ecef;
}

.user-avatar-small {
  width: 32px;
  height: 32px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.75rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.user-name {
  font-weight: 500;
  font-size: 0.8rem;
}

/* Page Content */
.page-content {
  flex: 1;
  padding: 1.5rem;
  background: transparent;
}

/* Welcome Header */
.welcome-header {
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid #e9ecef;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.welcome-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.welcome-subtitle {
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 0;
}

.welcome-actions .btn {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.welcome-actions .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

@media (max-width: 768px) {
  .welcome-header .d-flex {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .welcome-title {
    font-size: 1.25rem;
  }
  
  .welcome-subtitle {
    font-size: 0.85rem;
  }
}

/* Page Header */
.page-header {
    background: #ffffff;
    border-radius: 0.75rem;
    padding: 2rem;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.page-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
}

.page-subtitle {
  color: #6c757d;
  font-size: 0.8rem;
}

.page-actions .btn {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.page-actions .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

/* New Modern Monitor Cards */
.monitor-card-new {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.monitor-card-new:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

/* Monitor Header */
.monitor-header {
  padding: 1rem;
  border-bottom: 1px solid #f3f4f6;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.monitor-status-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}

.status-online {
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
  animation: pulse-green 2s infinite;
}

.status-offline {
  background: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

@keyframes pulse-green {
  0%, 100% { 
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
  }
  50% { 
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.1);
  }
}

.monitor-info {
  flex: 1;
  min-width: 0;
}

.monitor-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 0.25rem 0;
  line-height: 1.3;
}

.monitor-meta {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.monitor-type {
  background: var(--primary-color);
  color: white;
  padding: 0.125rem 0.5rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 500;
}

.monitor-interval {
  color: #6b7280;
  font-size: 0.75rem;
  font-weight: 500;
}

/* Custom Toggle Switch */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 22px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #cbd5e1;
  transition: 0.3s;
  border-radius: 22px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-switch input:checked + .toggle-slider {
  background-color: var(--primary-color);
}

.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(20px);
}

/* Monitor Body */
.monitor-body {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.monitor-url-section {
  background: #f8fafc;
  border-radius: 8px;
  padding: 0.75rem;
  border: 1px solid #e5e7eb;
}

.url-preview {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.url-preview i {
  color: #6b7280;
  font-size: 0.875rem;
}

.monitor-url-link {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  word-break: break-all;
  line-height: 1.4;
}

.monitor-url-link:hover {
  text-decoration: underline;
}

/* Monitor Stats */
.monitor-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.stat-item {
  text-align: center;
  padding: 0.75rem 0.5rem;
  /*background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);*/
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.stat-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.7rem;
  color: #6b7280;
  margin-top: 0.125rem;
  font-weight: 500;
}

/* Monitor Actions */
.monitor-actions {
  display: flex;
  border-top: 1px solid #f3f4f6;
  background: #fafbfc;
}

.action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 0.5rem;
  border: none;
  background: transparent;
  color: #6b7280;
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  border-right: 1px solid #f3f4f6;
}

.action-btn:last-child {
  border-right: none;
}

.action-btn i {
  font-size: 0.8rem;
}

.action-btn.primary:hover {
  background: var(--primary-color);
  color: white;
}

.action-btn.secondary:hover {
  background: #6b7280;
  color: white;
}

.action-btn.danger:hover {
  background: #ef4444;
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .action-btn span {
    display: none;
  }
  
  .action-btn {
    padding: 0.75rem;
  }
  
  .monitor-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }
  
  .stat-item {
    padding: 0.5rem;
  }
  
  .monitor-header {
    padding: 0.875rem;
  }
  
  .monitor-body {
    padding: 0.875rem;
  }
  
  .monitor-name {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .monitor-stats {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  
  .stat-item:last-child {
    grid-column: 1 / -1;
  }
}

/* Legacy support */
.badge-sm {
  font-size: 0.65rem;
  padding: 0.2rem 0.5rem;
}

.card-footer {
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
  padding: 0.75rem;
}

.monitor-card .card-footer {
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
  padding: 0.5rem;
}

.btn-outline-primary {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transition: all 0.2s ease;
}

.btn-outline-primary:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  transform: translateY(-1px);
}

.btn-outline-secondary {
  border-color: #6c757d;
  color: #6c757d;
  transition: all 0.2s ease;
}

.btn-outline-secondary:hover {
  background: #6c757d;
  border-color: #6c757d;
  color: white;
  transform: translateY(-1px);
}

.btn-outline-danger {
  border-color: #dc3545;
  color: #dc3545;
  transition: all 0.2s ease;
}

.btn-outline-danger:hover {
  background: #dc3545;
  border-color: #dc3545;
  color: white;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .page-header {
    padding: 1.5rem;
  }
  
  .page-header .d-flex {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .page-title {
    font-size: 1.25rem;
  }
  
  .page-subtitle {
    font-size: 0.85rem;
  }
}

/* Dropdown Styles */
.notification-dropdown {
  min-width: 320px;
  border: none;
  border-radius: 0.75rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 0;
  margin-top: 0.5rem;
}

.user-dropdown {
  min-width: 220px;
  border: none;
  border-radius: 0.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  border: 1px solid #e9ecef;
}

.notification-dropdown .dropdown-header {
  padding: 1rem 1.25rem 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.notification-dropdown .dropdown-header h6 {
  margin: 0;
  font-weight: 600;
  color: var(--text-dark);
}

.notification-item {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 0.75rem;
  transition: background 0.2s ease;
}

.notification-item:hover {
  background: rgba(0, 0, 0, 0.02);
}

.notification-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.notification-content h6 {
  margin: 0 0 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
}

.notification-content p {
  margin: 0 0 0.25rem;
  font-size: 0.8rem;
  color: #6c757d;
}

.notification-content small {
  color: #9ca3af;
}

.dropdown-footer {
  padding: 0.75rem 1.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-footer a {
  color: var(--primary-color);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
}

.user-dropdown .dropdown-header {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #e9ecef;
  background: #f8f9fa;
  margin: 0;
}

.user-info-dropdown {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.user-avatar-dropdown {
  width: 32px;
  height: 32px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.75rem;
}

.user-info-dropdown h6 {
  margin: 0;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.8rem;
}

.user-dropdown .dropdown-item {
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #495057;
  transition: all 0.2s ease;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.user-dropdown .dropdown-item:hover {
  background: #f8f9fa;
  color: var(--primary-color);
}

.user-dropdown .dropdown-item.text-danger:hover {
  background: #f8d7da;
  color: #dc3545;
}

.user-dropdown .dropdown-item i {
  width: 18px;
  text-align: center;
  font-size: 0.8rem;
}

.user-dropdown .dropdown-divider {
  margin: 0.5rem 0;
  border-top: 1px solid #e9ecef;
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
  .sidebar {
    transform: translateX(-100%);
  }
  
  .sidebar-open .sidebar {
    transform: translateX(0);
  }
  
  .main-content {
    margin-left: 0;
  }
  
  .page-breadcrumb {
    display: none !important;
  }
  
  .user-name {
    display: none !important;
  }
  
  .notification-dropdown {
    min-width: 280px;
  }
  
  .user-dropdown {
    min-width: 200px;
  }
}

/* Dashboard Cards */
.border-left-primary {
  border-left: 0.25rem solid var(--primary-color) !important;
}

.border-left-success {
  border-left: 0.25rem solid #28a745 !important;
}

.border-left-warning {
  border-left: 0.25rem solid #ffc107 !important;
}

.border-left-danger {
  border-left: 0.25rem solid #dc3545 !important;
}

.border-left-info {
  border-left: 0.25rem solid #17a2b8 !important;
}

/* Dashboard Cards Enhanced */
.dashboard-card {
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 0.75rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
  padding: 1.75rem;
}

.dashboard-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card-body {
  padding: 1.75rem;
}

/* Chart Area */
.chart-area {
  position: relative;
  height: 250px;
}

.card-title {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

.stats-card {
  text-align: center;
  padding: 1.5rem 1rem;
}

.stats-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-color);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  color: white;
  font-size: 1.125rem;
}

.stats-value {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.stats-label {
  color: #6c757d;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25px;
}

/* Fixed Timeline Styles */
.timeline {
  position: relative;
  padding-left: 1.5rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
  bottom: 0;
  width: 2px;
  background: #e9ecef;
}

.timeline-item {
  position: relative;
  margin-bottom: 1.25rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item:last-child::after {
  content: '';
  position: absolute;
  left: -1.25rem;
  bottom: -0.5rem;
  width: 2px;
  height: 0.5rem;
  background: white;
}

.timeline-marker {
  position: absolute;
  left: -1.25rem;
  top: 0.25rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.timeline-content {
  background: #f8f9fa;
  border-radius: 0.5rem;
  padding: 0.875rem;
  border: 1px solid #e9ecef;
  transition: all 0.2s ease;
}

.timeline-content:hover {
  background: #f1f3f4;
  border-color: #dee2e6;
  transform: translateX(2px);
}

.timeline-title {
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.3;
}

.timeline-text {
  color: #6c757d;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.timeline-item small {
  color: #adb5bd;
  font-size: 0.75rem;
  font-weight: 500;
}

.timeline-text {
  color: #6c757d;
  margin-bottom: 0.25rem;
  font-size: 0.85rem;
}

/* Table Improvements */
.table {
  margin-bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 0.75rem;
  overflow: hidden;
}

.table th {
  border-top: none;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1rem 0.75rem;
}

.table td {
  vertical-align: middle;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1rem 0.75rem;
}

.table-responsive {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Button Groups */
.btn-group .btn {
  border-radius: 4px !important;
  margin-right: 2px;
  font-size: 0.8rem;
  padding: 0.375rem 0.5rem;
}

.btn-group .btn:last-child {
  margin-right: 0;
}

/* Site favicon */
.site-favicon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(32, 178, 170, 0.1);
  border-radius: 6px;
  flex-shrink: 0;
}

/* Status badges */
.badge {
  font-size: 0.75rem;
  padding: 0.35rem 0.65rem;
  border-radius: 12px;
  font-weight: 500;
}

/* Form improvements */
.form-control,
.form-select {
  border-radius: 6px;
  border: 1px solid #d1d3e2;
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(32, 178, 170, 0.25);
}

/* Modal improvements */
.modal-content {
  border-radius: 12px;
  border: none;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.modal-header {
  border-bottom: 1px solid #e3e6f0;
  padding: 1.25rem 1.5rem;
}

.modal-body {
  padding: 1.5rem;
}

.modal-footer {
  border-top: 1px solid #e3e6f0;
  padding: 1rem 1.5rem;
}

/* Card improvements */
.card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
  margin-bottom: 1.5rem;
}

.card-header {
  background-color: #f8f9fc;
  border-bottom: 1px solid #e3e6f0;
  border-radius: 12px 12px 0 0 !important;
  padding: 1rem 1.25rem;
}

.card-body {
  padding: 1.25rem;
}

/* Text utilities */
.text-xs {
  font-size: 0.75rem;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.text-gray-800 {
  color: #5a5c69 !important;
}

.text-gray-300 {
  color: #dddfeb !important;
}

/* Loading states */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Toast container */
.toast-container {
  z-index: 1055;
}

.toast {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Mobile responsive controls */
@media (max-width: 768px) {
  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
  }

  .carousel-control-prev {
    left: 15px;
  }

  .carousel-control-next {
    right: 15px;
  }

  .carousel-control-icon {
    font-size: 12px;
  }

  .carousel-indicators {
    bottom: 20px;
  }

  .carousel-indicators [data-bs-target] {
    width: 30px;
    height: 4px;
  }

  .carousel-indicators .active {
    width: 40px;
  }
}



@media (min-width: 992px) {
  .dropdown .mega-menu {
    left: 0 !important;
    right: 0 !important;
    margin: 0 auto !important;
    transform: none !important;
    width: 100%;
    max-width: 900px;
  }
}

/* Scroll to Top Button Modern Stil */
.scroll-to-top {
  display: none;
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  box-shadow: 0 4px 16px rgba(37,99,235,0.18), 0 1.5px 4px rgba(0,0,0,0.08);
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, opacity 0.2s;
  align-items: center;
  justify-content: center;
  opacity: 0.92;
  outline: none;
  padding: 0;
  display: flex;
}
.scroll-to-top:hover, .scroll-to-top:focus {
  background: #1d4ed8;
  color: #fff;
  box-shadow: 0 6px 24px rgba(37,99,235,0.25), 0 2px 8px rgba(0,0,0,0.10);
  opacity: 1;
}
.scroll-to-top i {
  margin: 0;
  font-size: 1.3em;
  line-height: 1;
  color: inherit;
}
@media (max-width: 600px) {
  .scroll-to-top {
    bottom: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
  }
}

.btn-group.gap-2 > .btn {
    margin-right: 0.5rem;
}
.btn-group.gap-2 > .btn:last-child {
    margin-right: 0;
}

/* Page Header */
.page-header {
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid #e9ecef;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Account Tabs */
.account-tabs {
  background: #f8f9fa;
  border-radius: 0.5rem;
  padding: 0.25rem;
  margin-bottom: 1rem;
}

.account-tabs .nav-link {
  color: #6c757d;
  border: none;
  border-radius: 0.375rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
  margin: 0.125rem;
}

.account-tabs .nav-link:hover {
  color: var(--primary-color);
  background: rgba(21, 101, 192, 0.08);
}

.account-tabs .nav-link.active {
  color: white!important;
  background: var(--primary-color);
  box-shadow: 0 2px 4px rgba(21, 101, 192, 0.3);
}

.account-tabs .nav-link i {
  font-size: 0.8rem;
}

/* Form Controls */
.form-control-sm {
  font-size: 0.875rem;
  padding: 0.375rem 0.75rem;
}

.form-select-sm {
  font-size: 0.875rem;
  padding: 0.375rem 0.75rem;
}

/* Monitor Details Components */
.card-header-custom {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.monitor-details {
    font-size: 0.875rem;
    padding: 0.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0.75rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid #f8f9fa;
    border-radius: 0.375rem;
}

.detail-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.detail-label {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: #495057;
    flex: 1;
    min-width: 0;
}

.detail-value {
    color: #212529;
    text-align: right;
    font-weight: 500;
    max-width: 60%;
    word-break: break-word;
}

.detail-value a {
    text-decoration: none;
    font-weight: 500;
}

.detail-value a:hover {
    text-decoration: underline;
}

/* Table enhancements for monitor details */
.table-sm td {
    padding: 1rem 0.75rem;
    vertical-align: middle;
    font-size: 0.875rem;
}

.table-hover tbody tr:hover {
    background-color: rgba(13, 110, 253, 0.04);
    transform: translateY(-1px);
    transition: all 0.2s ease;
}

.table-light th {
    background-color: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
    font-weight: 600;
    font-size: 0.8rem;
    color: #495057;
    padding: 1rem 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Badge enhancements */
.badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.75rem;
    border-radius: 0.375rem;
    font-weight: 500;
}

.badge i {
    font-size: 0.7rem;
}

/* Responsive adjustments for monitor details */
@media (max-width: 768px) {
    .dashboard-card {
        padding: 1.25rem;
    }
    
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 1.25rem 0.75rem;
    }
    
    .detail-label {
        width: 100%;
    }
    
    .detail-value {
        width: 100%;
        text-align: left;
        max-width: 100%;
    }
    
    .table-responsive {
        font-size: 0.8rem;
    }
    
    .monitor-details {
        padding: 0.75rem;
    }
}

/* Clean Monitors Page Styles */

/* Empty State */
.empty-state {
    background: white;
    border-radius: 0.5rem;
    border: 1px solid #e9ecef;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.empty-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 1.5rem;
}

/* Monitor Cards with Frame */
.monitor-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.monitor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 0.75rem;
    pointer-events: none;
}

.monitor-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.monitor-card.monitor-active {
    border-left: 4px solid #10b981;
}

.monitor-card.monitor-inactive {
    border-left: 4px solid #6b7280;
    opacity: 0.75;
}

.monitor-card.monitor-inactive:hover {
    opacity: 1;
}

/* Enhanced Card Header */
.card-header-simple {
    padding: 1.25rem;
    border-bottom: 1px solid #e9ecef;
    background: #f8f9fa;
    position: relative;
}

.card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
}

/* Sonar Status Indicator */
.status-dot {
    width: 22px;
    height: 22px;
    border-radius: 0.5rem;
    position: absolute;
    top: 4px;
    left: 4px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-dot.status-online {
    background: linear-gradient(135deg, #10b981, #059669);
    border: 2px solid #047857;
    animation: pulse-online 2s infinite;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4), 
                0 0 0 1px rgba(255, 255, 255, 0.8);
}

.status-dot.status-online::before {
    content: '';
    width: 16px;
    height: 16px;
    background: radial-gradient(circle, 
                rgba(255, 255, 255, 0.3) 0%, 
                rgba(255, 255, 255, 0.1) 30%, 
                transparent 50%),
                conic-gradient(from 0deg,
                transparent 0deg,
                transparent 270deg,
                rgba(255, 255, 255, 0.8) 300deg,
                white 330deg,
                rgba(255, 255, 255, 0.6) 360deg);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: sonar-sweep 2.5s linear infinite;
    box-shadow: inset 0 0 0 1px white,
                0 0 8px rgba(255, 255, 255, 0.8),
                0 0 16px rgba(16, 185, 129, 0.4);
}

.status-dot.status-offline {
    background: linear-gradient(135deg, #6b7280, #4b5563);
    border: 2px solid #374151;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.status-dot.status-offline::before {
    content: '';
    width: 16px;
    height: 16px;
    background: radial-gradient(circle, 
                rgba(255, 255, 255, 0.2) 0%, 
                rgba(255, 255, 255, 0.05) 30%, 
                transparent 50%);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
    opacity: 0.6;
    filter: grayscale(0.8);
}

/* Status Animations */
@keyframes pulse-online {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4), 
                    0 0 0 1px rgba(255, 255, 255, 0.8);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0), 
                    0 0 0 1px rgba(255, 255, 255, 0.8);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0), 
                    0 0 0 1px rgba(255, 255, 255, 0.8);
    }
}

@keyframes sonar-sweep {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Mini Sonar Status for Text */
.status-sonar-mini {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #059669);
    border: 1px solid #047857;
    position: relative;
    animation: pulse-online-mini 2s infinite;
    margin-right: 6px;
}

.status-sonar-mini::before {
    content: '';
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, 
                rgba(255, 255, 255, 0.3) 0%, 
                rgba(255, 255, 255, 0.1) 30%, 
                transparent 50%),
                conic-gradient(from 0deg,
                transparent 0deg,
                transparent 270deg,
                rgba(255, 255, 255, 0.8) 300deg,
                white 330deg,
                rgba(255, 255, 255, 0.6) 360deg);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: sonar-sweep-mini 2.5s linear infinite;
    box-shadow: inset 0 0 0 1px white,
                0 0 6px rgba(255, 255, 255, 0.8),
                0 0 12px rgba(16, 185, 129, 0.4);
}

@keyframes pulse-online-mini {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    70% {
        box-shadow: 0 0 0 4px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

@keyframes sonar-sweep-mini {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Enhanced Toggle Switch */
.monitor-toggle-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.toggle-label {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: all 0.3s ease;
    border-radius: 24px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: all 0.3s ease;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.switch input:checked + .slider {
    background-color: var(--primary-color);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 
                0 0 0 2px rgba(32, 178, 170, 0.2);
}

.switch input:checked + .slider:before {
    transform: translateX(20px);
}

.switch:hover .slider {
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 
                0 0 0 3px rgba(203, 213, 225, 0.3);
}

.switch input:checked:hover + .slider {
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 
                0 0 0 3px rgba(32, 178, 170, 0.3);
}

/* Monitor Type Badge */
.card-header-simple small {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: #475569;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 0.375rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}

.flex-grow-1.min-w-0 {
    padding-left: 1.5rem;
}

/* Card Body */
.card-body-simple {
    padding: 1rem;
}

.url-section {
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 0.375rem;
    border: 1px solid #e9ecef;
}

.url-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    word-break: break-all;
    line-height: 1.4;
}

.url-link:hover {
    text-decoration: underline;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.stat-box {
    text-align: center;
    padding: 0.75rem 0.5rem;
    background: #f8f9fa;
    border-radius: 0.375rem;
    border: 1px solid #e9ecef;
}

.stat-value {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: #6c757d;
    font-weight: 500;
}

/* Card Actions */
.card-actions {
    display: flex;
    border-top: 1px solid #f8f9fa;
    background: #fafbfc;
}

.action-link {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0.5rem;
    color: #6c757d;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    border: none;
    background: none;
    transition: all 0.2s ease;
    border-right: 1px solid #f8f9fa;
}

.action-link:last-child {
    border-right: none;
}

.action-link:hover {
    background: #f1f3f4;
    color: var(--primary-color);
}

.action-link.text-danger:hover {
    color: #dc3545;
}

/* Search and Filter Styles */
.search-box {
    position: relative;
    width: 250px;
}

.search-box i {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 0.875rem;
    z-index: 2;
}

.search-box input {
    padding-left: 2.5rem;
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    height: 38px;
    transition: all 0.2s ease;
}

.search-box input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(32, 178, 170, 0.25);
}

.filter-group {
    min-width: 140px;
}

.filter-group select {
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    height: 38px;
    padding: 0.5rem 0.75rem;
    background-color: white;
    transition: all 0.2s ease;
}

.filter-group select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(32, 178, 170, 0.25);
}

.results-count {
    font-weight: 500;
}

/* Hidden cards during filtering */
.monitor-card.hidden {
    display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .stat-box:last-child {
        grid-column: 1 / -1;
    }
    
    .action-link {
        font-size: 0.8rem;
        padding: 0.625rem 0.25rem;
    }
    
    .search-box {
        width: 200px;
    }
    
    .filter-group {
        min-width: 120px;
    }
}

/* SSL Illustration Styles */
.ssl-illustration {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.ssl-certificate {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  transform: rotateY(-15deg) rotateX(5deg);
  animation: float 6s ease-in-out infinite;
  border: 3px solid #e2e8f0;
  min-width: 300px;
}

.certificate-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e2e8f0;
}

.certificate-header i {
  font-size: 2rem;
  color: #10b981;
  animation: pulse 2s infinite;
}

.certificate-header span {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e293b;
}

.domain-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 15px;
  background: #f1f5f9;
  border-radius: 12px;
}

.domain-info i {
  color: #3b82f6;
  font-size: 1.2rem;
}

.domain-info span {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
}

.validity-info {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.valid-from, .valid-to {
  flex: 1;
  text-align: center;
  padding: 12px;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
}

.valid-from small, .valid-to small {
  display: block;
  color: #64748b;
  font-size: 0.85rem;
  margin-bottom: 5px;
}

.valid-from span, .valid-to span {
  font-weight: 600;
  color: #1e293b;
  font-size: 0.95rem;
}

.ssl-shield {
  position: absolute;
  top: 20%;
  right: -20px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
  animation: pulse-glow 3s ease-in-out infinite;
  z-index: 10;
}

.ssl-shield i {
  font-size: 2.5rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.shield-glow {
  position: absolute;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: rotate 8s linear infinite;
}

.warning-badge {
  position: absolute;
  bottom: 10%;
  left: -30px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  padding: 12px 18px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
  animation: bounce-warning 4s ease-in-out infinite;
  font-size: 0.9rem;
  font-weight: 600;
}

.warning-badge i {
  font-size: 1.1rem;
}

.security-indicators {
  position: absolute;
  top: 60%;
  right: -50px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border-radius: 20px;
  background: white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  font-size: 0.85rem;
  font-weight: 600;
  animation: slide-in-right 1s ease-out;
}

.indicator.green {
  border-left: 4px solid #10b981;
  color: #065f46;
}

.indicator.green i {
  color: #10b981;
}

.indicator.blue {
  border-left: 4px solid #3b82f6;
  color: #1e40af;
}

.indicator.blue i {
  color: #3b82f6;
}

/* API Illustration Styles */
.api-illustration {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.api-dashboard {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  color: white;
  min-width: 350px;
  animation: float 6s ease-in-out infinite;
  border: 2px solid #475569;
}

.dashboard-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #475569;
}

.dashboard-header i {
  font-size: 1.5rem;
  color: #3b82f6;
}

.dashboard-header span {
  font-size: 1.2rem;
  font-weight: 700;
}

.api-endpoint {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.api-endpoint:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.endpoint-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.method {
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.method.get {
  background: #10b981;
  color: white;
}

.method.post {
  background: #3b82f6;
  color: white;
}

.method.put {
  background: #f59e0b;
  color: white;
}

.url {
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  color: #94a3b8;
}

.response-time {
  display: flex;
  align-items: center;
  gap: 10px;
}

.time {
  font-weight: 600;
  color: #e2e8f0;
}

.status {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.status.online {
  background: #10b981;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.status.warning {
  background: #f59e0b;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

.performance-chart {
  position: absolute;
  top: 10%;
  right: -80px;
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  width: 200px;
  animation: slide-in-right 1s ease-out;
}

.chart-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  color: #1e293b;
  font-weight: 600;
  font-size: 0.9rem;
}

.chart-header i {
  color: #3b82f6;
}

.chart-bars {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 80px;
}

.bar {
  flex: 1;
  background: linear-gradient(to top, #3b82f6 0%, #60a5fa 100%);
  border-radius: 3px 3px 0 0;
  min-height: 20px;
  animation: grow-up 2s ease-out;
}

.json-response {
  position: absolute;
  bottom: 10%;
  left: -60px;
  background: #0f172a;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid #334155;
  min-width: 250px;
  animation: slide-in-left 1s ease-out;
}

.response-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #e2e8f0;
  font-weight: 600;
  font-size: 0.9rem;
}

.response-header i {
  color: #10b981;
}

.json-line {
  margin-bottom: 6px;
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
}

.key {
  color: #f59e0b;
}

.value.string {
  color: #10b981;
}

.value.number {
  color: #3b82f6;
}

.value.object {
  color: #94a3b8;
}

/* Animations */
@keyframes pulse-glow {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.6);
  }
}

@keyframes bounce-warning {
  0%, 100% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-5px);
  }
  75% {
    transform: translateY(-2px);
  }
}

@keyframes slide-in-right {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes grow-up {
  from {
    height: 0;
  }
  to {
    height: var(--final-height);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Domain Illustration Styles */
.domain-illustration {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.domain-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  transform: rotateY(-10deg) rotateX(5deg);
  animation: float 6s ease-in-out infinite;
  border: 3px solid #fed7aa;
  min-width: 320px;
  z-index: 5;
}

.domain-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #fed7aa;
}

.domain-header i {
  font-size: 2rem;
  color: #f59e0b;
  animation: pulse 2s infinite;
}

.domain-header span {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e293b;
}

.domain-body {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.domain-name, .domain-registrar, .domain-expiry {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
}

.label {
  font-weight: 600;
  color: #64748b;
  font-size: 0.9rem;
}

.value {
  font-weight: 700;
  color: #1e293b;
  font-size: 1rem;
}

.value.danger {
  color: #f59e0b;
  animation: pulse-danger 2s infinite;
}

.domain-days-left {
  text-align: center;
  padding: 15px;
  background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
  border-radius: 15px;
  border: 2px solid #f59e0b;
}

.countdown {
  font-size: 1.2rem;
  font-weight: 800;
  color: #f59e0b;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: pulse-danger 1.5s infinite;
}

.domain-warning {
  position: absolute;
  top: 10%;
  right: -40px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  padding: 15px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
  animation: shake-warning 3s ease-in-out infinite;
  font-size: 1rem;
  font-weight: 700;
  z-index: 10;
}

.domain-warning i {
  font-size: 1.3rem;
  animation: pulse 1s infinite;
}

.calendar-notification {
  position: absolute;
  bottom: 20%;
  left: -50px;
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 2px solid #10b981;
  display: flex;
  align-items: center;
  gap: 15px;
  animation: slide-in-left 1s ease-out;
  min-width: 200px;
}

.calendar-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.calendar-icon i {
  font-size: 1.5rem;
  color: white;
}

.notification-content {
  display: flex;
  flex-direction: column;
}

.notification-content strong {
  color: #1e293b;
  font-size: 1rem;
  margin-bottom: 5px;
}

.notification-content span {
  color: #64748b;
  font-size: 0.85rem;
}

.whois-monitor {
  position: absolute;
  top: 50%;
  right: -70px;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  animation: slide-in-right 1s ease-out;
  min-width: 180px;
}

.monitor-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 0.95rem;
}

.monitor-header i {
  color: #3b82f6;
  font-size: 1.2rem;
}

.monitor-status {
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.status-dot.active {
  background: #10b981;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.6);
}

.dns-indicators {
  position: absolute;
  bottom: 10%;
  right: -30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dns-item {
  background: white;
  padding: 12px 15px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  border-left: 4px solid #3b82f6;
  animation: slide-in-right 1s ease-out;
  min-width: 150px;
}

.dns-item i {
  color: #3b82f6;
  font-size: 1.1rem;
}

.dns-item span {
  color: #1e293b;
  font-weight: 600;
  font-size: 0.85rem;
  flex: 1;
}

.dns-item .status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dns-item .status.online {
  background: #10b981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
  animation: pulse 2s infinite;
}

/* Additional Animations for Domain */
@keyframes pulse-danger {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
  .ssl-illustration,
  .api-illustration,
  .domain-illustration,
  .uptime-illustration {
    height: 400px;
    transform: scale(0.8);
  }
  
  .ssl-certificate,
  .api-dashboard,
  .domain-card,
  .monitoring-dashboard {
    min-width: 280px;
  }
  
  .performance-chart,
  .json-response,
  .security-indicators,
  .calendar-notification,
  .whois-monitor,
  .dns-indicators,
  .global-monitors,
  .alert-notification,
  .status-history {
    display: none;
  }
  
  .warning-badge,
  .domain-warning {
    position: static;
    margin-top: 20px;
  }
  
  .ssl-shield {
    position: static;
    margin-top: 20px;
  }
}

/* View Toggle Buttons */
.page-actions .btn-group .btn {
  position: relative;
  border-radius: 6px;
  border: 1px solid #dee2e6;
  background: white;
  color: #6c757d;
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  transition: all 0.15s ease-in-out;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.page-actions .btn-group .btn:first-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: none;
}

.page-actions .btn-group .btn:last-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: none;
}

.page-actions .btn-group .btn:hover {
  background-color: #f8f9fa;
  color: #495057;
  border-color: #dee2e6;
  z-index: 2;
}

.page-actions .btn-group .btn.active {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  box-shadow: 0 2px 4px rgba(21, 101, 192, 0.2);
  z-index: 3;
}

.page-actions .btn-group .btn.active:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.page-actions .btn-group .btn i {
  font-size: 0.875rem;
}

@media (max-width: 576px) {
  .page-actions .btn-group .btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
  }
  
  .page-actions .btn-group .btn i {
    font-size: 0.75rem;
  }
}

/* Add new illustration styles at the end of the file */

/* Ping Illustration Styles */
.ping-illustration {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}

.ping-dashboard {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ping-dashboard .dashboard-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-weight: 600;
  color: white;
}

.ping-results {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ping-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: white;
}

.ping-result .target {
  font-weight: 500;
  flex: 1;
}

.ping-result .time {
  font-family: monospace;
  font-weight: 600;
  margin-right: 10px;
}

.ping-result .status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-left: 10px;
}

.ping-result .status.online {
  background: #10b981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

.ping-result .status.warning {
  background: #f59e0b;
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.6);
}

.ping-chart {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ping-chart .chart-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: white;
  font-size: 14px;
}

.ping-chart .chart-line {
  width: 100%;
  height: 60px;
}

/* AI Illustration Styles */
.ai-illustration {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}

.ai-report {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ai-report .report-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-weight: 600;
  color: white;
}

.ai-report .report-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ai-report .insight {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: white;
  font-size: 14px;
}

.ai-report .insight i {
  font-size: 16px;
}

.email-notification {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.email-notification .email-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-weight: 600;
  color: white;
}

.email-notification .email-body {
  color: white;
  font-size: 14px;
}

.email-notification .email-body p {
  margin: 5px 0;
}

/* Port Illustration Styles */
.port-illustration {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}

.port-scanner {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.port-scanner .scanner-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-weight: 600;
  color: white;
}

.port-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.port-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: white;
}

.port-item .port-number {
  font-weight: 600;
  font-family: monospace;
  min-width: 50px;
}

.port-item .port-service {
  flex: 1;
  margin-left: 15px;
  font-size: 14px;
}

.port-item .port-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
}

.port-item .port-status.open {
  color: #10b981;
}

.port-item .port-status.closed {
  color: #ef4444;
}

.port-alert {
  background: rgba(239, 68, 68, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 8px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
}

.port-alert .alert-icon {
  color: #ef4444;
  font-size: 20px;
}

.port-alert .alert-content strong {
  display: block;
  margin-bottom: 5px;
}

.port-alert .alert-content p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

/* Additional floating card styles */
.floating-card.alert-card {
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: white;
}

/* Animation for floating elements */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.floating-card {
  animation: float 3s ease-in-out infinite;
}

/* Delay animations for different cards */
.floating-card:nth-child(1) { animation-delay: 0s; }
.floating-card:nth-child(2) { animation-delay: 1s; }
.floating-card:nth-child(3) { animation-delay: 2s; }

/* Smooth scroll for the entire document */
html {
    scroll-behavior: smooth;
}

/* Feature card styling */
.feature-card {
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.feature-card:target {
    animation: highlight 2s ease-in-out;
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(21, 101, 192, 0.3);
}

/* Special feature badge */
.special-feature {
    position: relative;
}

.special-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    z-index: 10;
}

.special-badge .badge {
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 12px;
    animation: pulse-badge 2s infinite;
}

/* Feature highlight animation */
@keyframes highlight {
    0% {
        background-color: rgba(21, 101, 192, 0.1);
        transform: scale(1);
    }
    50% {
        background-color: rgba(21, 101, 192, 0.2);
        transform: scale(1.02);
    }
    100% {
        background-color: transparent;
        transform: scale(1);
    }
}

/* Badge pulse animation */
@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Navigation dropdown improvements */
.dropdown-menu {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 10px 0;
}

.dropdown-item {
    padding: 12px 20px;
    font-size: 14px;
    transition: all 0.2s ease;
    position: relative;
}

.dropdown-item:hover {
    background-color: rgba(21, 101, 192, 0.08);
    color: var(--primary-color);
    padding-left: 25px;
}

.dropdown-item i {
    width: 18px;
    margin-right: 10px;
    text-align: center;
}

/* Focus states for accessibility */
.feature-card:focus-within {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .feature-card:hover {
        transform: translateY(-5px);
    }
    
    .special-badge {
        top: -5px;
        right: -5px;
    }
    
    .special-badge .badge {
        font-size: 10px;
        padding: 3px 6px;
    }
}

/* Admin menu styles - Elegant & Minimal */
.sidebar-divider {
    margin: 20px 16px 16px 16px;
    padding: 0 0 12px 0;
    position: relative;
    font-size: 11px;
    font-weight: 600;
    color: #ffc107;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-align: center;
}

.sidebar-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.4), transparent);
    z-index: 1;
}

.sidebar-divider span {
    background: #ffffff;
    padding: 0 12px;
    position: relative;
    z-index: 2;
    display: inline-block;
}

.admin-link {
    position: relative;
    margin: 4px 12px;
    transition: all 0.2s ease;
}

.admin-link:hover {
    background: rgba(255, 193, 7, 0.08);
    border-radius: 8px;
    border-left: 3px solid #ffc107;
    transform: translateX(4px);
}

.admin-link.active {
    background: rgba(255, 193, 7, 0.12);
    border-radius: 8px;
    border-left: 3px solid #ffc107;
    transform: translateX(4px);
}

.admin-link .sidebar-link-icon i {
    color: #ffc107;
    transition: all 0.2s ease;
}

.admin-link:hover .sidebar-link-icon i,
.admin-link.active .sidebar-link-icon i {
    color: #ff9800;
    transform: scale(1.1);
}

.admin-link .sidebar-link-text {
    color: #6c757d;
    font-weight: 500;
    transition: all 0.2s ease;
}

.admin-link:hover .sidebar-link-text,
.admin-link.active .sidebar-link-text {
    color: #495057;
    font-weight: 600;
}

/* Special styling for crown icon */
.admin-link .fa-crown {
    color: #ffc107;
    filter: drop-shadow(0 0 4px rgba(255, 193, 7, 0.4));
}

.admin-link:hover .fa-crown,
.admin-link.active .fa-crown {
    color: #ff9800;
    filter: drop-shadow(0 0 6px rgba(255, 152, 0, 0.6));
}

/* UserDetails page spacing improvements */
.row.g-4 {
    margin-bottom: 2rem;
}

.dashboard-card {
    margin-bottom: 1.5rem;
}

.card + .card {
    margin-top: 1.5rem;
}

.detail-item {
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e9ecef;
}

.detail-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* Back to Users button - specific styling */
.btn-back-to-users {
    color: white !important;
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-back-to-users:hover {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: white !important;
    transform: translateY(-2px);
}

/* Monitor List Table Styling */
.monitor-table {
    font-size: 0.97rem;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}
.monitor-table thead th {
    background: #f8f9fa;
    font-weight: 600;
    border-bottom: 2px solid #e9ecef;
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
}
.monitor-table tbody tr {
    transition: background 0.2s;
}
.monitor-table tbody tr:nth-child(even) {
    background: #f6f8fa;
}
.monitor-table tbody tr:hover {
    background: #e9f5ff;
}
.monitor-table td, .monitor-table th {
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
    vertical-align: middle;
}
.monitor-table .badge {
    font-size: 0.92em;
    padding: 0.35em 0.7em;
    border-radius: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}
.monitor-table .btn-group .btn {
    padding: 0.25rem 0.6rem;
    font-size: 0.95em;
}
.monitor-table .toggle-wrapper {
    min-width: 36px;
}
@media (max-width: 900px) {
    .monitor-table thead th, .monitor-table td {
        padding-left: 0.4rem;
        padding-right: 0.4rem;
        font-size: 0.93rem;
    }
    .monitor-table .btn-group .btn {
        font-size: 0.9em;
    }
}
@media (max-width: 600px) {
    .monitor-table thead th, .monitor-table td {
        font-size: 0.89rem;
        padding-top: 0.45rem;
        padding-bottom: 0.45rem;
    }
    .monitor-table .badge {
        font-size: 0.85em;
        padding: 0.25em 0.5em;
    }
}

/* Küçük switch (toggle) */
.switch-sm {
    width: 34px;
    height: 20px;
}
.switch-sm .slider {
    width: 32px;
    height: 18px;
}
.switch-sm .slider:before {
    width: 14px;
    height: 14px;
    left: 2px;
    bottom: 2px;
}
.switch-sm input:checked + .slider:before {
    left: -5px;
}
@media (max-width: 600px) {
    .switch-sm {
        width: 28px;
        height: 16px;
    }
    .switch-sm .slider {
        width: 26px;
        height: 14px;
    }
    .switch-sm .slider:before {
        width: 10px;
        height: 10px;
        left: 2px;
        bottom: 2px;
    }
    .switch-sm input:checked + .slider:before {
        left: 14px;
    }
}
  
/* List/Grid ve Actions arası boşluklar */
.page-actions .btn-group {
    gap: 0.5rem;
    margin-right: 0.5rem;
}
.page-actions .btn {
    margin-right: 0 !important;
}
.monitor-table .btn-group {
    gap: 0.35rem;
}
.monitor-table .btn-group .btn {
    margin-right: 0 !important;
}
  
.table-responsive {
    width: 100%;
    overflow-x: auto;
}
.monitor-table {
    min-width: 700px;
}
@media (max-width: 900px) {
    .monitor-table {
        min-width: 600px;
    }
}
@media (max-width: 600px) {
    .monitor-table {
        min-width: 480px;
    }
    .monitor-table thead th, .monitor-table td {
        font-size: 0.85rem;
        padding: 0.35rem 0.3rem;
    }
}
  
.sidebar-admin-group {
    background: linear-gradient(90deg, #232b3e 80%, #232b3e 100%);
    border-radius: 1.2em;
    margin: 1.5rem 0 1.2rem 0;
    box-shadow: 0 2px 12px 0 rgba(35,43,62,0.07);
    padding: 0.5em 0.2em 0.7em 0.2em;
}
.admin-divider span {
    color: #f7c873;
    font-weight: 800;
    font-size: 1.08rem;
    letter-spacing: 0.18em;
    background: #232b3e;
    padding: 0.32em 1.6em;
    border-radius: 2em;
    z-index: 1;
    box-shadow: 0 2px 12px 0 rgba(35,43,62,0.10);
    border: 1.5px solid #f7c873;
    text-shadow: 0 1px 6px rgba(35,43,62,0.13);
    display: flex;
    align-items: center;
    gap: 0.5em;
}
.admin-divider span i {
    color: #f7c873;
    font-size: 1.1em;
}
.sidebar-admin-group .sidebar-link {
    background: transparent;
    color: #f7c873 !important;
    font-weight: 600;
    border-radius: 0.7em;
    margin: 0.15em 0.5em;
    padding-left: 1.5em;
    transition: background 0.15s;
}
.sidebar-admin-group .sidebar-link:hover {
    background: #1a2132;
    color: #fff !important;
}
  
/* Monitor Modal scrollable body */
#monitorModal .modal-body {
    max-height: 90vh;
    overflow-y: auto;
}


.service-icon { color: white!important; }

/* Modern Navbar Styles */
.modern-navbar {
    backdrop-filter: blur(10px);
    background: #f9f9fb !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.modern-navbar .navbar-logo {
    height: 50px;
    transition: transform 0.3s ease;
}

.modern-navbar .navbar-logo:hover {
    transform: scale(1.05);
}

.modern-toggler {
    border: none;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.modern-toggler:hover {
    background: rgba(21, 101, 192, 0.1);
}

.modern-nav-link {
    position: relative;
    padding: 12px 16px !important;
    font-weight: 500;
    color: #374151 !important;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0 4px;
}

.modern-nav-link:hover {
    color: #1565c0 !important;
    background: rgba(21, 101, 192, 0.08);
    transform: translateY(-1px);
}

.modern-nav-link i {
    margin-right: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.modern-nav-link:hover i {
    color: #1565c0 !important;
    transform: scale(1.1);
}

.modern-dropdown {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    background: white;
    padding: 8px;
    margin-top: 8px;
    min-width: 220px;
}

.modern-dropdown-item {
    padding: 12px 16px;
    border-radius: 8px;
    margin: 2px 0;
    font-weight: 500;
    color: #374151;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.modern-dropdown-item:hover {
    background: linear-gradient(135deg, #1565c0, #1976d2);
    color: white;
    transform: translateX(4px);
}

.modern-dropdown-item:hover i {
    color: white !important;
    transform: scale(1.1);
}

.modern-dropdown-item i {
    font-size: 16px;
    width: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.modern-dropdown-item.special-feature {
    background: linear-gradient(135deg, rgba(21, 101, 192, 0.1), rgba(25, 118, 210, 0.1));
    border-left: 3px solid #1565c0;
}

.modern-dropdown-item.special-feature:hover {
    background: linear-gradient(135deg, #1565c0, #1976d2);
    border-left-color: white;
}

.modern-btn {
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.modern-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(21, 101, 192, 0.3);
}

.modern-btn.btn-primary {
    background: linear-gradient(135deg, #1565c0, #1976d2);
    border-color: #1565c0;
}

.modern-btn.btn-primary:hover {
    background: linear-gradient(135deg, #0d47a1, #1565c0);
    border-color: #0d47a1;
}

.modern-btn.btn-outline-primary {
    border-color: #1565c0;
    color: #1565c0;
}

.modern-btn.btn-outline-primary:hover {
    background: linear-gradient(135deg, #1565c0, #1976d2);
    border-color: #1565c0;
    color: white;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #1565c0, #1976d2) !important;
}

/* Mobile Responsive for Modern Navbar */
@media (max-width: 991px) {
    .modern-navbar {
        background: white !important;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }
    
    .modern-nav-link {
        padding: 16px 20px !important;
        margin: 4px 0;
        border-radius: 12px;
    }
    
    .modern-dropdown {
        border-radius: 16px;
        margin: 8px 0;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    }
    
    .modern-dropdown-item {
        padding: 16px 20px;
        border-radius: 12px;
        margin: 4px 0;
    }
    
    .modern-btn {
        padding: 12px 24px;
        border-radius: 12px;
        font-size: 16px;
    }
}

/* Overview Slider Styles */
.hero-slide-overview {
    background: linear-gradient(135deg, #1565c0 0%, #0d47a1 50%, #1976d2 100%);
    position: relative;
    overflow: hidden;
}

.hero-slide-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.overview-illustration {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.overview-dashboard {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.overview-dashboard .dashboard-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: white;
    font-weight: 600;
    font-size: 18px;
}

.overview-dashboard .dashboard-header i {
    font-size: 20px;
    color: #64b5f6;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.monitor-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.monitor-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.monitor-item .item-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 14px;
    color: white;
}

.monitor-item.uptime .item-icon {
    background: linear-gradient(135deg, #4caf50, #45a049);
}

.monitor-item.ssl .item-icon {
    background: linear-gradient(135deg, #ff9800, #f57c00);
}

.monitor-item.domain .item-icon {
    background: linear-gradient(135deg, #2196f3, #1976d2);
}

.monitor-item.api .item-icon {
    background: linear-gradient(135deg, #9c27b0, #7b1fa2);
}

.monitor-item.port .item-icon {
    background: linear-gradient(135deg, #f44336, #d32f2f);
}

.monitor-item.ping .item-icon {
    background: linear-gradient(135deg, #00bcd4, #0097a7);
}

.monitor-item.locations .item-icon {
    background: linear-gradient(135deg, #3f51b5, #303f9f);
}

.monitor-item .item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.monitor-item .item-title {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.monitor-item .item-status {
    font-size: 11px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    text-align: center;
}

    .monitor-item .item-status.online {
        background: rgba(76, 175, 80, 0.2);
        color: #00ff0a;
    }

.monitor-item .item-status.warning {
    background: rgba(255, 152, 0, 0.2);
    color: #ff9800;
}

.monitor-item .item-status.danger {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
}

.notification-center {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.notification-center .notification-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.notification-center .notification-header i {
    font-size: 18px;
    color: #64b5f6;
}

.notification-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notification-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border-left: 3px solid transparent;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.notification-item:hover {
    background: rgba(255, 255, 255, 0.15);
}

.notification-item.warning {
    border-left-color: #ff9800;
}

.notification-item.danger {
    border-left-color: #f44336;
}

.notification-item.success {
    border-left-color: #4caf50;
}

.notification-item.info {
    border-left-color: #2196f3;
}

.notification-item i {
    font-size: 14px;
}

.notification-item.warning i {
    color: #ff9800;
}

.notification-item.danger i {
    color: #f44336;
}

    .notification-item.success i {
        color: #00ff0a;
    }

.notification-item.info i {
    color: #2196f3;
}

/* Mobile Responsive for Overview Slider */
@media (max-width: 768px) {
    .overview-illustration {
        max-width: 100%;
        gap: 15px;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .monitor-item {
        padding: 10px;
    }
    
    .monitor-item .item-title {
        font-size: 11px;
    }
    
    .monitor-item .item-status {
        font-size: 10px;
    }
    
    .notification-item {
        font-size: 11px;
        padding: 8px;
    }
}

@media (max-width: 576px) {
    .overview-dashboard,
    .notification-center {
        padding: 15px;
    }
    
    .overview-dashboard .dashboard-header,
    .notification-center .notification-header {
        font-size: 14px;
    }
    
    .monitor-item .item-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}

/* reCAPTCHA v3 is invisible and doesn't need styling */