html {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: scroll; /* Always show scrollbar */
  max-width: 100vw;
  /* Ensure scrollbar is always visible */
  scrollbar-gutter: stable;
}

body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  max-width: 100%;
  padding-right: 0; /* Account for scrollbar */
}

/* Custom Scrollbar Styling - Always visible above navbar */
html {
  scrollbar-width: thin;
  scrollbar-color: #269dbe rgba(38, 157, 190, 0.1);
  overflow-y: scroll !important; /* Always show scrollbar */
}

/* Webkit Scrollbar Styling */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: rgba(38, 157, 190, 0.05);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #269dbe, #1a7a96);
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #1a7a96, #156b85);
}

/* Global Text Selection Color */
::selection {
  background-color: #f97316;
  color: white;
}

::-moz-selection {
  background-color: #f97316;
  color: white;
}

body {
  min-height: 100vh;
  background: 
    linear-gradient(135deg, rgba(38, 157, 190, 0.08) 0%, rgba(38, 157, 190, 0.12) 25%, rgba(255, 255, 255, 0.95) 50%, rgba(38, 157, 190, 0.15) 75%, rgba(38, 157, 190, 0.06) 100%),
    radial-gradient(circle at 20% 80%, rgba(38, 157, 190, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(38, 157, 190, 0.08) 0%, transparent 50%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80"><g fill="none" fill-rule="evenodd"><g fill="%23269dbe" fill-opacity="0.15"><circle cx="40" cy="40" r="2"/><circle cx="20" cy="20" r="1.5"/><circle cx="60" cy="60" r="1.5"/><circle cx="20" cy="60" r="1"/><circle cx="60" cy="20" r="1"/></g></g></svg>'),
    linear-gradient(45deg, transparent 40%, rgba(38, 157, 190, 0.02) 50%, transparent 60%);
  background-size: 100% 100%, 400px 400px, 300px 300px, 80px 80px, 100% 100%;
  background-attachment: fixed, scroll, scroll, scroll, fixed;
  font-family: 'Space Grotesk', 'Inter', system-ui, -apple-system, sans-serif;
  box-sizing: border-box;
  position: relative;
  overflow-x: hidden;
  color: #1e293b;
  animation: backgroundShift 20s ease-in-out infinite;
}
/* Subtle animated gradient overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(38, 157, 190, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(38, 157, 190, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(38, 157, 190, 0.04) 0%, transparent 40%);
  opacity: 0.7;
  pointer-events: none;
  animation: gradientShift 20s ease-in-out infinite;
}
@keyframes gradientShift {
  0%, 100% { transform: translateX(0) translateY(0) scale(1); }
  33% { transform: translateX(-10px) translateY(10px) scale(1.02); }
  66% { transform: translateX(10px) translateY(-5px) scale(0.98); }
}

@keyframes backgroundShift {
  0%, 100% { 
    background-position: 0% 0%, 0% 0%, 100% 100%, 0% 0%, 0% 0%;
  }
  50% { 
    background-position: 100% 100%, 50% 50%, 0% 0%, 50% 50%, 100% 100%;
  }
}

/* Enhanced animations */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-10px) rotate(1deg); }
  66% { transform: translateY(5px) rotate(-1deg); }
}

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

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

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

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.navbar {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000; /* Lowered so scrollbar appears above */
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(38, 157, 190, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  box-sizing: border-box;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  border-bottom-color: rgba(38, 157, 190, 0.15);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 2rem;
  position: relative;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 800;
  font-size: 1.6rem;
  text-decoration: none;
  color: #1e293b;
  letter-spacing: -1px;
  cursor: pointer;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.logo::before {
  content: '';
  position: absolute;
  inset: -8px;
  background: linear-gradient(135deg, rgba(38, 157, 190, 0.1) 0%, rgba(38, 157, 190, 0.05) 100%);
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.logo:hover::before {
  opacity: 1;
}
.logo:hover {
  transform: translateY(-2px) scale(1.02);
}
.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  background: linear-gradient(135deg, #1e293b 0%, #269dbe 50%, #1a7a96 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: shimmerText 3s ease-in-out infinite;
}
@keyframes shimmerText {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.logo-icon {
  width: 46px; 
  height: 46px;
  background: 
    linear-gradient(135deg, #269dbe 0%, #1a7a96 50%, #156b85 100%),
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
  border-radius: 14px;
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  font-weight: 900;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -1px;
  box-shadow: 
    0 8px 25px rgba(38, 157, 190, 0.4),
    0 4px 10px rgba(26, 122, 150, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.logo-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
  transform: rotate(45deg);
  transition: transform 0.6s ease;
  opacity: 0;
}
.logo-icon:hover::before {
  transform: rotate(45deg) translateX(100%);
  opacity: 1;
}
.logo-icon:hover {
  transform: translateY(-3px) scale(1.08) rotate(2deg);
  box-shadow: 
    0 12px 35px rgba(38, 157, 190, 0.5),
    0 6px 15px rgba(26, 122, 150, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  list-style: none;
}
.nav-link {
  text-decoration: none;
  font-size: 0.95rem;
  color: #475569;
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
  padding: 0.8rem 1.2rem;
  border-radius: 12px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  overflow: hidden;
}
.nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(38, 157, 190, 0.1) 0%, rgba(38, 157, 190, 0.15) 100%);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #269dbe, #1a7a96);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.nav-link:hover::before, .nav-link.active::before {
  opacity: 1;
}
.nav-link:hover::after, .nav-link.active::after {
  width: 80%;
}
.nav-link:hover, .nav-link.active {
  color: #1a7a96;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 20px rgba(38, 157, 190, 0.2);
}

/* Dropdown Styles */
.dropdown {
  position: relative;
}
.dropdown-toggle {
  cursor: pointer;
}
.dropdown-arrow {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
  color: #94a3b8;
}
.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
  color: #269dbe;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(38, 157, 190, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: #475569;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
  border-radius: 0;
}
.dropdown-item:hover {
  background: rgba(38, 157, 190, 0.08);
  color: #269dbe;
  transform: translateX(4px);
}
.dropdown-icon {
  font-size: 1.1rem;
}
.get-started-btn {
  margin-left: 1.5rem;
  background: 
    linear-gradient(135deg, #269dbe 0%, #1a7a96 50%, #156b85 100%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
  border: none;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: 'Space Grotesk', sans-serif;
  padding: 0.9rem 1.8rem;
  border-radius: 14px;
  box-shadow: 
    0 8px 30px rgba(38, 157, 190, 0.4),
    0 4px 15px rgba(26, 122, 150, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  cursor: pointer;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  outline: none;
  gap: 0.6rem;
  opacity: 1;
  text-decoration: none;
  white-space: nowrap;
}
.get-started-btn .arrow {
  transition: transform 0.26s cubic-bezier(.71,1.59,.43,1.12);
  font-size: 1.28em;
  display: inline-block;
  margin-left: 0.3em;
}
.get-started-btn .arrow-bg {
  content: '';
  background: linear-gradient(135deg,#fffce820 70%, #c6e8ff5e);
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 0;
  z-index: 1;
  transition: width .3s cubic-bezier(.86,1.07,.7,.83), left .28s;
  border-radius: 120px;
  opacity: 0.14;
}
.get-started-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}
.get-started-btn:hover::before {
  left: 100%;
}
.get-started-btn:hover {
  background: 
    linear-gradient(135deg, #1a7a96 0%, #156b85 50%, #125c74 100%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
  box-shadow: 
    0 12px 40px rgba(38, 157, 190, 0.5),
    0 6px 20px rgba(26, 122, 150, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(-3px) scale(1.02);
}
.get-started-btn:hover .arrow {
  transform: translateX(11px) scale(1.14) rotate(-7deg);
}
.get-started-btn:active {
  transform: scale(0.98);
}
.get-started-btn:hover .arrow-bg {
  width: 100%;
  left: 0;
}
/* Hamburger styles */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 40px; height: 40px;
  background: rgba(162,196,255,0.16);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  gap: 6px;
  transition: background .2s;
  position: relative;
  z-index: 12;
  margin-left: 12px;
}
.hamburger:hover { background: rgba(162,196,255,0.22); }
.hamburger-bar {
  width: 27px;
  height: 3.5px;
  background: linear-gradient(90deg,#60aaff 10%,#9fc4f8 75%,#b7cefa 100%);
  border-radius: 4px;
  transition: .34s cubic-bezier(.86,1.5,.77,1.1);
  box-shadow: 0 1px 6px #A1CBFF16;
}
.hamburger.active .bar1{
  transform: translateY(9px) rotate(45deg);
}
.hamburger.active .bar2{
  opacity: 0;
  transform: scaleX(0.3);
}
.hamburger.active .bar3{
  transform: translateY(-9px) rotate(-45deg);
}
/* Mobile */
@media (max-width: 900px) {
  .nav-container {
    padding: 0.75rem 1.5rem;
  }
  .nav-links {
    gap: 1.8rem;
  }
  .nav-link {
    font-size: 0.9rem;
    padding: 0.7rem 1rem;
  }
  .get-started-btn {
    font-size: 0.9rem;
    padding: 0.8rem 1.5rem;
  }
  
  /* Fix container padding for mobile */
  .container {
    padding: 0 1.5rem;
  }
}
@media (max-width: 768px) {
  .hamburger { 
    display: flex; 
  }
  .nav-links {
    flex-direction: column;
    gap: 0;
    position: fixed;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    top: 65px;
    left: 0; 
    right: 0;
    z-index: 1999;
    padding: 1.5rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 16px 16px;
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: none;
    overflow: visible;
  }
  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-links li {
    width: 100%;
  }
  .nav-link {
    padding: 1rem 2rem;
    border-radius: 0;
    justify-content: flex-start;
    width: 100%;
    font-size: 1rem;
  }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(248, 250, 252, 0.9);
    margin: 0;
    border-radius: 0;
    border: none;
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    display: none;
  }
  .dropdown-menu.open {
    display: block;
  }
  .dropdown-item {
    padding: 0.75rem 3rem;
    font-size: 0.95rem;
  }
  .get-started-btn {
    width: calc(100% - 2.4rem);
    margin: 1rem auto;
    display: flex;
    justify-content: center;
    justify-content: center;
    font-size: 1rem;
    padding: 1rem 2rem;
  }
  .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  /* Better mobile container */
  .container {
    padding: 0 1rem;
  }
  
  /* Fix section paddings */
  .products-services-section,
  .about-preview-section {
    padding: 60px 0 50px 0;
  }
  
  .why-choose-section {
    padding: 60px 0 20px 0;
  }
  
  /* Fix grid layouts */
  .about-preview-grid,
  .content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  /* Fix text sizes */
  .section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
  }
  
  .section-header p {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .logo-text { 
    font-size: 1.3rem; 
  }
  .nav-container { 
    padding: 0.6rem 1rem; 
  }
  .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
  }
  
  /* Ultra mobile optimizations */
  .container {
    padding: 0 0.75rem;
  }
  
  .section-header h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
    line-height: 1.2;
  }
  
  .section-header p {
    font-size: 0.95rem;
  }
  
  /* Fix button sizes */
  .btn-know-more,
  .btn-cta-primary,
  .btn-cta-secondary {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
  
  /* Fix card layouts */
  .ps-card,
  .why-card,
  .feature-card {
    padding: 1.5rem 1rem;
    margin: 0 0.5rem;
  }
  
  /* Fix hero content */
  .slide-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem) !important;
  }
  
  .slide-description {
    font-size: 0.95rem !important;
  }
}
@media (max-width: 380px) {
  .logo-text { 
    display: none; 
  }
  .nav-container { 
    padding: 0.5rem 0.8rem; 
  }
}

/* Homepage Sections */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  z-index: 2;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #1e293b;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -2px;
  animation: slideInUp 1s ease-out 0.3s both;
}

.highlight {
  background: linear-gradient(135deg, #269dbe 0%, #1a7a96 50%, #156b85 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 4s ease-in-out infinite;
  position: relative;
}
.highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #269dbe, #1a7a96, #156b85);
  border-radius: 2px;
  animation: slideInLeft 1s ease-out 1s both;
}
@keyframes slideInLeft {
  from { width: 0; }
  to { width: 100%; }
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 2rem;
  font-family: 'Inter', sans-serif;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn-primary, .btn-secondary {
  padding: 1.2rem 2.5rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Space Grotesk', sans-serif;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: 
    linear-gradient(135deg, #269dbe 0%, #1a7a96 50%, #156b85 100%),
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
  color: white;
  box-shadow: 
    0 8px 30px rgba(38, 157, 190, 0.4),
    0 4px 15px rgba(26, 122, 150, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}
.btn-primary:hover::before {
  left: 100%;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 12px 40px rgba(38, 157, 190, 0.5),
    0 6px 20px rgba(26, 122, 150, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.8);
  color: #1a7a96;
  border: 2px solid rgba(38, 157, 190, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(38, 157, 190, 0.1);
}
.btn-secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #269dbe 0%, #1a7a96 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.btn-secondary:hover::before {
  opacity: 1;
}
.btn-secondary:hover {
  color: white;
  border-color: transparent;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(38, 157, 190, 0.3);
}

.hero-stats {
  display: flex;
  gap: 2rem;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #269dbe;
  font-family: 'Poppins', sans-serif;
}

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

/* Dashboard Mockup */
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.dashboard-mockup {
  width: 100%;
  max-width: 500px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid rgba(59, 130, 246, 0.1);
  position: relative;
  z-index: 1;
}

.mockup-header {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.mockup-dots {
  display: flex;
  gap: 0.5rem;
}

.mockup-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #cbd5e1;
}

.mockup-dots span:first-child { background: #ef4444; }
.mockup-dots span:nth-child(2) { background: #f59e0b; }
.mockup-dots span:nth-child(3) { background: #10b981; }

.mockup-title {
  font-weight: 600;
  color: #475569;
  font-size: 0.9rem;
}

.mockup-content {
  padding: 2rem;
}

.chart-container {
  display: flex;
  align-items: end;
  gap: 0.5rem;
  height: 120px;
  margin-bottom: 1.5rem;
}

.chart-bar {
  flex: 1;
  background: linear-gradient(135deg, #269dbe 0%, #1a7a96 100%);
  border-radius: 4px 4px 0 0;
  min-height: 20px;
  animation: chartGrow 1s ease-out;
}

@keyframes chartGrow {
  from { height: 0; }
  to { height: var(--height); }
}

.data-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.data-card {
  background: #f8fafc;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid rgba(38, 157, 190, 0.1);
}

.card-label {
  display: block;
  font-size: 0.8rem;
  color: #64748b;
  margin-bottom: 0.5rem;
}

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

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}

.section-header p {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about-section {
  padding: 120px 0 80px;
  background: #f8fafc;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 1.5rem;
}

.setup-steps {
  margin-top: 2rem;
}

.setup-steps h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.steps {
  display: flex;
  gap: 1rem;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-text {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 500;
}

.feature-showcase {
  display: grid;
  gap: 1.5rem;
}

.feature-item {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.1);
  text-align: center;
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.feature-item p {
  font-size: 0.9rem;
  color: #64748b;
}

/* Features Section */
.features-section {
  padding: 120px 0 80px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: 
    linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%),
    radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 
    0 8px 30px rgba(0, 0, 0, 0.08),
    0 2px 10px rgba(59, 130, 246, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(59, 130, 246, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
  transition: left 0.6s ease;
}
.feature-card:hover::before {
  left: 100%;
}
.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.15),
    0 8px 25px rgba(59, 130, 246, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-color: rgba(59, 130, 246, 0.3);
}

.feature-card .feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(147, 197, 253, 0.15) 100%);
  border-radius: 16px;
  transition: all 0.3s ease;
}
.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(147, 197, 253, 0.25) 100%);
}

.feature-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.5px;
}

.feature-card p {
  color: #64748b;
  line-height: 1.6;
}

/* Detailed Features Section */
.detailed-features {
  padding: 120px 0 80px;
  background: #f8fafc;
}

.feature-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.category {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.1);
}

.category h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #3b82f6;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 0.75rem 0;
  color: #475569;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
  padding-left: 1.5rem;
}

.feature-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: 700;
}

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

/* Pricing Section */
.pricing-section {
  padding: 120px 0 80px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.1);
  padding: 2rem;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
  border: 2px solid #3b82f6;
  transform: scale(1.05);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

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

.price-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.currency {
  font-size: 1.2rem;
  color: #3b82f6;
  font-weight: 600;
}

.amount {
  font-size: 3rem;
  font-weight: 800;
  color: #1e293b;
}

.period {
  font-size: 0.9rem;
  color: #64748b;
}

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

.price-features li {
  padding: 0.75rem 0;
  color: #475569;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
  padding-left: 1.5rem;
}

.price-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: 700;
}

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

.price-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.price-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
}

/* FAQ Section */
.faq-section {
  padding: 120px 0 80px;
  background: #f8fafc;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.1);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #f8fafc;
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
}

.faq-toggle {
  font-size: 1.5rem;
  color: #3b82f6;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: #64748b;
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Contact Hero Section */
.contact-hero {
  background: linear-gradient(135deg, #269dbe 0%, #1e7a9a 100%);
  color: white;
  padding: 120px 0 80px;
  text-align: center;
  margin-top: 80px;
}

.contact-hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  font-family: 'Space Grotesk', sans-serif;
}

.contact-hero p {
  font-size: 1.3rem;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Contact Main Section */
.contact-main {
  padding: 100px 0;
  background: #f8fcfe;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
}

.contact-info-card,
.contact-form-card {
  width: 100%;
  box-sizing: border-box;
  padding: 2.5rem;
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .contact-info-card,
  .contact-form-card {
    padding: 1.75rem 1.5rem;
    border-radius: 20px;
  }
  
  .modern-form {
    gap: 1.25rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.9rem 1rem;
  }
}

@media (max-width: 540px) {
  .contact-info-card,
  .contact-form-card {
    padding: 1.25rem;
    border-radius: 16px;
  }
  
  .form-submit-btn {
    width: 100%;
  }
}

/* Contact Info Card */
.contact-info-card {
  background: white;
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(38, 157, 190, 0.1);
  border: 1px solid rgba(38, 157, 190, 0.1);
}

.contact-info-card h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #269dbe;
  margin-bottom: 2rem;
  font-family: 'Space Grotesk', sans-serif;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: #f8fcfe;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: #e5f4f8;
  transform: translateY(-2px);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #269dbe 0%, #1a7a96 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(38, 157, 190, 0.3);
}

.contact-item h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #269dbe;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* Contact Form Card */
.contact-form-card {
  background: white;
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(38, 157, 190, 0.1);
  border: 1px solid rgba(38, 157, 190, 0.1);
}

.contact-form-card h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #269dbe;
  margin-bottom: 2rem;
  font-family: 'Space Grotesk', sans-serif;
}

.modern-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem 1.25rem;
  border: 2px solid #e5f4f8;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  background: #fafcfe;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #269dbe;
  background: white;
  box-shadow: 0 0 0 4px rgba(38, 157, 190, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit-btn {
  background: linear-gradient(135deg, #269dbe 0%, #1a7a96 100%);
  color: white;
  border: none;
  padding: 1.25rem 2rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
  box-shadow: 0 4px 15px rgba(38, 157, 190, 0.3);
}

.form-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(38, 157, 190, 0.4);
}

.form-submit-btn svg {
  transition: transform 0.3s ease;
}

.form-submit-btn:hover svg {
  transform: translateX(3px);
}

/* Map Section */
.map-section {
  padding: 80px 0;
  background: white;
}

.map-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #269dbe;
  text-align: center;
  margin-bottom: 3rem;
  font-family: 'Space Grotesk', sans-serif;
}

.map-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-overlay {
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 10;
}

.location-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  max-width: 280px;
  border: 1px solid rgba(38, 157, 190, 0.1);
}

.location-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #269dbe;
  margin-bottom: 1rem;
}

.location-card p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #269dbe;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.directions-btn:hover {
  background: #1a7a96;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-hero {
    padding: 80px 0 60px;
  }
  
  .contact-hero h1 {
    font-size: 2.5rem;
  }
  
  .contact-hero p {
    font-size: 1.1rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-info-card,
  .contact-form-card {
    padding: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .contact-item {
    padding: 1rem;
  }
  
  .contact-icon {
    width: 50px;
    height: 50px;
  }
  
  .map-overlay {
    position: static;
    margin-top: 1rem;
  }
  
  .location-card {
    max-width: 100%;
    margin: 0 1rem;
  }
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: white;
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

.footer::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="footergrid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(38,157,190,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23footergrid)"/></svg>');
  opacity: 0.3;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 12px;
  background: white;
  padding: 8px;
  box-shadow: 0 4px 15px rgba(38, 157, 190, 0.3);
}

.footer-logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
  font-family: 'Space Grotesk', sans-serif;
}

.footer-section:first-child p {
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(38, 157, 190, 0.1);
  border: 2px solid rgba(38, 157, 190, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #269dbe;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: #269dbe;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(38, 157, 190, 0.4);
}

.footer-section h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
  font-family: 'Space Grotesk', sans-serif;
  position: relative;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 3px;
  background: linear-gradient(90deg, #269dbe, #1a7a96);
  border-radius: 2px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section ul li a {
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  position: relative;
  padding-left: 0;
}

.footer-section ul li a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #269dbe;
}

.footer-section ul li a:hover {
  color: #269dbe;
  padding-left: 20px;
}

.footer-section ul li a:hover::before {
  opacity: 1;
  left: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(38, 157, 190, 0.2);
  padding: 2rem 0;
  position: relative;
  z-index: 2;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-content p {
  color: #94a3b8;
  margin: 0;
  font-weight: 500;
}

.footer-contact {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-contact span {
  color: #cbd5e1;
  font-size: 0.9rem;
  font-weight: 500;
}

/* New Footer Elements */
.footer-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #cbd5e1;
  font-weight: 500;
}

.highlight-icon {
  width: 24px;
  height: 24px;
  background: rgba(38, 157, 190, 0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #269dbe;
  flex-shrink: 0;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-label {
  font-size: 0.85rem;
  color: #94a3b8;
  font-weight: 600;
}

.contact-detail a {
  color: #269dbe;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-detail a:hover {
  color: #1a7a96;
}

.contact-detail span:not(.contact-label) {
  color: #cbd5e1;
  font-weight: 500;
}

/* Responsive styles for new footer */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-highlights {
    align-items: center;
  }
  
  .highlight-item {
    justify-content: center;
  }
  
  .footer-contact-info {
    align-items: center;
  }
  
  .contact-detail {
    text-align: center;
  }
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer {
    padding: 60px 0 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .footer-contact {
    justify-content: center;
    gap: 1rem;
  }
}

/* Comprehensive Responsive Design */
@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .hero-title {
    font-size: clamp(2rem, 6vw, 2.5rem);
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  
  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .steps {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .hero-container {
    padding: 0 1rem;
  }
  
  /* Contact page responsive fixes */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .contact-info-card,
  .contact-form-card {
    padding: 2rem 1.5rem;
  }
  
  /* About page responsive fixes */
  .about-hero h1 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
  }
  
  .about-hero h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }
  
  .content-text h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }
  
  .content-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .stat-item {
    flex: 1;
    min-width: 150px;
    padding: 1.5rem 1rem;
  }
  
  /* Products page responsive fixes */
  .product-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
  }
  
  .hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  /* Services page responsive fixes */
  .feature-categories {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .category {
    padding: 1.5rem;
  }
}

.navbar-logo-img {
  max-height: 75px;
  max-width: 250px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  display: block;
  margin-right: .6em;
}

/* --- HERO SLIDER --- */
.hero-slider {
  width: 100%;
  min-height: 540px;
  position: relative;
  background: none;
  z-index: 2;
  overflow: hidden;
}
.slider-container {
  width: 100vw;
  max-width: 100vw;
  margin: 0;
  position: relative;
  min-height: 540px;
}
.slider-slide {
  display: none;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(.31,1.13,.65,1); 
}
.slider-slide.active {
  display: block;
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}
.slider-slide img {
  width: 100vw;
  min-height: 540px;
  height: 70vh;
  max-height: 640px;
  object-fit: cover;
  object-position: center 35%;
  border-radius: 0 0 2.1rem 2.1rem;
  box-shadow: 0 6px 32px #0004;
  display: block;
  filter: brightness(.90) contrast(1.04);
}
.slider-caption {
  position: absolute;
  bottom: 5vw;
  left: 3vw;
  color: #fff;
  background: linear-gradient(135deg,rgba(34,44,78,0.88) 45%, rgba(0,10,38,0.0) 100%);
  border-radius: 1.1rem 2.3rem 1.7rem 2.0rem;
  box-shadow: 0 6px 24px #1e293b22;
  padding: 2.3em 3.4em 2.2em 2em;
  max-width: 520px;
  min-width: 260px;
  backdrop-filter: blur(4px);
  z-index: 3;
  animation: fadeInScale 1s cubic-bezier(.44,1,.52,1) 0.1s;
}
.slider-caption h1 {
  font-size: 2.22em;
  margin: 0 0 0.5em 0;
  background: linear-gradient(90deg,#fff 60%,#269dbe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Space Grotesk',sans-serif;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.slider-caption p {
  color: #cbd5e1;
  font-size: 1.18em;
  font-weight: 400;
  margin: .45em 0 0 0;
  letter-spacing: 0.01em;
  font-family: 'Poppins',sans-serif;
}
.slider-arrow {
  position: absolute;
  top: 50%;
  margin-top: -30px;
  width: 48px; height: 48px;
  border: none; outline: none;
  background: rgba(255,255,255,0.32);
  color: #222; font-size: 1.44em; font-weight: 800;
  border-radius: 50%; box-shadow: 0 2px 14px #0002;
  cursor: pointer;
  z-index: 10;
  display: flex; align-items: center; justify-content: center;
  transition: all .24s cubic-bezier(.71,1.59,.43,1.12);
}
.slider-arrow:hover {
  background: #269dbe; color: #fff;
  transform: scale(1.10) translateY(-2px);
  box-shadow: 0 6px 28px rgba(38, 157, 190, 0.3);
}
.slider-arrow-left { left: 3vw; }
.slider-arrow-right { right: 3vw; }
.slider-dots {
  position: absolute; left: 50%; bottom: 3vw; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 9;
}
.slider-dots button {
  width: 14px; height: 14px; border-radius: 50%; border: none; outline: none;
  background: #cbd5e166; cursor: pointer;
  transition: all .18s cubic-bezier(.53,1.72,.79,1.13);
  box-shadow: 0 2px 6px #0001;
}
.slider-dots button.active {
  background: linear-gradient(135deg,#269dbe 50%,#1a7a96 100%);
  box-shadow: 0 4px 18px rgba(38, 157, 190, 0.4);
  transform: scale(1.25);
}
@media (max-width: 730px) {
  .slider-caption {
    max-width: 95vw; left: 50%; transform: translateX(-50%); padding: 1.3em 1.3em 1.3em 1.4em;
    min-width: 0;
  }
  .slider-caption h1 { font-size: 1.24em; }
  .slider-caption p { font-size: .94em; }
  .slider-arrow { width: 36px; height: 36px; font-size:1.14em; }
  .slider-arrow-left { left: 7vw; }
  .slider-arrow-right { right: 7vw; }
}
@media (max-width: 420px) {
  .slider-arrow { left: unset !important; right: unset !important; } 
  .slider-dots { bottom: 12px; }
  .slider-caption { padding: 0.97em 0.7em; font-size: .90em; }
}
/* END HERO SLIDER */

/* Modern Hero Slider - Complete Redesign */
.modern-hero {
  width: 100%;
  height: 100vh;
  min-height: 650px;
  position: relative;
  overflow: hidden;
}

.main-hero-slider {
  width: 100%;
  height: 100%;
}

.main-hero-slider .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Slide Background */
.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 10s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.swiper-slide-active .slide-bg img {
  transform: scale(1);
}

/* Slide Overlay */
.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(38, 157, 190, 0.85) 0%,
    rgba(21, 107, 133, 0.9) 100%
  );
  z-index: 2;
}

/* Slide Content */
.slide-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  z-index: 3;
  padding: 0 2rem;
}

.content-box {
  max-width: 700px;
  animation: slideInContent 1s ease-out;
}

@keyframes slideInContent {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Slide Label */
.slide-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Slide Title */
.slide-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: white;
  margin-bottom: 1.5rem;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.02em;
}

.highlight-text {
  display: inline-block;
  background: linear-gradient(45deg, #ffffff 0%, #bae6fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 60px rgba(255, 255, 255, 0.3);
}

/* Slide Description */
.slide-description {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

/* Slide Actions */
.slide-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.btn-hero-main,
.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-hero-main {
  background: white;
  color: #269dbe;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

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

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

.btn-hero-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.btn-arrow {
  font-size: 1.3rem;
  transition: transform 0.3s;
}

.btn-hero-main:hover .btn-arrow {
  transform: translateX(5px);
}

.btn-hero-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: white;
  transform: translateY(-3px);
}

/* Navigation Buttons */
.slider-button-prev,
.slider-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  color: white;
  font-size: 2.5rem;
  line-height: 1;
}

.slider-button-prev {
  left: 2.5rem;
}

.slider-button-next {
  right: 2.5rem;
}

.slider-button-prev:hover,
.slider-button-next:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-50%) scale(1.1);
}

.slider-button-prev span,
.slider-button-next span {
  display: block;
  transform: translateY(-2px);
}

/* Pagination */
.slider-pagination {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slider-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s ease;
  cursor: pointer;
}

.slider-pagination .swiper-pagination-bullet-active {
  width: 40px;
  border-radius: 6px;
  background: white;
}

/* Info Bar */
.info-bar {
  background: white;
  padding: 2.5rem 0;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
}

.info-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #269dbe, #1a7a96);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  flex-shrink: 0;
}

.info-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.info-text strong {
  font-size: 1.1rem;
  color: #1e293b;
  font-weight: 700;
}

.info-text span {
  font-size: 0.95rem;
  color: #64748b;
}

/* Hide legacy slider navigation buttons in case they're present */
.slider-button-prev, .slider-button-next {
  display: none !important;
}

.hero-swiper {
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.15);
  transition: transform 12s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.85);
}

.hero-slide.swiper-slide-active .hero-bg {
  transform: scale(1);
  filter: brightness(1);
}

.hero-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(135deg, rgba(38, 157, 190, 0.92) 0%, rgba(26, 122, 150, 0.88) 50%, rgba(21, 107, 133, 0.92) 100%),
    radial-gradient(circle at 20% 50%, rgba(38, 157, 190, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(21, 107, 133, 0.4) 0%, transparent 50%);
  z-index: 1;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
}

.hero-content-inner {
  max-width: 900px;
  text-align: center;
  color: white;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.badge-icon {
  font-size: 1.1rem;
}

/* Hero Main Title */
.hero-main-title {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 50%, #bae6fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  position: relative;
}

/* Hero Description */
.hero-description {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

/* Hero CTA Group */
.hero-cta-group {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.cta-primary, .cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.1rem 2.5rem;
  border-radius: 60px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.cta-primary {
  background: white;
  color: #269dbe;
  box-shadow: 0 10px 40px rgba(255, 255, 255, 0.4);
}

.cta-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s;
}

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

.cta-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 50px rgba(255, 255, 255, 0.5);
}

.cta-primary svg {
  transition: transform 0.3s ease;
}

.cta-primary:hover svg {
  transform: translateX(5px);
}

.cta-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Hero Trust Badges */
.hero-trust-badges {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.8rem 1.6rem;
  border-radius: 50px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

.trust-icon {
  width: 22px;
  height: 22px;
  background: white;
  color: #269dbe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
}

/* Hero Stats Row */
.hero-stats-row {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-box {
  text-align: center;
  min-width: 120px;
}

.stat-value {
  font-size: 3rem;
  font-weight: 900;
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(180deg, #ffffff 0%, #e0f2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.85;
  font-weight: 500;
}

/* Hero Features Grid */
.hero-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .hero-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 300px;
  }
}

.feature-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  padding: 1.5rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  transition: all 0.3s ease;
}

.feature-box:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.feature-text {
  font-size: 0.9rem;
  font-weight: 600;
}

/* Hero Navigation Arrows */
.hero-nav-arrows {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 3rem;
  z-index: 10;
  pointer-events: none;
}

.hero-nav-btn {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: all;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-nav-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.15);
  box-shadow: 0 6px 30px rgba(255, 255, 255, 0.3);
}

.hero-nav-btn:active {
  transform: scale(0.95);
}

.hero-nav-btn svg {
  width: 26px;
  height: 26px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Hero Pagination */
.hero-pagination {
  position: absolute;
  bottom: 3.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.25);
  padding: 12px 20px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  border: 2px solid transparent;
}

.hero-pagination .swiper-pagination-bullet:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.hero-pagination .swiper-pagination-bullet-active {
  width: 35px;
  border-radius: 6px;
  background: white;
  border-color: white;
  box-shadow: 0 2px 10px rgba(255, 255, 255, 0.4);
}

/* Slide Animations */
.animate-fade-in {
  animation: fadeIn 1s ease-out 0.3s both;
}

.animate-slide-up {
  animation: slideUp 0.8s ease-out 0.5s both;
}

.animate-slide-up.delay-1 {
  animation-delay: 0.7s;
}

.animate-slide-up.delay-2 {
  animation-delay: 0.9s;
}

.animate-fade-in.delay-3 {
  animation-delay: 1.1s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

/* Products & Services Section */
.products-services-section,
.why-choose-section {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 70px 0 20px 0;
  max-width: 100vw;
  margin: 0 auto 20px auto; /* keep bottom margin for section gap */
}

.product-service-grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 1.2rem;
}

.why-choose-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
}

.ps-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 32px rgba(38,157,190,0.11), 0 2px 8px rgba(30,41,59,0.05);
  margin: 0;
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  max-width: 100%;
  min-width: 0;
  min-height: 280px;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 6px 32px rgba(38,157,190,0.11), 0 2px 8px rgba(30,41,59,0.05);
  margin: 0;
  padding: 1.8rem 2rem 1.5rem 2rem;
  max-width: 340px;
  min-width: 270px;
  min-height: 280px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ps-card:not(:last-child), .why-card:not(:last-child) {
  margin-right: 0;
}

@media (max-width: 1200px) {
  .product-service-grid { gap: 1rem; }
  .ps-card { padding: 1.2rem 1rem 1rem 1rem; min-height: 260px; }
  .ps-image { height: 120px; }
  .ps-content h3 { font-size: 1rem; }
  .ps-content p { font-size: 0.75rem; }
  .btn-know-more { padding: 0.5rem 1.2rem; font-size: 0.75rem; }
  .why-card { max-width: 280px; min-width: 180px; min-height: 220px; padding: 1.3rem 1rem 1rem 1rem; }
  .why-choose-grid { gap: 1.1rem; }
}
@media (max-width: 900px) {
  .product-service-grid { flex-wrap: wrap; gap: 1.2rem; }
  .ps-card { min-width: calc(50% - 0.6rem); max-width: calc(50% - 0.6rem); min-height: 280px; }
  .why-choose-grid { flex-wrap: wrap; gap: 1.7rem; }
  .why-card { min-width: 45vw; max-width: 95vw; }
}
@media (max-width: 600px) {
  .product-service-grid, .why-choose-grid {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }
  .ps-card, .why-card {
    min-width: 0;
    max-width: 98vw;
    margin: 0 auto;
    padding: 1.2rem 6vw;
  }
}

.ps-image {
  width: 100%;
  height: 140px;
  overflow: hidden;
}

.ps-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ps-card:hover .ps-image img {
  transform: scale(1.1);
}

.ps-content {
  padding: 1rem 0.5rem 0.5rem 0.5rem;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ps-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: #1e293b;
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.3;
}

.ps-content p {
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  flex: 1;
}

.btn-know-more {
  display: inline-block;
  background: linear-gradient(45deg, #269dbe, #1a7a96);
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(38, 157, 190, 0.3);
  margin-top: auto;
}

.btn-know-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(38, 157, 190, 0.4);
  background: linear-gradient(45deg, #1a7a96, #156b85);
}

/* Why Choose Section */
.why-choose-section {
  padding: 100px 0 20px 0;
  margin-top: 0; /* No bleed upward, always separated by previous margin-bottom */
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.why-choose-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
}

.why-card {
  min-width: 210px;
  max-width: 350px;
  flex: 1 1 0;
  margin: 0;
}

@media (max-width: 1100px) {
  .why-choose-grid { flex-wrap: wrap; }
  .why-card { min-width: 45vw; max-width: 95vw; }
}
@media (max-width: 900px) {
  .why-choose-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }
  .why-card { min-width: 0; max-width: 98vw; margin: 0 auto; }
}

.why-card {
  background: white;
  padding: 1.8rem 2rem 1.5rem 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.why-card:hover {
  border-color: #269dbe;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(38, 157, 190, 0.15);
}

.why-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #269dbe, #1a7a96);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  margin: 0 auto 1.5rem;
  font-weight: bold;
}

.why-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #1e293b;
}

.why-card p {
  color: #64748b;
  line-height: 1.5;
  font-size: 0.95rem;
}

/* Features Overview Section - REMOVED */
.features-overview {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  display: none;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(45deg, #269dbe, #1a7a96);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: #1e293b;
  font-family: 'Space Grotesk', sans-serif;
}

.section-header p {
  font-size: 1.2rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.feature-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(38, 157, 190, 0.1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(38, 157, 190, 0.2);
}

.feature-card .feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #269dbe, #1a7a96);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1e293b;
}

.feature-card p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.feature-link {
  color: #269dbe;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.feature-link:hover {
  color: #1a7a96;
}

/* Stats Section - REMOVED */
.stats-section {
  display: none;
}

/* Product Showcase - REMOVED */
.product-showcase {
  display: none;
}

/* Testimonials Section - REMOVED */
.testimonials-section {
  display: none;
}

/* CTA Section */
.cta-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #269dbe 0%, #1a7a96 100%);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  font-family: 'Space Grotesk', sans-serif;
}

.cta-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn-cta-primary, .btn-cta-secondary {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cta-primary {
  background: white;
  color: #269dbe;
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.cta-note {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.9rem;
  opacity: 0.8;
}

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

/* Responsive Design for Modern Hero */
@media (max-width: 1024px) {
  .slider-button-prev,
  .slider-button-next {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
  
  .slider-button-prev {
    left: 1.5rem;
  }
  
  .slider-button-next {
    right: 1.5rem;
  }
}

@media (max-width: 768px) {
  .modern-hero {
    min-height: 550px;
  }
  
  .slide-content {
    padding: 0 1.5rem;
  }
  
  .content-box {
    max-width: 100%;
  }
  
  .slide-title {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
    margin-bottom: 1rem;
  }
  
  .slide-description {
    font-size: 1.05rem;
    margin-bottom: 2rem;
  }
  
  .slide-actions {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn-hero-main,
  .btn-hero-outline {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  
  .slider-button-prev,
  .slider-button-next {
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
  }
  
  .slider-button-prev {
    left: 1rem;
  }
  
  .slider-button-next {
    right: 1rem;
  }
  
  .slider-pagination {
    bottom: 2rem;
  }
  
  .info-items {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .info-item {
    justify-content: center;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .modern-hero {
    min-height: 500px;
  }
  
  .slide-content {
    padding: 0 1rem;
  }
  
  .slide-label {
    font-size: 0.75rem;
    padding: 6px 16px;
    margin-bottom: 1rem;
  }
  
  .slide-title {
    font-size: clamp(2rem, 10vw, 2.5rem);
    margin-bottom: 0.8rem;
  }
  
  .slide-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .btn-hero-main,
  .btn-hero-outline {
    padding: 15px 28px;
    font-size: 0.95rem;
  }
  
  .slider-button-prev,
  .slider-button-next {
    width: 45px;
    height: 45px;
    font-size: 1.6rem;
  }
  
  .slider-button-prev {
    left: 0.5rem;
  }
  
  .slider-button-next {
    right: 0.5rem;
  }
  
  .slider-pagination {
    bottom: 1.5rem;
  }
  
  .info-bar {
    padding: 2rem 0;
  }
  
  .info-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .info-text strong {
    font-size: 1rem;
  }
  
  .info-text span {
    font-size: 0.85rem;
  }
}
  
@media (max-width: 480px) {
  .product-service-grid {
    gap: 1.5rem;
  }
  
  .ps-content {
    padding: 1.5rem;
  }
  
  .ps-content h3 {
    font-size: 1.2rem;
  }
  
  .btn-know-more {
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
  }
}

/* Ensure general separation between every main section for any section type */
section + section {
  margin-top: 60px;
}

/* Additional Mobile Responsive Fixes */
@media (max-width: 600px) {
  /* Fix info bar on mobile */
  .info-items {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .info-item {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .info-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  /* Fix card grids */
  .product-service-grid,
  .why-choose-grid {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .ps-card,
  .why-card {
    max-width: 100%;
    margin: 0;
  }
  
  /* Fix hero slider content */
  .slide-content {
    padding: 0 1rem;
    align-items: center;
    text-align: center;
  }
  
  .content-box {
    max-width: 100%;
  }
  
  .slide-actions {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  
  .btn-hero-main,
  .btn-hero-outline {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  /* Fix footer on mobile */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .footer-contact {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
}

@media (max-width: 400px) {
  /* Ultra small screen fixes */
  .container {
    padding: 0 0.5rem;
  }
  
  .nav-container {
    padding: 0.5rem 0.75rem;
  }
  
  .slide-title {
    font-size: clamp(1.5rem, 8vw, 2rem) !important;
  }
  
  .btn-hero-main,
  .btn-hero-outline {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  
  .ps-card,
  .why-card,
  .feature-card {
    padding: 1rem 0.75rem;
  }
  
  .section-header h2 {
    font-size: clamp(1.3rem, 6vw, 1.8rem);
  }
}

/* Product Hero Section */
.product-hero {
  background: linear-gradient(135deg, #269dbe 0%, #1e7a9a 100%);
  color: white;
  padding: 150px 0 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.product-hero::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;
}

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

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.product-hero h1 {
  font-size: 4rem;
  font-weight: 900;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  line-height: 1.3;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.95;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: white;
  display: block;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
  margin-top: 0.5rem;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.feature-badge {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  padding: 0.7rem 1.2rem;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.feature-badge:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

/* Features Showcase Section */
.features-showcase {
  padding: 100px 0;
  background: #f8fcfe;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.feature-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(38, 157, 190, 0.1);
  text-align: left;
  transition: all 0.3s ease;
  border: 1px solid rgba(38, 157, 190, 0.1);
}

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

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.feature-card h3 {
  color: #269dbe;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.feature-card p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

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

.feature-list li {
  color: #666;
  margin-bottom: 0.7rem;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #269dbe;
  font-weight: bold;
}

/* Pricing Section */
.pricing-section {
  padding: 80px 0;
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #269dbe;
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.2rem;
  color: #666;
}

.pricing-category {
  margin-bottom: 4rem;
}

.category-title {
  font-size: 2rem;
  color: #269dbe;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}

.rental-title {
  font-size: 1.5rem;
  color: #269dbe;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.lifetime-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.rental-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.rental-section {
  margin-bottom: 3rem;
}

.pricing-card {
  background: white;
  border: 2px solid #e5f4f8;
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
}

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

.pricing-card.popular,
.pricing-card.recommended {
  border-color: #269dbe;
  transform: scale(1.05);
}

.popular-badge,
.recommended-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #269dbe;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.card-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.card-header h4,
.card-header h5 {
  color: #269dbe;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

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

.original-price {
  text-decoration: line-through;
  color: #999;
  font-size: 1.1rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 800;
  color: #269dbe;
  margin-bottom: 0.5rem;
}

.price-note {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.effective-price {
  color: #269dbe;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.plan-type {
  background: #e5f4f8;
  color: #269dbe;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
}

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

.benefit {
  color: #269dbe;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.card-features h6 {
  color: #333;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.feature {
  color: #555;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.btn-pricing {
  width: 100%;
  background: #269dbe;
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 1rem;
}

.btn-pricing:hover {
  background: #1e7a9a;
}

/* Server Section */
.server-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fcfe 0%, #e5f4f8 100%);
}

.server-card {
  background: white;
  border-radius: 24px;
  padding: 3rem;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 12px 40px rgba(38, 157, 190, 0.12);
  text-align: center;
  border: 1px solid rgba(38, 157, 190, 0.1);
}

.server-icon {
  font-size: 4rem;
  margin-bottom: 2rem;
  display: block;
}

.server-content h2 {
  color: #269dbe;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.server-content p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.server-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
  text-align: left;
}

.server-feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  background: #f8fcfe;
  border-radius: 12px;
  font-weight: 500;
  color: #333;
}

.check-icon {
  color: #269dbe;
  font-weight: bold;
  font-size: 1.1rem;
}

.server-note {
  background: linear-gradient(135deg, #269dbe 0%, #1e7a9a 100%);
  color: white;
  padding: 1.5rem;
  border-radius: 16px;
  margin-top: 2rem;
}

.server-note p {
  margin: 0;
  font-size: 1.1rem;
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .product-hero {
    padding: 60px 0 50px 0;
  }
  
  .product-hero h1 {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.4rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-stats {
    gap: 2rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .hero-features {
    gap: 0.8rem;
  }
  
  .features-showcase {
    padding: 60px 0;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .feature-card {
    padding: 2rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .pricing-card.popular,
  .pricing-card.recommended {
    transform: none;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .price {
    font-size: 2rem;
  }
  
  .server-card {
    padding: 2rem;
    margin: 0 1rem;
  }
  
  .server-content h2 {
    font-size: 2rem;
  }
  
  .server-features {
    grid-template-columns: 1fr;
  }
}

.hero-actions {
  margin-top: 1.8rem;
}

.btn-hero-contact {
  display: inline-block;
  padding: 0.95rem 1.6rem;
  background: #ffffff;
  color: #269dbe !important;
  border-radius: 10px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn-hero-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.16);
}

/* Ensure anchor buttons in pricing look correct */
.pricing-card .btn-pricing {
  width: 100%;
  display: inline-block;
  text-align: center;
  background: #269dbe;
  color: #fff !important;
  text-decoration: none;
  padding: 1rem;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: background 0.3s ease;
  margin-top: 1rem;
}

.pricing-card .btn-pricing:hover {
  background: #1e7a9a;
}

/* Server actions */
.server-actions { margin-top: 1.2rem; }
.server-actions .btn-primary {
  display: inline-block;
  padding: 0.9rem 1.6rem;
  background: #269dbe;
  color: #fff !important;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 700;
  transition: background .2s ease;
}
.server-actions .btn-primary:hover { background: #1e7a9a; }

@media (max-width: 768px) {
  .btn-hero-contact {
    font-weight: 700;
    padding: 0.85rem 1.4rem;
  }
}

@media (max-width: 900px) {
  .modern-hero {
    min-height: 400px;
    height: 60vh;
  }
  .main-hero-slider {
    height: 100%;
  }
  .slide-content {
    padding: 0 1rem;
    justify-content: center;
    align-items: flex-end;
  }
  .content-box {
    max-width: 99vw;
    padding: 1rem 0.4em;
  }
  .slide-title {
    font-size: clamp(2rem, 6vw, 2.4rem);
  }
  .slide-description {
    font-size: 1rem;
    max-width: 97vw;
  }
  .slide-actions {
    flex-direction: column;
    gap: 0.8rem;
  }
  .btn-hero-main, .btn-hero-outline {
    padding: 0.85em 1.3em;
    width: 100%;
    min-width: 0;
    max-width: 280px;
    font-size: .99rem;
    text-align: center;
  }
  .slider-pagination {
    bottom: 1.5rem;
  }
}
@media (max-width: 540px) {
  .modern-hero {
    min-height: 340px;
    height: 440px;
  }
  .slide-content {
    align-items: flex-end;
    padding-bottom: 1rem;
    padding-left: 0.3rem;
    padding-right: 0.3rem;
  }
  .content-box {
    max-width: 99vw;
    padding: 0.4rem 0;
  }
  .slide-title {
    font-size: 1.34rem;
  }
  .slide-description {
    font-size: 0.93rem;
    margin-bottom: 1.1rem;
  }
  .btn-hero-main, .btn-hero-outline {
    font-size: .91rem;
    padding: 12px 0.3em;
    min-width: 0;
    max-width: 200px;
  }
}
@media (max-width: 420px) {
  .modern-hero {
    min-height: 220px;
    height: 330px;
  }
  .slide-content {
    padding: 0 0.1rem;
  }
  .slide-title {
    font-size: 1.02rem;
    margin-bottom: 0.5rem;
  }
  .slide-description {
    font-size: 0.9rem;
    margin-bottom: 0.9rem;
  }
  .btn-hero-main, .btn-hero-outline {
    padding: 8px 0.2em;
    max-width: 140px;
    font-size: 0.83rem;
  }
}

/* WhatsApp Section */
.whatsapp-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0fbff 0%, #e5f4f8 100%);
}

.whatsapp-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  background: white;
  border-radius: 24px;
  padding: 2.2rem;
  box-shadow: 0 12px 40px rgba(38, 157, 190, 0.12);
  border: 1px solid rgba(38, 157, 190, 0.12);
}

.whatsapp-icon {
  width: 100px;
  height: 100px;
  border-radius: 24px;
  background: radial-gradient(circle at 30% 30%, #56ffa3 0%, #10b981 55%, #0ca974 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: white;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.35);
}

.whatsapp-text h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #0f766e;
  margin: 0 0 .4rem 0;
  font-family: 'Space Grotesk', sans-serif;
}

.whatsapp-text p {
  color: #255e69;
  margin: 0 0 1.2rem 0;
  line-height: 1.6;
}

.whatsapp-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.4rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: white;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .2px;
  box-shadow: 0 10px 28px rgba(34, 197, 94, 0.4);
  transition: transform .18s ease, box-shadow .18s ease;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(34, 197, 94, 0.48);
}

.wa-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent; /* no white circle behind WhatsApp logo */
  color: #ffffff; /* make icon white on green button */
  font-size: 1.5rem; /* increased logo size */
  line-height: 1;
}

.wa-number {
  font-weight: 700;
  color: #0f766e;
}

@media (max-width: 768px) {
  .whatsapp-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.6rem;
  }
  .whatsapp-actions {
    justify-content: center;
  }
  .whatsapp-icon {
    margin: 0 auto;
  }
}

/* 3. Fix: Add margin to slider text/caption on mobile so it does not touch nav */
@media (max-width: 900px) {
  .slider-caption, .slide-content, .modern-hero .slide-content {
    margin-top: 80px !important;
    padding-top: 1.2em !important;
  }
}

/* 4. Fix: Ensure slider/button is not squished on mobile */
@media (max-width: 900px) {
  .btn-hero-main, .btn-hero-outline, .cta-primary, .cta-secondary {
    min-width: 140px;
    font-size: 1rem;
    padding: 1.2em 2em !important;
    border-radius: 32px;
  }
}

@media (max-width: 480px) {
  .btn-hero-main, .btn-hero-outline, .cta-primary, .cta-secondary {
    min-width: 120px;
    font-size: 0.95rem;
    padding: 1em 1.1em !important;
  }
}

/* Hide nav scrollbar visuals on mobile while keeping scroll capability */
@media (max-width: 768px) {
  .nav-links {
    scrollbar-width: none;
  }
  .nav-links::-webkit-scrollbar {
    display: none;
  }
}
