/* ====== SALESFORCE CONSULTING PARTNER PAGE STYLES ====== */

h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--light) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeIn 1.2s ease;
}

/* SECTION SPACING BASE */
.services, .platform, .cta-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* SECTION CONTAINERS */
.services-container, .platform-container, .cta-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

/* SECTION TITLE SPACING */
.section-title {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 20px;
}

.section-title h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: var(--light);
}

.section-title p {
  color: var(--gray);
  font-size: 18px;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* Backgrounds using consistent color scheme */
.hero-bg {
  background: radial-gradient(
      circle at 10% 20%,
      rgba(59, 130, 246, 0.15) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(139, 92, 246, 0.15) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(34, 197, 94, 0.08) 0%,
      transparent 50%
    );
  background-size: 200% 200%;
  animation: gradientShift 15s ease infinite;
}

.services-bg {
  background: radial-gradient(
      circle at 20% 50%,
      rgba(59, 130, 246, 0.08) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(139, 92, 246, 0.08) 0%,
      transparent 40%
    ),
    linear-gradient(90deg, rgba(15, 23, 42, 0.7) 0%, transparent 50%);
  background-size: 180% 180%;
  animation: gradientFlow 25s ease infinite;
}

.platform-bg {
  background: radial-gradient(
      circle at 50% 20%,
      rgba(59, 130, 246, 0.1) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 50% 80%,
      rgba(139, 92, 246, 0.1) 0%,
      transparent 40%
    ),
    linear-gradient(180deg, rgba(30, 41, 59, 0.8) 0%, transparent 50%);
  background-size: 160% 160%;
  animation: gradientPulse 18s ease infinite;
}

/* ====== BUTTON STYLES ====== */

/* BASE CTA BUTTON - IDENTICAL ACROSS ALL SECTIONS */
.cta-button {
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
  position: relative;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  display: inline-block;
  text-decoration: none;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
  color: white;
  background: linear-gradient(90deg, var(--primary-light), var(--primary));
}

.cta-button:active {
  transform: translateY(-1px);
}

/* SECONDARY BUTTON */
.secondary-button {
  background: transparent;
  color: var(--gray);
  border: 1px solid #475569;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.secondary-button:hover {
  border-color: var(--primary-light);
  transform: translateY(-3px);
  color: var(--primary-light);
}

/* HERO SECTION */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 0 40px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.text-content {
  z-index: 2;
}

.tagline {
  font-size: 14px;
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: inline-block;
  padding: 5px 15px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 30px;
  animation: fadeIn 1s ease;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.typing-cursor {
  display: inline-block;
  width: 3px;
  height: 1em;
  background: var(--primary);
  margin-left: 2px;
  animation: blink 1s infinite;
}

.hero h1 {
  font-size: 52px;
  line-height: 1.2;
  margin-bottom: 25px;
  color: var(--light);
  min-height: 62px;
}

.description {
  color: var(--gray);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 35px;
  max-width: 500px;
  animation: fadeIn 1.5s ease;
}

.features {
  display: flex;
  gap: 25px;
  margin-bottom: 35px;
  flex-wrap: wrap;
  animation: fadeIn 2s ease;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray);
  font-size: 15px;
  padding: 8px 16px;
  background: rgba(30, 41, 59, 0.5);
  border-radius: 30px;
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  background: rgba(59, 130, 246, 0.1);
}

.feature i {
  color: var(--primary);
  font-size: 18px;
}

.buttons {
  display: flex;
  gap: 20px;
  animation: fadeIn 2.5s ease;
}

/* NEW SALESFORCE NETWORK ANIMATION */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px;
}

.salesforce-network {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 400px;
  transform-style: preserve-3d;
  perspective: 1000px;
}

/* Central Salesforce Cloud */
.central-cloud {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 48px;
  z-index: 10;
  animation: floatCloud 4s ease-in-out infinite;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
}

.central-cloud::after {
  content: '';
  position: absolute;
  width: 140%;
  height: 140%;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.1);
  animation: pulseRing 2s ease-out infinite;
  z-index: -1;
}

/* Floating Data Nodes */
.data-node {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  font-size: 20px;
  z-index: 5;
  transition: all 0.3s ease;
}

.data-node:hover {
  background: rgba(59, 130, 246, 0.2);
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
}

/* Node Positions */
.node-1 {
  top: 15%;
  left: 25%;
  animation: orbitNode 8s linear infinite;
  animation-delay: 0s;
}

.node-2 {
  top: 15%;
  right: 25%;
  animation: orbitNode 8s linear infinite reverse;
  animation-delay: 1s;
}

.node-3 {
  bottom: 20%;
  left: 15%;
  animation: orbitNode 10s linear infinite;
  animation-delay: 2s;
}

.node-4 {
  bottom: 20%;
  right: 15%;
  animation: orbitNode 10s linear infinite reverse;
  animation-delay: 3s;
}

.node-5 {
  top: 40%;
  left: 10%;
  animation: orbitNode 12s linear infinite;
  animation-delay: 0.5s;
}

.node-6 {
  top: 40%;
  right: 10%;
  animation: orbitNode 12s linear infinite reverse;
  animation-delay: 1.5s;
}

/* Connecting Lines */
.connection-line {
  position: absolute;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  height: 2px;
  transform-origin: 0 0;
  z-index: 1;
  opacity: 0.4;
}

.line-1 {
  width: 100px;
  top: 30%;
  left: 40%;
  transform: rotate(45deg);
  animation: pulseLine 2s ease-in-out infinite;
}

.line-2 {
  width: 120px;
  top: 30%;
  left: 45%;
  transform: rotate(120deg);
  animation: pulseLine 2s ease-in-out infinite 0.3s;
}

.line-3 {
  width: 90px;
  top: 60%;
  left: 35%;
  transform: rotate(200deg);
  animation: pulseLine 2s ease-in-out infinite 0.6s;
}

.line-4 {
  width: 110px;
  top: 60%;
  left: 50%;
  transform: rotate(300deg);
  animation: pulseLine 2s ease-in-out infinite 0.9s;
}

/* Data Flow Dots */
.data-flow {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  z-index: 2;
  animation: flowAlongLine 3s linear infinite;
  box-shadow: 0 0 10px var(--primary);
}

.flow-1 {
  animation-delay: 0s;
  animation-duration: 4s;
}

.flow-2 {
  animation-delay: 1s;
  animation-duration: 5s;
}

.flow-3 {
  animation-delay: 2s;
  animation-duration: 4.5s;
}

/* Animated background elements */
.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.shape {
  position: absolute;
  opacity: 0.1;
  animation: float 15s infinite linear;
}

.shape:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 10%;
  left: 5%;
  background: var(--primary);
  border-radius: 50%;
  animation-delay: 0s;
}

.shape:nth-child(2) {
  width: 120px;
  height: 120px;
  top: 60%;
  left: 80%;
  background: var(--accent);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation-delay: -5s;
}

.shape:nth-child(3) {
  width: 60px;
  height: 60px;
  top: 80%;
  left: 15%;
  background: var(--success);
  border-radius: 50%;
  animation-delay: -10s;
}

.shape:nth-child(4) {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 70%;
  background: var(--warning);
  border-radius: 50%;
  animation-delay: -7s;
}

/* ====================== WHITE THEME STYLES ====================== */
.white-theme {
  background: white !important;
  color: #333 !important;
}

.white-theme .section-bg.services-bg,
.white-theme .section-bg.platform-bg {
  display: none !important;
}

.white-theme .service-card,
.white-theme .platform-feature {
  background: #f8f9fa !important;
  border: 1px solid #e9ecef !important;
  color: #333 !important;
}

.white-theme .section-title h2,
.white-theme .section-title h3,
.white-theme .service-card h3,
.white-theme .platform-feature h4 {
  color: #333 !important;
}

.white-theme .section-title p,
.white-theme .service-card p,
.white-theme .platform-feature p,
.white-theme .service-features li {
  color: #666 !important;
}

.white-theme .service-icon,
.white-theme .platform-feature-icon {
  background: rgba(59, 130, 246, 0.1) !important;
  color: var(--primary) !important;
}

.white-theme .service-features li i {
  color: var(--primary) !important;
}

.white-theme .service-card:hover,
.white-theme .platform-feature:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
  border-color: #dee2e6 !important;
}

.white-theme .service-card::before,
.white-theme .service-card::after {
  display: none !important;
}

.white-theme .platform-feature:hover {
  border-color: var(--primary) !important;
}

.white-theme .platform-description {
  color: #666 !important;
  text-align: center;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Web Design Services Section */
.services {
  background: var(--dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.service-card {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 40px 30px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid #e9ecef;
  text-align: center;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.service-card:hover::before {
  opacity: 0.05;
}

.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 90px;
  height: 90px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 36px;
  color: var(--primary);
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(59, 130, 246, 0.2);
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  color: #333;
}

.service-card h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.service-card:hover h3::after {
  width: 80px;
}

.service-card p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
}

.service-features {
  list-style: none;
  text-align: left;
  margin-bottom: 0;
}

.service-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  color: #666;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-features li i {
  color: var(--primary);
}

/* Platform Section */
.platform-container {
  display: block;
  position: relative;
  z-index: 1;
}

.platform-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.platform-content p {
  color: var(--gray);
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 1.7;
  text-align: center;
}

.platform-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.platform-feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: white;
  padding: 25px;
  border-radius: 15px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.platform-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.platform-feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 20px;
  flex-shrink: 0;
}

.platform-feature-content h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--secondary);
}

.platform-feature-content p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
  text-align: left;
}

/* NEW CTA SECTION - IDENTICAL TO WEB DESIGN PAGE */
.cta-bg {
  background: radial-gradient(
      circle at 20% 50%,
      rgba(59, 130, 246, 0.08) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(139, 92, 246, 0.08) 0%,
      transparent 40%
    ),
    linear-gradient(90deg, rgba(15, 23, 42, 0.7) 0%, transparent 50%);
  background-size: 180% 180%;
  animation: gradientFlow 25s ease infinite;
}

.cta-section {
  background: white;
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
}

.cta-section h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #333 !important;
}

.cta-section p {
  font-size: 20px;
  margin-bottom: 40px;
  color: #666 !important;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* CTA Button - Exact copy from web design page */
.cta-section .cta-button {
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--primary-light)
  ) !important;
  color: white !important;
  border: none !important;
  padding: 12px 28px !important;
  border-radius: 50px !important;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3) !important;
}

.cta-section .cta-button:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5) !important;
  background: linear-gradient(
    90deg,
    var(--primary-light),
    var(--primary)
  ) !important;
}

/* FIX FOR LOGO WAVE EFFECT - Ensures it uses the same animation as common.css */
.logo .logo-icon {
  color: var(--primary) !important;
  animation: pulse 2s infinite !important;
}

/* ====== ANIMATIONS ====== */
@keyframes floatCloud {
  0%, 100% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-15px);
  }
}

@keyframes pulseRing {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes orbitNode {
  0% {
    transform: rotate(0deg) translateX(80px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translateX(80px) rotate(-360deg);
  }
}

@keyframes pulseLine {
  0%, 100% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.6;
  }
}

@keyframes flowAlongLine {
  0% {
    left: 0;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
  100% {
    transform: translateY(0) rotate(360deg);
  }
}

@keyframes blink {
  from,
  to {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}

@keyframes gradientPulse {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 12px rgba(59, 130, 246, 0);
  }
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
  }
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 1200px) {
  .section-title h2 {
    font-size: 36px;
  }
  
  .services-container, .platform-container, .cta-container {
    padding: 0 30px;
  }
  
  .hero-container {
    padding: 0 30px;
  }
  
  .cta-section h2 {
    font-size: 38px;
  }
}

@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }

  .features {
    justify-content: center;
  }

  .buttons {
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .platform-features {
    grid-template-columns: 1fr;
  }

  .platform-feature-content p {
    text-align: center;
  }
  
  .salesforce-network {
    height: 350px;
    max-width: 400px;
  }
  
  .services, .platform, .cta-section {
    padding: 80px 0;
  }
  
  .section-title {
    margin-bottom: 50px;
  }
  
  .hero-container {
    padding: 0 25px;
  }
  
  .cta-section {
    padding: 80px 40px;
  }
  
  .cta-section h2 {
    font-size: 34px;
  }
  
  .cta-section p {
    font-size: 18px;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 120px 25px 80px !important;
  }

  .hero h1 {
    font-size: 36px;
    min-height: 43px;
  }

  .section-title h2 {
    font-size: 32px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
  }
  
  .buttons .cta-button,
  .buttons .secondary-button {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    text-align: center;
  }
  
  .cta-section .cta-button {
    width: 100%;
    max-width: 280px;
  }
  
  .salesforce-network {
    height: 300px;
    max-width: 350px;
  }
  
  .central-cloud {
    width: 100px;
    height: 100px;
    font-size: 36px;
  }
  
  .data-node {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }
  
  .services, .platform, .cta-section {
    padding: 70px 0;
  }
  
  .section-title {
    margin-bottom: 40px;
  }
  
  .cta-section {
    padding: 80px 20px;
  }
  
  .cta-section h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }
  
  .cta-section p {
    font-size: 17px;
    margin-bottom: 35px;
  }
  
  .cta-section .cta-button {
    width: 100%;
    max-width: 300px;
    padding: 16px 30px !important;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 32px;
    min-height: 38px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .section-title p {
    font-size: 16px;
  }

  .cta-section h2 {
    font-size: 28px;
  }

  .cta-section p {
    font-size: 16px;
    margin-bottom: 30px;
  }
  
  .salesforce-network {
    height: 250px;
    max-width: 300px;
  }
  
  .central-cloud {
    width: 80px;
    height: 80px;
    font-size: 28px;
  }
  
  .data-node {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
  
  .service-card {
    padding: 30px 20px;
  }
  
  .services, .platform, .cta-section {
    padding: 60px 0;
  }
  
  .cta-section {
    padding: 70px 15px;
  }
}