 
.header {
  background: white !important;
}
.navbar {
  background: white !important;
}

body {
    font-size: 14px;
    line-height: 1.6;
    font-family: "Montserrat", sans-serif;
    background: #F8FAFC;
}

 
.section {
  width: 100%;
  padding: 60px 0;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero.section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f1f6ff, #ccdcf1);
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto 0 auto;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    position: relative;
    overflow: hidden;
}

.hero-text {
    flex: 1 1 400px;
    min-width: 320px;
    margin-right: 40px;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: bold;
    background: #2563eb;
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    line-height: 1.1;
}
.hero-text p {
    font-size: 1.2rem;
    color: #374151;
    line-height: 1.7;
    font-weight: 400;
}
.hero-image {
    flex: 1 1 360px;
    min-width: 300px;
    text-align: right;
    position: relative;
}
.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
    transition: transform 0.3s cubic-bezier(.4,2,.3,1), box-shadow 0.3s cubic-bezier(.4,2,.3,1);
}
.hero-image img:hover {
    transform: scale(1.045) translateY(-6px) rotate(-1deg);
    box-shadow: 0 32px 64px rgba(37,99,235,0.28);
}

.why-automate.section {
    background: white;
}
.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 12px;
    text-align: center;
}

.section-subtitle {
    font-size: 1rem;
    color: #374151;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 400;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
  
    margin: 0 auto;
}
.feature-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 16px;
    background: white;
    border: none;
    transition: all 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.1);
}
.feature-icon-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}
.feature-card:nth-child(1) .feature-icon-circle {
    background: #3B82F6;
    color: white;
}
.feature-card:nth-child(2) .feature-icon-circle {
    background: #10B981;
    color: white;
}
.feature-card:nth-child(3) .feature-icon-circle {
    background: #374151;
    color: white;
}
.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 16px;
    line-height: 1.3;
}
.feature-card p {
    color: #9CA3AF;
    line-height: 1.6;
    font-size: 1.1rem;
}


/* One Platform, Infinite Possibilities Section */
.one-platform.section {
    background: #F8FAFC;
}

.workflow-process {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.workflow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 120px;
}

.workflow-icon {
    width: 60px;
    height: 60px;
    background: #3B82F6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.workflow-icon .iconify {
    color: white;
    font-size: 2rem;
}

.workflow-icon:hover {
    background: #1D4ED8;
    transform: scale(1.1);
}

.workflow-step p {
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
    margin: 0;
    line-height: 1.3;
}

.workflow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
}




.where-it-works.section {
  
  background: linear-gradient(135deg, #f1f6ff, #ccdcf1);
}
.applications-grid {
    display: flex;
    gap: 48px;
    justify-content: center;
    flex-wrap: wrap;
}
.application-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(37,99,235,0.10);
    padding: 40px 30px 30px 30px;
    text-align: left;
    border: none;
    min-width: 320px;
    max-width: 380px;
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.22s, transform 0.22s;
    font-size: 1rem;
}
.application-card:hover {
    box-shadow: 0 20px 60px rgba(37,99,235,0.16);
    transform: translateY(-8px) scale(1.03);
}
.app-icon-circle {
    width: 56px;
    height: 56px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.app-icon-circle .iconify {
    color: #fff;
    font-size: 2rem;
}
.application-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
    margin-top: 0;
}
.application-card p {
    color: #374151;
    font-size: 1rem;
 
    line-height: 1.6;
}
.app-icons-row {
    display: flex;
    gap: 18px;
    margin-top: auto;
}
.app-icons-row .iconify {
    color: #3b82f6;
    font-size: 1.3rem;
    opacity: 0.95;
    transition: color 0.2s;
}
.app-icons-row .iconify:hover {
    color: #1d4ed8;
}

/* Why Choose Novara Section */
.why-choose.section {
    background: white;
}

.why-choose-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.benefit-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.benefit-content p {
    font-size: 1.1rem;
    color: #6B7280;
    margin: 0;
    line-height: 1.6;
}

.why-choose-image {
    flex: 1;
    text-align: center;
}

.benefit-image {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}




.superapp-bottom.section {
    text-align: center;
    background: linear-gradient(135deg, #2563eb 60%, #60a5fa 100%);
    padding: 10px 12px 10px 12px;
    width: 100%;
  }
  
  .superapp-cta {
    border-radius: 24px;
    max-width: 1200px;
    margin: 80px auto 60px auto;
    padding: 10px 12px 10px 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.08);
  }
  
  .superapp-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.4), transparent);
  }
  
  .superapp-cta h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 18px;
    color: #fff;
    letter-spacing: -0.5px;
    text-align: center;
  }
  
  .superapp-cta__button {
    display: inline-block;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #ffffff;
    font-weight: 600;
    font-size: 1.2rem;
    padding: 18px 48px;
    border-radius: 50px;
    text-decoration: none;
    margin-bottom: 20px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
      0 8px 32px rgba(37, 99, 235, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
  }
  
  .superapp-cta__button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
  }
  
  .superapp-cta__button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
      0 15px 40px rgba(37, 99, 235, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: #1a355b;
  }
  
  .superapp-cta__button:hover::before {
    left: 100%;
  }
  
  .superapp-cta__contact {
    color: #ffffff;
    font-size: 1.1rem;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }
  
  /* ========================================
     RESPONSIVE DESIGN - MOBILE FIRST
     ======================================== */
  
  /* Mobile Styles (up to 768px) */
  @media (max-width: 768px) {
    /* Global mobile padding */
    .section-inner {
      padding-left: 24px;
      padding-right: 24px;
    }
    
    /* Hero Section Mobile */
    .hero.section {
      padding: 40px 0;
    }
    
    .hero-content {
      flex-direction: column;
      text-align: left;
      gap: 40px;
      flex: none;
    }
    
    .hero-text {
      margin-right: 0;
      min-width: 0;
      text-align: left;
      flex: none;
    }
    
    .hero-text h1 {
      font-size: 2.5rem;
      text-align: left;
    }
    
    .hero-text p {
      font-size: 1.1rem;
      text-align: left;
    }
    
    .hero-image {
      text-align: center;
      min-width: 0;
      flex: none;
    }
    
    /* Section Mobile */
    .section {
      padding: 40px 0;
    }
    
    .section-title {
      font-size: 28px;
      
      margin-bottom: 12px;
    }
    
    .section-subtitle {
      font-size: 0.95rem;
 
     
    
    }
    
    /* Why Automate Section Mobile */
    .why-automate.section {
      padding: 40px 0;
    }
    
    .features-grid {
      grid-template-columns: 1fr;
      gap: 24px;
    }
    
    .feature-card {
      padding: 24px 20px;
      text-align: left;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
      background: #f8fafc;
      border-radius: 16px;
      border: 1px solid #e2e8f0;
    }
    
    .feature-header {
      display: flex;
      align-items: center;
      gap: 16px;
      width: 100%;
    }
    
    .feature-icon-circle {
      margin: 0;
      flex-shrink: 0;
      width: 48px;
      height: 48px;
      font-size: 2rem;
    }
    
    .feature-header h3 {
      font-size: 1rem;
      text-align: left;
      margin: 0;
      color: #374151;
      font-weight: 600;
      flex: 1;
    }
    
    .feature-card p {
      text-align: left;
      margin: 0;
      color: #2f2f2f;
      font-size: 0.9rem;
      line-height: 1.6;
    }
    
    /* One Platform Section Mobile */
    .one-platform.section {
      padding: 40px 0;
    }
    
    .workflow-process {
      flex-direction: column;
      gap: 24px;
    }
    
    .workflow-step {
      min-width: 0;
    }
    
    .workflow-arrow {
      transform: rotate(90deg);
      min-width: 0;
    }
    
    /* Where It Works Section Mobile */
    .where-it-works.section {
      padding: 40px 0;
    }
    
    .applications-grid {
      flex-direction: column;
      gap: 24px;
      align-items: center;
    }
    
    .application-card {
      padding: 28px 24px;
      min-width: 0;
      max-width: none;
      width: 100%;
      text-align: left;
      flex: none;
    }
    
    .app-header {
      display: flex;
      align-items: center;
      gap: 16px;
      
    }
    
    .app-icon-circle {
      margin-bottom: 0;
      flex-shrink: 0;
    }
    
    .application-card h3 {
      font-size: 1.2rem;
      text-align: left;
      margin-bottom: 12px;
      flex: 1;
    }
    
    .application-card p {
      font-size: 0.95rem;
      text-align: left;
 
    }
    
    .app-icons-row {
      justify-content: flex-start;
    }
    
    /* Why Choose Section Mobile */
    .why-choose.section {
      padding: 40px 0;
    }
    
    .why-choose-content {
      flex-direction: column;
      gap: 40px;
      text-align: left;
    }
    
    .why-choose-text {
      gap: 24px;
    }
    
    .benefit-item {
      gap: 16px;
    }
    
    .benefit-content h3 {
      font-size: 1rem;
      text-align: left;
    }
    
    .benefit-content p {
      font-size: 0.9rem;
      text-align: left;
    }
    
    .why-choose-image {
      text-align: center;
    }
    
    /* CTA Section Mobile */
    .superapp-bottom.section {
      padding: 40px 0;
    }
    
    .superapp-cta {
      margin: 40px auto 40px auto;
      padding: 40px 24px;
    }
    
    .superapp-cta h2 {
      font-size: 28px;
 
    }
    
    .superapp-cta__button {
      width: 100%;
      display: block;
      box-sizing: border-box;
      font-size: 1.1rem;
      padding: 16px 32px;
    }
  }
  
  /* Tablet Styles (769px - 1024px) */
  @media (min-width: 769px) and (max-width: 1024px) {
    .section-inner {
      padding-left: 32px;
      padding-right: 32px;
    }
    
    .hero-text h1 {
      font-size: 3rem;
    }
    
    .features-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .applications-grid {
      flex-wrap: wrap;
      justify-content: center;
    }
    
    .application-card {
      min-width: 300px;
      max-width: 400px;
    }
    
    .workflow-process {
      gap: 16px;
    }
  }
  
  /* Large Desktop Styles (1025px and above) */
  @media (min-width: 1025px) {
    .section-inner {
      padding-left: 0;
      padding-right: 0;
    }
  }
  
  /* Extra Small Mobile (up to 480px) */
  @media (max-width: 480px) {
    .section-inner {
      padding-left: 24px;
      padding-right: 24px;
    }
    
    .hero-text h1 {
      font-size: 2rem;
    }
    
    .hero-text p {
      font-size: 1rem;
    }
    
    .section-title {
      font-size: 24px;
    }
    
    .feature-card,
    .application-card {
      padding: 20px 16px;
    }
    
    .feature-card,
    .application-card {
      gap: 16px;
    }
    
    .feature-icon-circle {
      width: 40px;
      height: 40px;
      font-size: 1.8rem;
    }
    
    .app-icon-circle {
      width: 48px;
      height: 48px;
    }
    
    .app-icon-circle .iconify {
      font-size: 1.5rem;
    }
    
    .feature-card h3,
    .application-card h3 {
      font-size: 1.2rem;
    }
    
    .feature-card p,
    .application-card p {
      font-size: 0.85rem;
    }
    
    .benefit-content h3 {
      font-size: 0.95rem;
    }
    
    .benefit-content p {
      font-size: 0.85rem;
    }
    
    .superapp-cta h2 {
      font-size: 24px;
    }
    
    .superapp-cta__button {
      font-size: 1rem;
      padding: 14px 28px;
    }
  } 
  



