* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: white;
}

/* Hero Section Container */
.hero-section {
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 643;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Image */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 2rem;
    text-align: center;
}

/* Hero Title */
.hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: clamp(40px, 8vw, 70px);
    line-height: 1;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    letter-spacing: 0%;
    max-width: 90%;
}

/* Hero Subtitle */
.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: clamp(16px, 3vw, 22px);
    line-height: 1.36;
    color: #FFFFFF;
    max-width: 90%;
    letter-spacing: 0%;
}

/* Tablet Devices (768px to 1024px) */
@media (max-width: 1024px) {
    .hero-section {
        aspect-ratio: auto;
        min-height: 500px;
    }

    .hero-title {
        font-size: clamp(36px, 7vw, 60px);
        margin-bottom: 1.2rem;
    }

    .hero-subtitle {
        font-size: clamp(14px, 2.5vw, 20px);
    }
}

/* Mobile Devices (480px to 767px) */
@media (max-width: 767px) {
    .hero-section {
        aspect-ratio: auto;
        min-height: 400px;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .hero-title {
        font-size: clamp(28px, 6vw, 48px);
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: clamp(12px, 2.2vw, 18px);
        line-height: 1.4;
    }
}

/* Small Mobile Devices (320px to 479px) */
@media (max-width: 479px) {
    .hero-section {
        aspect-ratio: auto;
        min-height: 350px;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-title {
        font-size: clamp(24px, 5vw, 36px);
        margin-bottom: 0.8rem;
    }

    .hero-subtitle {
        font-size: clamp(11px, 2vw, 14px);
        line-height: 1.3;
    }
}








/* ========================================
   CLOUD SECTION - LIGHT BACKGROUND
   ======================================== */

.cloud-section-wrapper {
  width: 100%;
  background: #ffffff;
  padding: 80px 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.cloud-section-container {
  width: 80%;
  max-width: 1400px;
  position: relative;
}

/* Header with horizontal line, circle, and "Our Works" text in one row */
.cloud-header-top {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.cloud-horizontal-line {
  width: 530px;
  height: 1px;
  background: #000000;
  flex-shrink: 0;
}

.cloud-circle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cloud-circle-outer {
  width: 24.32px;
  height: 24.32px;
  border: 1px solid #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cloud-circle-inner {
  width: 16px;
  height: 16px;
  background: #000000;
  border-radius: 50%;
}

.cloud-our-works-label {
  font-family: "Roboto Mono", monospace;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  color: #000000;
  margin: 0;
  white-space: nowrap;
}

/* Heading and button row */
.cloud-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.cloud-main-heading {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 46px;
  line-height: 60px;
  color: #000000;
  margin: 0;
}

.cloud-view-all-button {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 16px;
  color: #000000;
  border: 1px solid #000000;
  border-radius: 6px;
  padding: 16px 24px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cloud-view-all-button:hover {
  background: #000000;
  color: #ffffff;
}

/* Case study cards grid */
.cloud-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.cloud-case-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.cloud-card-image-wrapper {
  width: 100%;
  height: 368px;
  overflow: hidden;
  border-radius: 10px;
}

.cloud-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cloud-card-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 38px;
  letter-spacing: -2%;
  color: #000000;
  margin: 20px 0 15px 0;
  padding: 0 15px;
}

.cloud-card-description {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -2%;
  color: #000000b2;
  margin: 0 0 20px 0;
  padding: 0 15px;
  flex-grow: 1;
}

.cloud-card-read-more {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 38px;
  letter-spacing: -2%;
  color: #000000;
  text-decoration: none;
  padding: 0 15px 20px 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.cloud-card-read-more:hover {
  color: #0470d2;
}

.cloud-arrow-icon {
  color: #0470d2;
  font-size: 28px;
}

/* ========================================
   INTELLIGENT AUTOMATION SECTION - GRADIENT + DARK BACKGROUND
   ======================================== */

.automation-section-wrapper {
  width: 100%;
 background-color: #000000;
  padding: 80px 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.automation-section-container {
  width: 80%;
  max-width: 1400px;
  position: relative;
}

/* Header with horizontal line, circle, and "Our Works" text in one row */
.automation-header-top {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.automation-horizontal-line {
  width: 530px;
  height: 1px;
  background: #ffffff;
  flex-shrink: 0;
}

.automation-circle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.automation-circle-outer {
  width: 24.32px;
  height: 24.32px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.automation-circle-inner {
  width: 16px;
  height: 16px;
  background: #ffffff;
  border-radius: 50%;
}

.automation-our-works-label {
  font-family: "Roboto Mono", monospace;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  color: #ffffff;
  margin: 0;
  white-space: nowrap;
}

/* Heading and button row */
.automation-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.automation-main-heading {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 46px;
  line-height: 60px;
  color: #ffffff;
  margin: 0;
}

.automation-view-all-button {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 16px;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 6px;
  padding: 16px 24px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.automation-view-all-button:hover {
  background: #ffffff;
  color: #000000;
}

/* Case study cards grid */
.automation-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.automation-case-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
}

.automation-card-image-wrapper {
  width: 100%;
  height: 368px;
  overflow: hidden;
  border-radius: 10px;
}

.automation-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.automation-card-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 38px;
  letter-spacing: -2%;
  color: #ffffff;
  margin: 20px 0 15px 0;
  padding: 0 15px;
}

.automation-card-description {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -2%;
  color: #ffffffb2;
  margin: 0 0 20px 0;
  padding: 0 15px;
  flex-grow: 1;
}

.automation-card-read-more {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 38px;
  letter-spacing: -2%;
  color: #ffffff;
  text-decoration: none;
  padding: 0 15px 20px 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.automation-card-read-more:hover {
  color: #00caff;
}

.automation-arrow-icon {
  color: #00caff;
  font-size: 28px;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet (768px - 1199px) */
@media (max-width: 1199px) {
  .cloud-section-container,
  .automation-section-container {
    width: 85%;
  }

  .cloud-horizontal-line,
  .automation-horizontal-line {
    width: 350px;
  }

  .cloud-main-heading,
  .automation-main-heading {
    font-size: 36px;
    line-height: 50px;
  }

  .cloud-cards-grid,
  .automation-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .cloud-card-title,
  .automation-card-title {
    font-size: 24px;
    line-height: 32px;
  }

  .cloud-card-description,
  .automation-card-description {
    font-size: 18px;
    line-height: 24px;
  }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
  .cloud-section-wrapper,
  .automation-section-wrapper {
    padding: 50px 0;
  }

  .cloud-section-container,
  .automation-section-container {
    width: 90%;
  }

  .cloud-header-top,
  .automation-header-top {
    flex-wrap: wrap;
    margin-bottom: 30px;
  }

  .cloud-horizontal-line,
  .automation-horizontal-line {
    width: 200px;
  }

  .cloud-heading-row,
  .automation-heading-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
  }

  .cloud-main-heading,
  .automation-main-heading {
    font-size: 28px;
    line-height: 40px;
  }

  .cloud-view-all-button,
  .automation-view-all-button {
    width: 100%;
    text-align: center;
  }

  .cloud-cards-grid,
  .automation-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cloud-card-title,
  .automation-card-title {
    font-size: 22px;
    line-height: 28px;
  }

  .cloud-card-description,
  .automation-card-description {
    font-size: 16px;
    line-height: 22px;
  }

  .cloud-card-read-more,
  .automation-card-read-more {
    font-size: 18px;
  }
}

/* Small Mobile (320px - 480px) */
@media (max-width: 480px) {
  .cloud-section-container,
  .automation-section-container {
    width: 95%;
  }

  .cloud-header-top,
  .automation-header-top {
    gap: 10px;
  }

  .cloud-horizontal-line,
  .automation-horizontal-line {
    width: 120px;
  }

  .cloud-our-works-label,
  .automation-our-works-label {
    font-size: 16px;
  }

  .cloud-main-heading,
  .automation-main-heading {
    font-size: 24px;
    line-height: 32px;
  }

  .cloud-card-image-wrapper,
  .automation-card-image-wrapper {
    height: 250px;
  }

  .cloud-card-title,
  .automation-card-title {
    font-size: 20px;
    line-height: 26px;
    margin: 15px 0 10px 0;
  }

  .cloud-card-description,
  .automation-card-description {
    font-size: 14px;
    line-height: 20px;
  }
}













/* lets collab start */
  .vision-banner-container {
    background-color: #000000;
    padding: 0rem 0rem 0rem 4rem;
    position: relative;
    overflow: hidden;
    min-height: 180px;
    
  }
  
  /* Top section styles */
  .banner-content {
    max-width: 1400px;
    min-height: 200px;
    margin: auto;
    position: relative;
  }
  
  .top-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    /* margin-bottom: 1.5rem; */
  }
  
  .horizontal-line {
    width: 400px;
    height: 2px;
    background-color: #ffffff;
    margin-top: 1rem;
  }
  
  .collaborate-section {
    display: flex;
    align-items: center;
    gap: 0.40rem;
  }
  
  .circle-empty {
    width: 20px;
    height: 20px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    position: relative;
  }
  
  .circle-filled {
    width: 12px;
    height: 12px;
    background-color: #ffffff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
  }
  
  .collaborate-text {
    color: #ffffff;
    font-size: 1rem;
    margin-left: 0.5rem;
    font-family: 'Roboto Mono';
  }
  
  /* Main content styles */
  .main-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 200px;
    /* gap: 2rem; */
  }
  
  .vision-heading {
    color: #ffffff;
    font-size: 2rem;
    font-family: 'Poppins';
    font-weight: 600;
    max-width: 100%;
    line-height: 1.2;
    margin: 25px 0px;
    margin-bottom: 40px;
  }
  
  .cta-section {
    display: flex;
    align-items: center;
    gap: 2rem;
    height: 100%;
  }
  
  .demo-button {
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 0.40rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-family: 'Poppins';
  }
  
  .demo-button:hover {
    background-color: #ffffff;
    color: #000000;
  }
  
  .decorative-pattern {
    width: 150px;
    height: auto;
  
    object-fit: contain;
  }
  
  /* Responsive styles */
  @media screen and (max-width: 1024px) {
    .vision-heading {
        font-size: 2.8rem;
    }
    
    .vision-banner-container {
        padding: 2rem;
        padding-bottom: 4rem;
    }
  }
  
  @media screen and (max-width: 768px) {
    .main-content {
        flex-direction: column;
        align-items: flex-start;
    }
  
    .vision-heading {
        font-size: 2.2rem;
        max-width: 100%;
    }
  
    .cta-section {
        width: 100%;
        justify-content: space-between;
    }
  
    .decorative-pattern {
        width: 80px;
    }

    
  }
  
  @media screen and (max-width: 480px) {
    .vision-banner-container {
        padding: 1.5rem;
        padding-bottom: 4rem;
    }
  
    .horizontal-line {
        width: 80px;
    }
  
    .vision-heading {
        font-size: 1.8rem;
    }
  
    .collaborate-text {
        font-size: 0.9rem;
    }
  
    .circle-empty,
    .circle-filled {
        width: 20px;
        height: 20px;
    }
  
    .demo-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
  
    .decorative-pattern {
        width: 60px;
    }
  }















  /* form section start */
.contact-container {
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .contact-content {
    width: 100%;
  }
  
  .contact-heading {
    font-size: 36px;
    font-weight: 600;
    color: #1a1a1a;
    
    font-family: 'Poppins';
  }
  
  .contact-description {
    font-size: 16px;
    line-height: 1.3;
    color: #4a4a4a;
    margin-bottom: 40px;
    font-family: 'Lato';
  }
  
  .contact-form {
    width: 100%;
   
  }
  
  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 30px;
  }
  
  .form-left,
  .form-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .form-group {
    width: 100%;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 15px 16px;
    border: none;
    border-radius: 4px;
    background-color: #f1f1f1;
    font-size: 16px;
    color: #333;
  }
  
  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: #232A3F;
    font-family: 'Poppins';
  }
  
  .form-group textarea {
    height: 150px;
    resize: vertical;
  }
  
  .form-submit {
    margin-top: 20px;
  }
  
  .submit-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    border: 1.5px solid #0470D2;
    border-radius: 4px;
    color: #0470D2;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .submit-button:hover {
    background-color: rgba(0, 123, 255, 0.1);
  }
  
  .alert-popup {
    display: none;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #4caf50;
    color: white;
    padding: 16px 24px;
    border-radius: 4px;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .alert-content {
    font-size: 16px;
  }
  
  @media (max-width: 768px) {
    .contact-container {
      padding: 40px 20px;
    }
  
    .form-grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }
  
    .contact-heading {
      font-size: 28px;
    }
  
    .contact-description br {
      display: none;
    }
  }
  
  @media (max-width: 480px) {
    .contact-container {
      padding: 30px 15px;
    }
  
    .contact-heading {
      font-size: 24px;
    }
  
    .form-group input,
    .form-group textarea {
      padding: 10px 14px;
      font-size: 14px;
    }
  }
  
  