.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 16px;
}


.footer {
  background: var(--color-blue-900);
  padding-block: 24px;
}

.movecenter {
  justify-content: center;
  
}

.backgroundColorz{

  background-color:#FC9E25;
}

.footer .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page-padding {
  padding-left: 5rem;
  padding-right: 5rem;
}

/* larger screens */
@media (min-width: 992px) {
  .page-padding {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

.site-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center; /* horizontal centering */
  justify-content: center;
  width: 100%;
  max-width: 1100px;       /* desktop fixed width like Framer example */
  margin:0 auto;
  box-sizing: border-box;
}

.site-inner {
  width: 100%;
  max-width: 1000px;
  padding: 0 2rem;     /* side padding for inner content */
  box-sizing: border-box;
}

/* medium screens */
@media (min-width: 810px) and (max-width: 1199px) {
  .site-wrapper { max-width: 810px; }
  .site-inner { max-width: 810px; padding: 0 1.5rem; }
}

/* small screens */
@media (max-width: 800px) {
  .site-wrapper { max-width: 100%; }
  .site-inner { max-width: 100%; padding: 0 1rem; }
}

/* welcome section images */
.welcome-images {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* increased size for the three feature images */
.welcome-images img {
  flex: 1 1 calc(33.333% - 0.66rem); /* 3-up layout */
  max-width: calc(33.333% - 0.66rem);
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 1.25rem; /* breathing room */
  min-width: 180px; /* prevents images from becoming too small */
}

/* on very wide screens you can allow fixed larger images (optional) */
@media (min-width: 1400px) {
  .welcome-images img {
    flex: 0 0 420px;
    max-width: 420px;
  }
}

/* stack vertically on small screens */
@media (max-width: 767px) {
  .welcome-images {
    flex-direction: column;
    align-items: center;
  }
  .welcome-images img {
    width: 100%;
    max-width: 420px;
    flex: 0 0 auto;
    margin-bottom: 1rem;
    min-width: 0;
  }
}

.three-cols img {
  max-width: 283px;   /* increase size of the three feature images */
  width: 100%;
  height: auto;
  margin-bottom: 0.75rem;
}
@media (max-width: 720px) {
  .three-cols img { max-width: 320px; }
}

/* stronger section title */
.section-title {
  font-weight: 800;      /* very bold */
  font-size: 2.25rem;    /* adjust size if needed */
  line-height: 1.1;
  letter-spacing: 0.2px;
}

.textcolorPurple{
  color: #6544BE;
}

.btn-xl {
    padding: 1.25rem 2.25rem;
    font: #6544BE;
    font-size: 0.95rem;
    font-weight: 500;      
    border: none;
    border-radius: 10rem;
}

.round-button{
  padding-top: 1.25rem;
  font: #6544BE;
  font-size: 0.85rem;
  font-weight: 300;    
  border: none;
  justify-content: center; 
  height: 110px;
  width: 110px;
  border-radius: 60px;

}



/* Carousel (feature screenshots) styles */
#featureCarousel {
  position: relative;
  width: 100%;
  margin: 0 auto;
  /* Reserve a modest amount of bottom space for indicators & controls.
     Reduced from 80px so dots are closer to the image. */
  padding-bottom: 1px;
}

#featureCarousel .carousel-inner {
  /* Keep Bootstrap's carousel layout. Avoid flex which makes multiple
     slides appear side-by-side causing the "half-image + white space" bug. */
  position: relative;
  overflow: hidden;
}

#featureCarousel .carousel-item {
  text-align: center;
}

/* Make carousel images larger and preserve aspect ratio */
#featureCarousel .carousel-item img {
  /* Make images fill the carousel width while preserving aspect ratio.
     Use max-height to limit vertical growth. */
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 64vh; /* scale with viewport for larger presentation */
  object-fit: contain;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* Ensure only the active slide is visible (matches Bootstrap behavior).
   This prevents multiple slides from being visible at once if other rules
   accidentally expose them. */
#featureCarousel .carousel-item { display: none; }
#featureCarousel .carousel-item.active,
#featureCarousel .carousel-item-next,
#featureCarousel .carousel-item-prev {
  display: block;
}

/* Fallback pixel max-heights for predictable behavior */
@media (min-width: 992px) {
  #featureCarousel .carousel-item img { max-height: 540px; }
}
@media (min-width: 1200px) {
  #featureCarousel .carousel-item img { max-height: 640px; }
}
@media (max-width: 767px) {
  #featureCarousel .carousel-item img { max-height: 320px; }
}

#featureCarousel .carousel-item {
  transition: opacity 1.8s ease-in-out;
}

@media (min-width: 1200px) {
  /* a little more room on wide screens */
  #featureCarousel { padding-bottom: 1rem; }
}

/* Small refinement when carousel is inside constrained container */
#featureCarousel .d-block {
  max-width: 100%;
}


#featureCarousel {
  padding-bottom: 0 !important;
}


/* Targeted spacing for the download buttons that follow the carousel */
.download-buttons {
 margin-top: 0 !important;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}


@media (min-width: 576px) {
  .site-wrapper {
    max-width: 540px;
  }

  .movecenter{
    margin: 4;
  }
}

@media (min-width: 768px) {
  .site-wrapper {
    max-width: 720px;
  }
  .download-buttons { margin-top: 28px; }
}

@media (min-width: 992px) {
  .site-wrapper {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .site-wrapper {
    max-width: 1140px;
  }
}

/* Responsive phone support: iPhone SE/XR/12 Pro/14 Pro Max and modern Android widths */
html {
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  padding: 0 clamp(0.75rem, 3.5vw, 3rem);
}

img,
video {
  max-width: 100%;
  height: auto;
}

.navbar {
  padding-left: 0;
  padding-right: 0;
}

.navbar .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.navbar-collapse {
  flex-basis: 100%;
}

.section-title {
  overflow-wrap: anywhere;
}

.btn-xl {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 0.35rem;
  max-width: 100%;
  min-height: 48px;
  text-align: center;
  white-space: normal;
}

#featureCarousel {
  max-width: 100%;
}

.social img {
  max-height: 86px;
  object-fit: contain;
}

.site-footer {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 2.5rem;
  padding: 2rem clamp(1rem, 4vw, 3rem);
  border-top: 1px solid rgba(101, 68, 190, 0.16);
  overflow-wrap: anywhere;
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}

.footer-row {
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  row-gap: 1rem;
}

.footer-logo,
.footer-spacer {
  display: flex;
  align-items: center;
}

.footer-logo {
  justify-content: center;
}

.footer-spacer {
  justify-content: flex-end;
}

.footer-contact p,
.footer-copy h5 {
  margin-bottom: 0.35rem;
}

.footer-copy {
  margin-top: 1.25rem;
  text-align: center;
}

@media (max-width: 575.98px) {
  body {
    padding-left: max(0.75rem, env(safe-area-inset-left));
    padding-right: max(0.75rem, env(safe-area-inset-right));
  }

  .site-inner {
    padding-left: 0;
    padding-right: 0;
  }

  .container-fluid {
    padding-left: 0;
    padding-right: 0;
  }

  .row {
    margin-left: 0;
    margin-right: 0;
  }

  .welcome {
    padding-right: 0 !important;
  }

  .section-title {
    font-size: clamp(1.65rem, 8vw, 2.1rem);
    line-height: 1.15;
  }

  .h4,
  h4 {
    font-size: 1.05rem;
    line-height: 1.45;
  }

  #featureCarousel {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  #featureCarousel .carousel-item img {
    max-height: 58vh;
    border-radius: 8px;
  }

  .download-buttons,
  .justify-content-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .btn-xl {
    width: 100%;
    max-width: 22rem;
    padding: 0.85rem 1rem;
    border-radius: 999px;
  }

  .pl-4.p-4.justify-content-center.m-4 {
    margin: 0.75rem 0 !important;
    padding: 0.75rem 0 !important;
  }

  .social .row {
    row-gap: 1.5rem;
  }

  .social .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .social .ml-4,
  .social .pl-2,
  .social .mt-4 {
    margin-left: 0 !important;
    padding-left: 0 !important;
  }

  .site-footer {
    margin-top: 1.5rem;
    padding: 1.5rem max(0.75rem, env(safe-area-inset-left)) 1.5rem max(0.75rem, env(safe-area-inset-right));
  }

  .site-footer .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: center;
  }

  .footer-logo,
  .footer-spacer {
    justify-content: center;
  }
}

@media (max-width: 374.98px) {
  body {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }

  .navbar-brand img {
    width: 44px;
    height: 44px;
  }

  .section-title {
    font-size: 1.55rem;
  }

  .section-title img {
    width: 72px;
    height: 72px;
  }

  .btn-xl {
    font-size: 0.9rem;
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }
}
