/* ====== GENERAL/BODY STYLES ====== */
html, body {
  overflow-x: hidden;
  width: 100%;
  margin: 0px;
  padding: 0px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0px;
  padding: 0px;
  font-family: 'Inter', Arial, sans-serif;
  background: #F8F9FA;
  color: #1e2833;
  overflow-x: hidden;
}

.demo-btn:hover, .demo-btn:focus {
  background: #ff7100;
  color: #fff;
  box-shadow: 0 2px 10px rgba(255,136,0,0.18);
}

/* Adds clear separation and max width*/
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.container-breadcrumb {
    margin-bottom: 0;
    /* Optional: add top margin for consistency */
}
.container-main {
  margin-left: 86px;
  margin-right: 86px;
}

/* Responsive: margin for mobile screens */
@media (max-width: 700px) {
  .container-main {
    margin-left: 20px;
    margin-right: 20px;
  }
}


.service-banner {

    width: 100%;
    height: 356px;
    background: #0970b3; /* Match blue from your image */
    box-sizing: border-box;
    margin-top: 50px;
    margin-bottom: 24px;
    padding: 0 32px 0 32px;  /* Remove extra bottom padding */
    align-items: end;
}

.service-banner-breadcrumb {
    color: #fff;
    font-size: 16px;
    padding: 40px 32px 0 32px;
}

.service-banner-breadcrumb a {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
}

.service-banner-main {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 32px 0px 32px;
    min-height: 170px;
}

.service-banner-title {
    flex: 1 1 0;
    display: flex;
    align-items: flex-end;
}

.service-banner-title h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    margin: 0;
    line-height: 1.1;
}
.service-desc p {
    font-size: 16px;
}

.service-banner-img {
    flex-shrink: 0;
    margin-left: 16px;
    margin-bottom: -8px;
    width: 250px;
    height: 250px;
}


.service-banner-img-data {
    width: 100px;
    width: auto;
    display: block;
    border-radius: 12px 12px 32px 32px;
}

@media (max-width: 800px) {

    .service-banner-main  {
    width: 100%;
    height: 356px;
    background: #0970b3;
    box-sizing: border-box;
    margin-bottom: 24px;
    padding: 18px 16px 0 32px;
    display: flex;
    flex-direction: column;
}

.service-banner-breadcrumb {
    color: #fff;
    font-size: 16px;
    margin-top: 16px;    
    margin-bottom: 0;
    padding-left: 0px;
    padding-right: 0px;
}

.service-banner-breadcrumb a {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
}

.service-banner-main {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0;
    flex: 1;
}

@media (max-width: 800px) {
    .service-banner {
        height: auto;
        padding: 18px 20px;
    }
    .service-banner-main {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 0 0 0;
    }
    .service-banner-img {
        margin-left: 0;
        margin-top: 18px;
        align-self: center;
        margin-bottom: 0;
    }
    .service-banner-title h1 {
        font-size: 1.8rem;
    }
}

}

.custom-app-highlight {
  margin: 28px 0 0 0;
  background: #0065A8;
  color: #fff;
  border-radius: 7px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 24px;
  font-size: 1rem;
  font-weight: 500;
  box-sizing: border-box;
  margin-left: 85px;
  margin-right: 85px;
  margin-bottom: 48px;
}

/* Responsive: on small screens, stack vertically */
@media (max-width: 700px) {
  .custom-app-highlight {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 22px;
    margin-left: 20px;
    margin-right: 20px;

  }
}


.section-spacing {
  max-width: 1100px;
  margin: 30px auto;
  padding: 32px 32px 28px 32px;
  background: #f8f9fa;
  border-radius: 8px;
  box-sizing: border-box;
}

.section-spacing p {
  font-size: 1.12rem;
  color: #222;
  margin-bottom: 22px;
  line-height: 1.7;
}

.section-spacing ul {
  margin: 0 0 0 24px;
  padding-left: 20px;
  font-size: 1.08rem;
}

.section-spacing li {
  margin-bottom: 14px;
  line-height: 1.6;
}

.support-tabs {
  display: flex;
  gap: 8px;
  margin: 16px 0 28px 0;
  flex-wrap: wrap;
  padding-right: 70px;
  padding-left: 70px;
}

.tab {
  background: #e8f3fd;
  color: #1283d8;
  border: none;
  border-radius: 6px;
  padding: 10px 18px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.tab.active {
  background: #1283d8;
  color: #fff;
}

.tab-content {
  padding-right: 70px;
  padding-left: 70px;
  margin-bottom: 24px;
}

.tab-content h2 {
  color: #1283d8;
  font-size: 2rem;
  margin-bottom: 16px;
  font-weight: bold;
}

.tab-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #434343;
}

@media (max-width: 700px) {
  .support-tabs {
    padding: 0 20px;
  }
  
  .tab {
    padding: 8px 14px;
    font-size: 0.95rem;
  }
  
  .tab-content {
    padding: 0 20px;
  }
  
  .tab-content h2 {
    font-size: 1.5rem;
  }
  
  .tab-content p {
    font-size: 14px;
  }
}

.service-desc ul {
  list-style: none;  /* Remove default bullets */
  padding-left: 0;
  margin: 20px 0;
}

.service-desc li {
  position: relative;
  padding-left: 22px;   /* Space for custom dot */
  padding-top: 4px;     /* 4px top padding */
  padding-bottom: 4px;  /* 4px bottom padding */
  font-size: 1.07rem;
}

/* Custom dot at start of bullet point */
.service-desc li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #222;      /* Dot color (change as needed) */
  border-radius: 50%;    /* Perfect circle */
}



.demo-btn {
  white-space: nowrap;
  background: #ff8800;
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 14px;
text-decoration: none;
  padding: 0.7rem 2.1rem;
  transition: background 0.18s, box-shadow 0.18s;
  box-shadow: 0 1px 6px rgba(255,136,0,0.14);
  letter-spacing: 0.01em;
  display: inline-block; /* Prevent block wrapping */
  vertical-align: middle;
}
.demo-btn:hover, .demo-btn:focus {
  background: #ff7100;
  color: #fff;
  box-shadow: 0 2px 10px rgba(255,136,0,0.18);
}


/* Features grid */
.infra-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 24px 0 0 0;
}
.infra-feature {
  background: #f6faff;
  border-radius: 7px;
  padding: 14px 16px;
  box-shadow: 0 1px 6px rgba(36, 72, 97, 0.04);
}
.infra-feature-title {
  display: block;
  color: #1283d8;
  font-weight: 600;
  font-size: 1.08rem;
  margin-bottom: 7px;
}
.infra-feature p {
  font-size: 0.97rem;
  margin: 0;
}

.service-steps-container {
  margin: 22px 85px 24px 85px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.service-step {
  display: flex;
  gap: 14px;
  background: #f6faff;
  border-radius: 7px;
  padding: 14px 16px;
  align-items: flex-start;
  box-shadow: 0 1px 6px rgba(36, 72, 97, 0.04);
}

.step-icon img {
  height: 34px;
  width: 34px;
  flex-shrink: 0;
  margin-top: 5px;
}

.step-title {
  color: #1283d8;
  font-weight: 600;
  font-size: 1rem;
  display: block;
  margin-bottom: 5px;
}

.service-step p {
  font-size: 0.97rem;
  margin: 0;
  line-height: 1.6;
  color: #434343;
}

@media (max-width: 700px) {
  .service-steps-container {
    margin: 22px 20px 24px 20px;
    grid-template-columns: 1fr;
    gap: 14px;
  }
  
  .service-step {
    padding: 12px 14px;
  }
  
  .step-title {
    font-size: 0.95rem;
  }
  
  .service-step p {
    font-size: 0.9rem;
  }
}


/* ========== FOOTER ============ */
.footer-new {
  background: linear-gradient(180deg, #3A5F79 0%, #233441 100%);
  font-size: 15px;
  padding: 0;
  margin: 0;
  border: none;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  box-sizing: border-box;
}

/* Layout main row */
.footer-new-main {
  display: flex;
  flex-wrap: wrap;
  margin: 0px;
  padding: 34px 26px 10px 26px;
  justify-content: space-between;
  align-items: flex-start;
}

/* Brand, left column */
.footer-brand {
  min-width: 240px;
  flex: 1.7 1 300px;
  margin-right: 44px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo-img {
  height: 36px;
  width: auto;
  vertical-align: middle;
}
.footer-brand-name {
  font-size: 2.1rem;
  color: #b8dafd;
  font-weight: bold;
  letter-spacing: 0.03em;
}
.footer-brand-desc {
  font-size: 1.09rem;
  color: #e6f8ff;
  margin: 14px 0 2px 0;
  line-height: 1.6;
}
.footer-contact-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 10px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.09rem;
  color: #fff;
  font-weight: 500;
}
.footer-contact-item svg { flex-shrink: 0; }

/* Footer links */
.footer-links-row {
  display: flex;
  flex: 4 1 0%;
  gap: 44px;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
}
.footer-links-col {
  min-width: 150px;
  flex: 1 1 0;
}
.footer-links-col h4 {
  color: #fff;
  font-size: 1.13rem;
  font-weight: bold;
  margin-bottom: 16px;
}
.footer-links-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links-col ul li {
  margin-bottom: 8px;
}
.footer-links-col ul li a {
  color: #d7e8f7;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.18s;
}
.footer-links-col ul li a:hover {
  color: #ff7700;
  text-decoration: underline;
}

/* Divider line */
.footer-divider {
  width: 100vw;
  height: 1.5px;
  background: #959595;
  margin-top: 16px;
  border: none;
  display: block;
  position: relative;
}

/* Address bar */
.footer-addresses-row {
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0;
  padding: 30px 0;
  background: transparent;
}
.footer-address-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  min-width: 180px;
  max-width: 300px;
  margin: 0 22px;
  font-size: 1rem;
}
.footer-address-title {
  color: #ff7700;
  font-weight: bold;
  font-size: 1.06rem;
  margin-bottom: 2px;
}
.footer-address-info {
  color: #fff;
  line-height: 1.5;
  font-size: 0.97rem;
}
.footer-address-divider {
  display: inline-block;
  height: 90px;
  width: 1.7px;
  background: #f9f9f9;
  margin: 0 24px;
  align-self: center;
  border-radius: 2px;
}

/* Footer bar bottom */
.footer-new-bar {
  width: 100%;
  background: none;
  color: #d7e8f7;
  font-size: 15px;
  padding: 18px 0 10px 0;
  letter-spacing: 0.01em;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
    gap: 4px;
}
.footer-brand-highlight {
  color: #ff7700;
  font-weight: bold;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 1100px) {
  .footer-new-main {
    flex-direction: column;
    gap: 24px;
    padding: 34px 20px 0 20px;
    align-items: flex-start;
  }
  .footer-brand {
    margin-right: 0;
  }
  .footer-links-row {
    flex-direction: column;
    gap: 22px;
    width: 100%;
    margin-top: 20px;
  }
}
@media (max-width: 800px) {
  .footer-brand-name { font-size: 1.25rem; }
  .footer-new-main { padding: 22px 0 0 0; }
  .footer-links-col h4 { font-size: 15px; margin-bottom: 10px; }
  .footer-address-title { font-size: 1rem; }
  .footer-address-info { font-size: 0.97rem; }
  .footer-brand-desc { font-size: 0.94rem; }
  .footer-new-bar { font-size: 15px; }
}
@media (max-width: 700px) {
  .footer-new {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
  .footer-new-main {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 16px 0 0 0 !important;
    padding-bottom: 0 !important;
  }
  .footer-brand {
    margin-bottom: 0 !important;
    padding-bottom: 24px !important;
    flex: initial !important;
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }
  .footer-links-row {
    flex-direction: column !important;
    gap: 16px !important;
    width: 100% !important;
    margin-top: 0 !important;
  }
  .footer-addresses-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 17px !important;
    padding: 18px 0 8px 0 !important;
  }
  .footer-address-divider {
    display: none !important;
  }
  .footer-address-block {
    margin: 5px 0 !important;
    max-width: 95vw !important;
  }
}
