body {
  background: #f5f6fa;
  font-family: 'Poppins',"Segoe UI";
  margin: 0;
  color: #20232a;
  /* display: flex;
  flex-direction: column;
  justify-content: center; */
  overflow-x:hidden;
}

.container{
  max-width: 1440px;
  padding: 0 20px;
}
.navbar-custom {
    background: white;
    width:100%;
    position:sticky;
    top: 0;
    left:0;
    z-index: 300;
    box-shadow: 0 4px 10px rgba(150, 12, 12, 0.08);
    padding-left: 20px;
    padding-right: 20px;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 1px;

}

.nav-link {
    font-weight: 500;
    margin-right: 10px;
    color: black;
    font-weight: 400;
}

.nav-link:hover {
    color: #195097 !important;
}
.active{
    color: #195097!important;
    font-weight: 500;
}

.services-hero {
    /* margin-left: 20px;
    margin-right: 20px; */

  background: #23283A;
  color: #fff;
  
  text-align: center;
  padding: 100px 0px;
  /* margin: 24px auto 26px auto; */
  width:100%;
  box-shadow: 0 2px 14px rgba(44,52,140,0.10);
}
.services-hero h2 {
  margin-bottom: 40px;
  font-size: 2rem;
}
.services-hero p {
  max-width: 750px;
  margin: 0 auto;
  font-size: 1.14rem;
}

.services-features {
  margin:auto;

    /* margin-left: 20px;
    margin-right: 20px; */
  background: #ffffff;
  color: gray;
  width: 100%;
  padding: 32px 26px;
  /* box-shadow: 0 2px 12px rgba(44,52,140,0.10); */
}
.services-features h3 {
  text-align: center;
  margin-bottom: 24px;
  color:#263874;
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}
.feature-card {
  background-color: #f9fafc;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(44,52,140,0.04);
  flex: 1 1 260px;
  max-width: 320px;
  min-width: 220px;
  padding: 26px 18px 20px 18px;
  margin: 6px 0;
  min-height: 156px;
  transition: box-shadow 0.2s;
}
.feature-card h4 {
  margin: 0 0 0.3em 0;
  font-size: 1.07rem;
}
.feature-card p {
  margin: 0;
  color: #dde6fa;
  font-size: 0.96rem;
}

/* Section 2: BPO Cards (light background) */
.bpo-solutions {
      padding-left: 20px;
  padding-right: 20px;
  background: #f6f8fc;
  border-radius: 12px;
  width: 100%;
  margin: 28px auto 0 auto;
  padding: 30px 16px;
}
.bpo-solutions h3 {
  text-align: center;
  color: #23283A;
  margin-bottom: 18px;
}
.bpo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}
.bpo-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(44,52,140,0.06);
  flex: 1 1 240px;
  max-width: 300px;
  min-width: 200px;
  padding: 22px 16px 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 134px;
  margin: 6px 0;
}
.bpo-icon {
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.bpo-card h5 {
  margin: 4px 0 8px 0;
  color: #23283A;
  font-size: 1.03rem;
}
.bpo-card p {
  margin: 0;
  color: #374368;
  font-size: 0.94rem;
}

/* Section 3: Consulting Split Layout */
.service-consulting-section {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: rgb(238, 242, 247);
  margin: 40px auto;
  width: 100%;
  
}
.consulting-container {
  
  display: flex;
  gap: 36px;
  justify-content: space-between;
  align-items: center;
  
}
.consulting-text {
  width: 50%;
  height:350px;
  background: #fff;
  padding: 28px 24px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(44,52,140,0.09);
}
.consulting-icon {
  font-size: 1.5rem;
  vertical-align: middle;
}
.consulting-text h3 {
  margin: 6px 0 13px 0;
  font-size: 1.18rem;
  color: #28314b;
}
.consulting-text p {
  margin: 0;
  color: #20232a;
  font-size: 1.04rem;
}
.consulting-image-container {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.consulting-image {
  width: 100%;
  height:350px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(44,52,140,0.08);
  object-fit: cover;
  object-position: center;
}

/* Responsive styles */
@media (max-width:1025) {

  .consulting-container {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }

.consulting-text {
  width: 50%;
  height:350px;
  background: #fff;
  padding: 28px 24px;
  border-radius: 12px;
  font-size: medium;
  box-shadow: 0 2px 12px rgba(44,52,140,0.09);
}
.consulting-text p {
  margin: 0;
  color: #20232a;
  font-size: small;
}
}
@media (max-width: 900px) {
  .services-hero, .services-features, .bpo-solutions, .service-consulting-section {
    max-width: 96vw;
    padding-left: 2vw;
    padding-right: 2vw;
  }
  .consulting-container {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }
.consulting-text p {
  margin: 0;
  color: #20232a;
  font-size: small;
}
.consulting-text {
  width: 50%;
  height:350px;
  font-size: small;
  background: #fff;
  padding: 28px 24px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(44,52,140,0.09);
}
}

@media (max-width: 600px) {
  .services-hero, .services-features, .bpo-solutions, .service-consulting-section {
    padding: 15px 3vw 18px 3vw;
    max-width: 96vw;
    border-radius: 6px;
  }
    .consulting-container {
    flex-direction: column;
    gap: 24px;
  }
  .logolite{
  width: 200px;
  height: 70px;
}
  .consulting-text  {
  width: 100%;
}
.consulting-image-container{
  width:100%;
}
  .consulting-text p {
  margin: 0;
  color: #20232a;
  font-size: smaller;
}
  .features-grid, .bpo-grid {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  .feature-card, .bpo-card {
    min-width: 0;
    max-width: 100vw;
    width: 100%;
    padding: 16px 8px;
    margin: 0;
  }
  .consulting-text, .consulting-image-container {
    max-width: 100vw;
    padding: 11px 3vw;
  }
  .consulting-image {
    max-width: 100vw;
  }
}
.footer-custom {
  background: #23283A;
  color: #ecf0f9;
  padding-top: 60px;
  padding-bottom: 18px;
  font-size: 1rem;
  width: 100%;
    padding-left: 20px;
  padding-right: 20px;
}

/* ==== Main content: Desktop ==== */
.footer-main-content {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1440px;
  margin: 0 auto;
  padding: 30px 20px;
}

/* Remove all flex: 1 1 ... from main sections */
.footer-logo-section,
.footer-services,
.footer-contact,
.footer-social,
.footer-nav {
  min-width: 180px;
  /* Only use min-width, let flexbox size naturally */
  width: auto;
}

.footer-logo-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 2px;
}
.footer-tagline {
  font-size: 1.02rem;
  color: #89cef7;
  letter-spacing: 0.6px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  color: #a8cdfb;
  text-decoration: none;
  transition: color 0.18s;
  font-weight: 600;
}
.footer-link:hover {
  color: #3898ec;
}

.footer-title {
  font-size: 1.07rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.footer-services ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.footer-services li {
  margin-bottom: 7px;
  color: #d0e5fb;
}
.footer-contact div {
  margin-bottom: 7px;
}

.footer-social {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;

}

.social-icon {
  display: flex;
  flex-direction: row;
  gap: 4px;
  align-items: center;
  justify-content: center;
}

.footer-social-icon {
  color: #fff;
  border-radius: 20%;
  padding: 8px;
  font-size: 1.12rem;
  margin-right: 8px;
  display: inline-block;
  transition: background 0.2s;
  width:50px ;
  height:50px;
  display: flex;
  flex-direction: center;
  align-items: center;

}
.footer-image{
  width:40px;
  height:40px;
}
.footer-bottom {
  border-top: 1px solid #394164;
  padding-top: 10px;
  text-align: center;
  color: #a1b7db;
  font-size: 0.97rem;
  margin-top: 32px;
}
.logo1{
  width:170px;
  height:60px;
}
/* ======= Responsive: Tablet & Mobile ======= */
@media (max-width: 900px) {
  .logo1{
  width:120px;
  height:40px;
}
  .footer-main-content {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 0 12px;
  }
  .footer-logo-section,
  .footer-services,
  .footer-contact,
  .footer-social,
  .footer-nav {
    min-width: 0;
    width: 100%;
    margin-bottom: 8px;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
  }
  .footer-nav {
    flex-direction: row;
    gap: 16px;
    margin: 7px 0 13px 0;
  }
  .footer-social{
    display:flex;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .logo1{
  width:120px;
  height:40px;
}
.logolite{
  width: 200px;
  height: 70px;
}
  .footer-main-content {
    padding: 0 5px;
    gap: 6px;
  }
  .footer-logo-section,
  .footer-services,
  .footer-contact,
  .footer-social,
  .footer-nav {
    min-width: 0;
    width: 100%;
    margin-bottom: 4px;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
  }
  .footer-logo { font-size: 1.18rem; margin-bottom: 1px; }
  .footer-tagline { font-size: 0.95rem; }
  .footer-title { font-size: 1rem; margin-bottom: 3px;}
  .footer-nav { flex-direction: column; gap: 5px; margin: 4px 0 8px 0; }
  .footer-social-icon { font-size: 1rem; padding: 6px;}
  .footer-bottom { font-size: 0.91rem; padding-top: 7px;}
}

.footer-main-content > * { box-sizing: border-box; }
  .footer-social{
    display:flex;
    flex-direction: column;
  }
.services-features {
  background-color: #fff;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  color: #222;
}

.services-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 50px;
  line-height: 1.3;
  color: #1e3a8a;
}

/* Grid Layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Service Card Styling */
.service-card {
  background-color: #f9fafc;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.service-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1e3a8a;
}

.service-card h5 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1e3a8a;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

/* Tablet View */
@media (max-width: 992px) {
  .logo1{
  width:120px;
  height:40px;
}
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-title {
    font-size: 1.9rem;
  }

  .service-card {
    padding: 20px;
  }
}

/* Mobile View */
@media (max-width: 600px) {
  .logo1{
  width:120px;
  height:40px;
}
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services-title {
    font-size: 1.6rem;
    margin-bottom: 35px;

  }

  .service-card {
    padding: 18px;
  }

  .service-card h3 {
    font-size: 1.1rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }
}
