/* Cloud Solutions Hero Section - Revamped */
.cloud-solutions-hero {
  background: linear-gradient(135deg, #1e2a38 0%, #3a4a5d 100%);
  color: #fff;
  padding: 120px 0 100px 0;
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  overflow: hidden;
}

.cloud-solutions-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(120deg, rgba(0,102,204,0.25) 0%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
}

.cloud-solutions-hero .hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cloud-solutions-hero .hero-content {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.cloud-solutions-hero .hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -1px;
  text-shadow: 0 4px 32px rgba(0,0,0,0.25);
  animation: fadeInUp 1s cubic-bezier(.39,.575,.565,1) both;
}

.cloud-solutions-hero .accent {
  color: #2196f3;
  background: linear-gradient(90deg, #2196f3 0%, #00e0ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px rgba(33,150,243,0.2));
}

.cloud-solutions-hero .hero-desc {
  font-size: 1.25rem;
  color: #cfd8dc;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  animation: fadeInUp 1s cubic-bezier(.39,.575,.565,1) 0.2s both;
}

.cloud-solutions-hero .hero-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  animation: fadeInUp 1s cubic-bezier(.39,.575,.565,1) 0.4s both;
}

.primary-button, .secondary-button {
  padding: 0.9rem 2.2rem;
  font-size: 1.1rem;
  border-radius: 6px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(33,150,243,0.08);
}

.primary-button {
  background: linear-gradient(90deg, #2196f3 0%, #00e0ff 100%);
  color: #fff;
  border: none;
}

.primary-button:hover {
  background: linear-gradient(90deg, #1976d2 0%, #00bcd4 100%);
  color: #fff;
}

.secondary-button {
  background: transparent;
  color: #2196f3;
  border: 2px solid #2196f3;
}

.secondary-button:hover {
  background: #2196f3;
  color: #fff;
}

/* Remove hero-image styles */
.cloud-solutions-hero .hero-image,
.cloud-solutions-hero .hero-image img {
  display: none !important;
}

@media (max-width: 768px) {
  .cloud-solutions-hero {
    padding: 80px 0 60px 0;
    min-height: 350px;
  }
  .cloud-solutions-hero .hero-title {
    font-size: 2.1rem;
  }
  .cloud-solutions-hero .hero-desc {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .cloud-solutions-hero {
    padding: 60px 0 40px 0;
  }
  .cloud-solutions-hero .hero-title {
    font-size: 1.4rem;
  }
  .cloud-solutions-hero .hero-desc {
    font-size: 0.95rem;
  }
  .cloud-solutions-hero .hero-actions {
    flex-direction: column;
    gap: 0.7rem;
  }
}

/* Cloud Solutions Introduction */
.cloud-solutions-intro-modern {
  padding: 80px 0;
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.cloud-solutions-intro-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0066cc, #00ccff);
}

.cloud-solutions-intro-flex {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cloud-solutions-intro-text {
  flex: 1;
}

.cloud-solutions-intro-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cloud-solutions-blue-glow {
  color: #0066cc;
  text-shadow: 0 0 10px rgba(0, 102, 204, 0.3);
}

.cloud-solutions-black {
  color: #333;
}

.cloud-solutions-intro-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #666;
}

.cloud-solutions-link {
  color: #0066cc;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.cloud-solutions-link:hover {
  color: #00ccff;
}

.cloud-solutions-intro-image {
  flex: 1;
  text-align: center;
  position: relative;
}

.cloud-solutions-intro-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border: 2px solid #0066cc;
  border-radius: 8px;
  opacity: 0.2;
  z-index: -1;
}

.cloud-solutions-intro-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.cloud-solutions-intro-image img:hover {
  transform: scale(1.02);
}

/* What is Cloud Solutions Section */
.what-is-cloud-solutions {
  padding: 80px 0;
  background-color: #fff;
  position: relative;
}

.what-is-cloud-solutions::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00ccff, #0066cc);
}

.what-is-cloud-solutions .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.what-is-cloud-solutions .section-header h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1rem;
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.content-block {
  margin-bottom: 2rem;
  padding: 2rem;
  background-color: #f8f9fa;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.content-block p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #666;
}

.content-block h3 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 1rem;
}

/* Cloud Solutions Need Section */
.cloud-solutions-need {
  padding: 80px 0;
  background-color: #f8f9fa;
  position: relative;
}

.cloud-solutions-need::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0066cc, #00ccff);
}

.cloud-solutions-need .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.cloud-solutions-need .section-header h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1rem;
}

.cloud-solutions-need-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cloud-solutions-need-item {
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cloud-solutions-need-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.cloud-solutions-need-icon {
  margin-bottom: 1.5rem;
  text-align: center;
}

.cloud-solutions-need-icon img {
  width: 64px;
  height: 64px;
  transition: transform 0.3s ease;
}

.cloud-solutions-need-item:hover .cloud-solutions-need-icon img {
  transform: scale(1.1);
}

.cloud-solutions-need-content h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 1rem;
}

.cloud-solutions-need-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666;
}

/* Benefits Section */
.benefits-modern {
  padding: 80px 0;
  background-color: #fff;
  position: relative;
}

.benefits-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00ccff, #0066cc);
}

.benefits-flex {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.benefits-content {
  flex: 1;
}

.benefits-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.benefits-accent {
  color: #0066cc;
  text-shadow: 0 0 10px rgba(0, 102, 204, 0.3);
}

.benefits-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #666;
}

.benefits-grid-modern {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.benefit-modern {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background-color: #f8f9fa;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon-modern {
  flex-shrink: 0;
}

.benefit-icon-modern img {
  width: 48px;
  height: 48px;
  transition: transform 0.3s ease;
}

.benefit-modern:hover .benefit-icon-modern img {
  transform: scale(1.1);
}

.benefit-modern h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.benefit-modern p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
}

.benefits-image-modern {
  flex: 1;
  position: relative;
}

.benefits-image-modern::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border: 2px solid #0066cc;
  border-radius: 8px;
  opacity: 0.2;
  z-index: -1;
}

.benefits-image-modern img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.benefits-image-modern img:hover {
  transform: scale(1.02);
}

/* Features Section */
.features-modern {
  padding: 80px 0;
  background-color: #f8f9fa;
  position: relative;
}

.features-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0066cc, #00ccff);
}

.features-modern-flex {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.features-modern-image {
  flex: 1;
  position: relative;
}

.features-modern-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border: 2px solid #0066cc;
  border-radius: 8px;
  opacity: 0.2;
  z-index: -1;
}

.features-modern-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.features-modern-image img:hover {
  transform: scale(1.02);
}

.features-modern-content {
  flex: 1;
}

.features-modern-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.features-modern-blue {
  color: #0066cc;
  text-shadow: 0 0 10px rgba(0, 102, 204, 0.3);
}

.features-modern-black {
  color: #333;
}

.features-modern-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #666;
}

.features-modern-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.feature-modern {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon-modern {
  flex-shrink: 0;
}

.feature-icon-modern img {
  width: 48px;
  height: 48px;
  transition: transform 0.3s ease;
}

.feature-modern:hover .feature-icon-modern img {
  transform: scale(1.1);
}

.feature-modern h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.feature-modern p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background-color: #fff;
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00ccff, #0066cc);
}

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

.contact .section-header h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1rem;
}

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

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background-color: #f8f9fa;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0066cc;
}

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

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .cloud-solutions-hero .hero-inner,
  .cloud-solutions-intro-flex,
  .benefits-flex,
  .features-modern-flex {
    flex-direction: column;
    gap: 2rem;
  }

  .cloud-solutions-hero .hero-title {
    font-size: 2.5rem;
  }

  .cloud-solutions-hero .hero-desc {
    font-size: 1.1rem;
  }

  .benefits-grid-modern,
  .features-modern-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .cloud-solutions-hero {
    padding: 80px 0;
  }

  .cloud-solutions-hero .hero-title {
    font-size: 2rem;
  }

  .cloud-solutions-intro-text h2,
  .what-is-cloud-solutions .section-header h2,
  .cloud-solutions-need .section-header h2,
  .benefits-title,
  .features-modern-title {
    font-size: 2rem;
  }

  .cloud-solutions-need-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .cloud-solutions-hero .hero-title {
    font-size: 1.8rem;
  }

  .cloud-solutions-intro-text h2,
  .what-is-cloud-solutions .section-header h2,
  .cloud-solutions-need .section-header h2,
  .benefits-title,
  .features-modern-title {
    font-size: 1.8rem;
  }

  .cloud-solutions-intro-flex,
  .benefits-flex,
  .features-modern-flex {
    padding: 0 1rem;
  }

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

/* Sexy Cloud Needs Section */
.sexy-cloud-needs {
  background: #f8fafc;
  padding: 64px 0 64px 0;
}

.cloud-needs-header {
  max-width: 900px;
  margin: 0 auto 2.5rem auto;
  text-align: left;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 24px 0 rgba(30, 42, 56, 0.07);
  padding: 2.5rem 2.5rem 2rem 2.5rem;
}

.cloud-needs-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: #222;
}

.cloud-needs-accent {
  color: #1e90ff;
  background: linear-gradient(90deg, #1e90ff 0%, #38bfec 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.cloud-needs-desc {
  color: #4a5a6a;
  font-size: 1.08rem;
  margin-bottom: 0;
}

.cloud-needs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.cloud-needs-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 24px 0 rgba(30, 42, 56, 0.07);
  padding: 2.2rem 1.7rem 1.7rem 1.7rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.25s, transform 0.25s;
  position: relative;
  min-height: 260px;
}

.cloud-needs-card:hover {
  box-shadow: 0 8px 32px 0 rgba(30, 144, 255, 0.13);
  transform: translateY(-6px) scale(1.025);
  z-index: 2;
}

.cloud-needs-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0c3150;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 rgba(30, 144, 255, 0.07);
}

.cloud-needs-icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  display: block;
}

.cloud-needs-content h3 {
  font-size: 1.18rem;
  font-weight: 600;
  color: #1e2a38;
  margin-bottom: 0.5rem;
}

.cloud-needs-content p {
  color: #4a5a6a;
  font-size: 1.01rem;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .cloud-needs-header {
    padding: 2rem 1.2rem 1.2rem 1.2rem;
  }
  .cloud-needs-grid {
    gap: 1.2rem;
  }
}

@media (max-width: 600px) {
  .cloud-needs-header {
    padding: 1.2rem 0.5rem 0.5rem 0.5rem;
  }
  .cloud-needs-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .cloud-needs-card {
    padding: 1.2rem 0.7rem 0.7rem 0.7rem;
    min-height: 180px;
  }
  .cloud-needs-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0.7rem;
  }
  .cloud-needs-icon img {
    width: 28px;
    height: 28px;
  }
  .cloud-needs-content h3 {
    font-size: 1rem;
  }
  .cloud-needs-content p {
    font-size: 0.95rem;
  }
} 