:root {
  --primary: #255d72;
  --secondary: #3b82f6 !important;
  --cloudh: #4f8de6;
  --brand-dark: #334e5e;
  --light-bg: #f8fafc;
  --hero-bg: #f9fbff;
  --whatsapp: #25d366;
  --accent-soft: #e1fdf6;
  --text-muted: #475569;
  --hover-light: #f1f3f5;
  --plan-blue: #3b82f6;
  --plan-red: #ef4444;
}

.cloud-hosting-page h1,
.cloud-hosting-page h2,
.cloud-hosting-page h3,
.cloud-hosting-page h4,
.cloud-hosting-page h5,
.cloud-hosting-page h6 {
  font-family: "Mulish", sans-serif;
}

.cloud-hosting-page h1,
.cloud-hosting-page h2:not(.accordion-header) {
  font-weight: 800 !important;
  color: #4f8de6 !important;
  font-size: 38px !important;
}

.cloud-hosting-page {
  font-family: "Mulish", sans-serif;
}

/* Hero Title specific adjustment if needed, but user said 38px for all */
.cloud-hosting-page .hero-title {
  font-size: 38px !important;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 900 !important;
}

/* Sticky Sub-Navigation (HRMS Style) */
#sub-sticky-nav {
  position: fixed;
  top: 70px; /* Adjust based on main header height */
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  z-index: 999;
  transform: translateY(-100%);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
}

#sub-sticky-nav.visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.sub-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.sub-nav-logo img {
  height: 40px;
  width: auto;
}

.sub-nav-links {
  display: flex;
  gap: 25px;
}

.sub-nav-link {
  text-decoration: none !important;
  color: #475569;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.sub-nav-link:hover,
.sub-nav-link.active {
  color: #4f8de6;
}

.sub-nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #4f8de6;
}

/* --- Page Sections --- */
#hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 40px;
  background: var(--hero-bg);
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(79, 141, 230, 0.15) 0%,
    rgba(79, 141, 230, 0.05) 100%
  );
  filter: blur(100px);
  border-radius: 50%;
  z-index: 0;
  animation: float-blob 25s infinite alternate ease-in-out;
}
.blob-1 {
  top: -15%;
  right: -10%;
  width: 700px;
  height: 700px;
}
.blob-2 {
  bottom: -15%;
  left: -15%;
  width: 800px;
  height: 800px;
  animation-delay: -7s;
}
.blob-3 {
  top: 20%;
  left: 20%;
  width: 500px;
  height: 500px;
  animation-delay: -12s;
  opacity: 0.4;
}

@keyframes float-blob {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  33% {
    transform: translate(100px, -60px) rotate(20deg) scale(1.1);
  }
  66% {
    transform: translate(-60px, 100px) rotate(-20deg) scale(0.9);
  }
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
}

/* Animated Dotted & Circle Elements */
.hero-elements {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero-circle {
  position: absolute;
  border: 2px solid rgba(79, 141, 230, 0.1);
  border-radius: 50%;
  animation: pulse-circle 8s infinite ease-in-out;
}
.circle-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: -5%;
  animation-delay: 0s;
}
.circle-2 {
  width: 500px;
  height: 500px;
  bottom: -10%;
  right: -10%;
  animation-delay: -4s;
}

@keyframes pulse-circle {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.6;
  }
}

.hero-dots {
  position: absolute;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(
    rgba(79, 141, 230, 0.2) 2px,
    transparent 2px
  );
  background-size: 20px 20px;
  z-index: 1;
  animation: float-dots 15s infinite linear;
}
.dots-1 {
  top: 20%;
  right: 15%;
}
.dots-2 {
  bottom: 15%;
  left: 10%;
  animation-delay: -5s;
}

@keyframes float-dots {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(20px, 20px) rotate(360deg);
  }
}

.element {
  position: absolute;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  opacity: 0.15;
  animation: float-element 20s infinite ease-in-out;
}
.el-1 {
  width: 80px;
  height: 80px;
  top: 15%;
  left: 5%;
  animation-delay: 0s;
  filter: blur(2px);
}
.el-2 {
  width: 120px;
  height: 120px;
  top: 55%;
  left: 85%;
  animation-delay: -4s;
  filter: blur(3px);
}
.el-3 {
  width: 50px;
  height: 50px;
  top: 75%;
  left: 15%;
  animation-delay: -8s;
  filter: blur(1px);
}

@keyframes float-element {
  0%,
  100% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
  33% {
    transform: translateY(-120px) translateX(60px) rotate(120deg);
  }
  66% {
    transform: translateY(40px) translateX(-80px) rotate(240deg);
  }
}

.floating-img {
  animation: float-img 6s ease-in-out infinite;
  display: block;
  margin: 0 auto;
  max-width: 100%;
  position: relative;
  z-index: 2;
}
@keyframes float-img {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.btn-lms-preview {
  background: #4f8de6 !important;
  color: white !important;
  padding: 15px 35px !important;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  border: none;
}
.btn-lms-preview:hover {
  background: #3b7ad1 !important;
  transform: translateY(-3px);
}

section {
  padding: 80px 0;
  scroll-margin-top: 120px;
}
#why {
  padding-top: 0;
}
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.why-item {
  background: white;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid #f1f5f9;
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}
.why-item:hover {
  transform: translateY(-5px);
  border-color: #4f8de6;
}
.icon-box {
  width: 60px;
  height: 60px;
  background: #f8fafc;
  color: #cbd5e1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 20px;
}

.cloud-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cloud-pricing-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.pricing-card-v2 {
  background: white;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  padding: 50px 0 30px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-align: center;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}
.pricing-card-v2:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Top Accent Borders */
.pricing-card-v2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
}
.plan-starter::after {
  background: #94a3b8;
}
.plan-business::after {
  background: #818cf8;
}
.plan-growth::after {
  background: #4f8de6;
}
.plan-agency::after {
  background: #2dd4bf;
}

.popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #4f8de6;
  color: white;
  padding: 6px 20px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 0 0 12px 12px;
  letter-spacing: 1px;
  z-index: 10;
}

.pricing-card-v2 h4 {
  color: #1e293b;
  font-size: 1.4rem;
  margin-bottom: 5px;
  font-weight: 900 !important;
  padding: 0 30px;
  border: none;
  text-align: center;
}

.plan-desc {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 25px;
  padding: 0 30px;
  text-align: center;
}

.price-pill-wrapper {
  margin: 0 auto 30px;
  display: block;
  text-align: center;
}

.price-value {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  padding: 12px 35px;
  border-radius: 50px;
  color: #1e40af;
  font-weight: 900;
  font-size: 2rem;
  gap: 4px;
  background: #eff6ff; /* Light blue shade */
  border: 1px solid #dbeafe;
}

.price-duration {
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.8;
  color: #1e40af !important;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  border-top: 1px solid #f1f5f9;
}
.feature-list li {
  padding: 14px 30px;
  font-size: 0.9rem;
  color: #475569;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  text-align: left;
}
.feature-list li:nth-child(even) {
  background: #f8fafc;
}
.feature-list li i {
  font-size: 0.9rem;
  color: #4f8de6;
}

.pricing-card-v2 .btn-plan {
  margin: 30px 30px 0;
  padding: 15px 25px;
  border-radius: 50px;
  font-weight: 800;
  transition: all 0.3s;
  text-decoration: none;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.plan-starter .btn-plan,
.plan-business .btn-plan,
.plan-agency .btn-plan {
  border: 2px solid #4f8de6;
  color: #4f8de6;
  background: transparent;
}
.plan-growth .btn-plan {
  background: #4f8de6;
  color: white;
  border: 2px solid #4f8de6;
  box-shadow: 0 10px 20px rgba(79, 141, 230, 0.2);
}

.pricing-card-v2 .btn-plan:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

@media (max-width: 991px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cloud-pricing-grid,
  .cloud-pricing-grid.cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .sub-nav-links {
    display: none;
  } /* Hide links on mobile sub-nav or make scrollable */
}
@media (max-width: 768px) {
  .why-choose-grid,
  .cloud-pricing-grid,
  .cloud-pricing-grid.cols-3 {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 32px !important;
  }
}
