@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background: #ffffff;
  color: #333;
}

.cloud-hero {
  background: linear-gradient(135deg, #c3d8f1, #87ceeb);
  color: #333;
  padding: 120px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cloud-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="cloud" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="3" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="30" r="2" fill="%23ffffff" opacity="0.05"/><path d="M10 60 Q20 50 30 60 Q40 70 50 60 Q60 50 70 60 Q80 70 90 60" stroke="%23ffffff" stroke-width="1" fill="none" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23cloud)"/></svg>');
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text {
  text-align: left;
}
.hero-text h2 {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}
.hero-text p {
  font-size: 1.4em;
  margin-bottom: 30px;
  opacity: 0.9;
  font-weight: 300;
}
.cta-button {
   background-color: #fbaf42;
  color: #154A91;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
   float: left;
}
.cta-button:hover {
    transform: translateY(-3px);
    
  box-shadow: 0 7px 20px rgba(251, 175, 66, 0.7);
}
.hero-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  transition: transform 0.4s ease;
}
.hero-image img:hover {
  transform: scale(1.05);
}

.cloud-section {
  background: #f9f9f9;
}
.cloud-section:nth-child(even) {
  background: #ffffff;
}
.cloud-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 40px;
}
.deployment-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 100px;
}
.option-card {
  background: white;
  border: 1px solid #e0e0e0;
  padding: 50px;
  border-radius: 20px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateY(30px);
}
.option-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f2542d, #f4852d);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.option-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  border-color: #f2542d;
}
.option-card:hover::before {
  transform: scaleX(1);
}
.option-card h3 {
  color: #333;
  font-size: 2em;
  margin-bottom: 30px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}
.option-card p {
  color: #666;
  font-size: 1.1em;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.option-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}
.option-card li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  line-height: 1.6;
  color: #555;
  font-weight: 300;
}
.option-card li::before {
  content: '☁';
  position: absolute;
  left: 0;
  color: #f2542d;
  font-size: 1.2em;
}
.process-timeline {
  margin-bottom: 100px;
}
.process-timeline h3 {
  text-align: center;
  font-size: 2.5em;
  margin: 0 auto 50px;  /* Centers the element horizontally */
  color: #333;
  border-bottom: 3px solid #800020;
  width: fit-content;
  padding-bottom: 4px;
}
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: -50px;
  bottom: 0;
  width: 2px;
  background: #800020;
  transform: translateX(-50%);
}
.timeline-item {
  position: relative;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
}
.timeline-marker {
  width: 20px;
  height: 20px;
  background: #800020;
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  transform: scale(0);
}
.timeline-marker.left {
  left: 47.5%;
  transform: translateX(-50%);
}
.timeline-marker.right {
  left: 50%;
  transform: translateX(-50%);
}
.timeline-content {
  background: #14213d;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  width: 45%;
  position: relative;
  opacity: 0;
  transform: translateY(50px);
}
.timeline-content.left {
  margin-right: auto;
  text-align: right;
}
.timeline-content.right {
  margin-left: auto;
  text-align: left;
}
.timeline-content h4 {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #fafafa;
}
.timeline-content p {
  color: #e0d8d8;
  margin: 0;
}
.quote-section {
  text-align: center;
  background: linear-gradient(135deg, #c3d8f1, #87ceeb);
  padding: 50px;
  border-radius: 20px;
  color: black;
  opacity: 0;
  transform: scale(0.9);
}
.quote-section p {
  font-style: italic;
  font-size: 1.4em;
  margin: 0;
  max-width: 800px;
  margin: 0 auto;
}

/* nav-bar */
.hori-selector{
    background: #aae0f6;
}

.hori-selector .right,
.hori-selector .left{
    background: #aae0f6;
}

#navbarSupportedContent>ul>li.active>a{
  color:black;
}

@media (max-width: 1024px) {
  .cloud-hero h2 {
    font-size: 3em;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  .hero-text {
    text-align: center;
  }
  .hero-text h2 {
    font-size: 3em;
  }
  .deployment-options {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .timeline::before {
    left: 30px;
  }
  .timeline-item {
    flex-direction: column;
    align-items: end;
  }
  .timeline-marker {
    display: none;
  }
  .timeline-content {
    width: calc(100% - 60px);
    margin-left: 60px;
    text-align: left !important;
  }
  .timeline-content.left {
    margin-right: 0;
  }
  .timeline-content.right {
    margin-left: 60px;
  }
}

@media (max-width: 480px) {
  .cloud-hero {
    padding: 60px 0 40px;
  }
  .hero-text h2 {
    font-size: 2em;
  }
  .hero-text p {
    font-size: 1.1em;
  }
  .cta-button {
    padding: 12px 24px;
    font-size: 1em;
    width: 100%;
  }
  .hero-image img {
    max-width: 250px;
  }
  .deployment-options {
    gap: 20px;
  }
  .option-card {
    padding: 20px;
  }
  .option-card h3 {
    font-size: 1.5em;
  }
  .process-timeline h3 {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .timeline-content {
    padding: 20px;
    width: calc(100% - 50px);
    margin-left: 50px;
  }
  .timeline-marker {
    display: none;
  }
  .timeline::before {
    left: 25px;
  }
  .quote-section {
    padding: 20px;
  }
  .quote-section p {
    font-size: 1.1em;
  }
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #8196D1 0%, #0E38AF 25%, #070F32 50%, #0E38AF 75%, #8196D1 100%);
    padding: 40px 0;
    text-align: center;
    width: fit-content;
    margin: 20px auto;
    border-radius: 20px;
}

.final-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fafafa;
}

.final-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #e0d8d8;
}

.cloud-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cloud-button.primary {
    background: #fca311;
    color: #070F32;
        padding: 15px 30px;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 30px;
}

.cloud-button.primary:hover {
    background: #e8852a;
}

.cloud-button.secondary {
    background: #eee;
    color: #070F32;
    font-weight: 400;
        padding: 15px 30px;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 30px;

}

.cloud-button.secondary:hover {
    background: white;
    color: #2c3e50;
}