/* About Hero Section */
.about-hero {
  position: relative;
  background: 
    linear-gradient(
      rgba(0, 0, 50, 0.5),   /* subtle dark blue tint */
      rgba(0, 0, 0, 0.45)     /* black overlay */
    ),
    url('../img/about.jpg') center/cover no-repeat;
  height: 90vh;
  color: #fff;
}


.about-hero h1 {
  font-size: 3rem;
  letter-spacing: 1px;
}

.about-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  color: #f9f9f9;
}

@media (max-width: 768px) {
  .about-hero {
    height: 60vh;
  }

  .about-hero h1 {
    font-size: 2.2rem;
  }

  .about-hero p {
    font-size: 1rem;
  }
}
/* Breadcrumb text inside hero */
.breadcrumb-text {
  font-size: 1rem;
  color: #f9f9f9;
}

.breadcrumb-text .breadcrumb-link {
  color: #f58220;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.breadcrumb-text .breadcrumb-link:hover {
  color: #fff;
  text-decoration: underline;
}

.breadcrumb-text i {
  color: #f58220;
  vertical-align: middle;
  font-size: 0.9rem;
}
/* About Details Section */
.about-details-section {
  background-color: #fff;
  color: #333;
}

.about-details-section .divider {
  width: 70px;
  height: 3px;
  background-color: #f58220;
  border: none;
  margin-top: 20px;
}

.about-details-section p {
  line-height: 1.7;
}

.about-card {
  background-color: #f3f6fa;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);

}

.about-card h4 {
  font-weight: 600;
  color: #f58220;
}

.about-icon {
  transition: transform 0.4s ease, color 0.4s ease;
}

.about-card:hover .about-icon {
  transform: scale(1.2);
  color: #f58220;
}
.about-details-section .section-title {
  font-weight: 600;
  color: #7c9bc1;
}

.about-details-section .divider {
  width: 70px;
  height: 3px;
  background-color: #f58220;
  border: none;
  margin-top: 20px;
  margin-bottom: 40px;
}

.about-details-section .lead {
  color: #555;
  font-size: 1.1rem;
}
/* Values Section */
.values-section { 
  background-color: #fff5ee; /* soft orange tint */
  color: #333;
}

.values-section .section-title {
  font-weight: 600;
  color: #7c9bc1; /* APSIS blue */
}

.values-section .divider {
  width: 70px;
  height: 3px;
  background-color: #f58220;
  border: none;
  margin-top: 15px;
  margin-bottom: 40px;
}

.values-card {
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
  padding: 32px;
}

.values-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.values-card h4 {
  font-weight: 600;
  font-size: 1.4rem;
  color: #7c9bc1;
}

.values-card ul li {
  margin-bottom: 0.6rem;
  font-size: 1rem;
  line-height: 1.6;
  display: flex;
  align-items: center;
}

.values-card ul li i {
  font-size: 1rem;
  color: #f58220;
}

/* ======================================================
   RESPONSIVENESS FOR TABLETS + PHONES
====================================================== */

/* Tablets (iPad, 768px and below) */
@media (max-width: 768px) {
  .values-card {
    padding: 26px;
  }

  .values-card h4 {
    font-size: 1.25rem;
  }

  .values-card ul li {
    font-size: 0.8rem;
  }

  .values-section .section-title {
    font-size: 1.9rem;
  }
}

/* Phones (576px and below) */
@media (max-width: 576px) {
  .values-card {
    padding: 22px;
    border-radius: 10px;
  }

  .values-card h4 {
    font-size: 1.15rem;
  }

  .values-card ul li {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .values-section .section-title {
    font-size: 1.7rem;
  }

  .values-section .divider {
    width: 50px;
    margin-top: 10px;
    margin-bottom: 25px;
  }
}
@media (max-width: 576px) {
  .mobile-hide {
    display: none;
  }
}
/* Team Section */
.team-section {
  background-color: #f9fafc;
}

.team-section .section-title {
  font-weight: 600;
  color: #7c9bc1;
}

.team-section .divider {
  width: 70px;
  height: 3px;
  background-color: #f58220;
  border: none;
  margin-top: 15px;
  margin-bottom: 40px;
}

/* Team Card Styling */
.team-card {
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.team-img {
  flex: 1;
  min-width: 250px;
  background-color: #e9eef5;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-img h5 {
  font-weight: 600;
  font-size: 1.1rem;
  background-color: #7c9bc1;
}

.team-info {
  flex: 2;
  font-size: 0.95rem;
  color: #333;
  background-color: #fff;
  line-height: 1.7;
}

/* Responsive Fix */
@media (max-width: 768px) {
  .team-card {
    flex-direction: column;
    text-align: center;
  }

  .team-info {
    padding: 20px;
  }

  .team-img h5 {
    font-size: 1rem;
  }
}
.services-overview {
  background-color: #fff;
}

.service-info-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.icon-circle {
  background-color: #f58220;
  color: #fff;
  font-size: 1.8rem;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  display: inline-block;
}

.clients-section {
  background-color: #fff4ec;
}

/* Group titles */
.group-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
}

.pro-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 30px 26px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0e5dd;
  transition: all 0.25s ease;
  height: 100%;
  position: relative;
  text-align: left;
  overflow: hidden;
}

/* Orange accent strip */
.pro-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: #f58220;
  border-radius: 14px 0 0 14px;
}

/* Hover effect */
.pro-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

/* Typography */
.client-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.pro-card p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.55;
  margin: 0;
}

/* Spacing between groups */
.clients-group {
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: #222;
}

.section-subtext {
  font-size: 1rem;
  color: #555;
}



.what-we-do-section {
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
  color: #333;
  position: relative;
  overflow: hidden;
}

.section-title {
  font-weight: 700;
  color: #7c9bc1;
}

.intro-text {
  max-width: 720px;
  margin: 0 auto;
  color: #555;
  font-size: 1.1rem;
}

.divider {
  width: 70px;
  height: 3px;
  background-color: #f58220;
  border: none;
  margin-top: 20px;
}

/* ============================
   SECTION BACKGROUNDS
============================= */
#our-services {
  background-color: #f3f8fc;
}
#our-competencies {
  background: linear-gradient(180deg, #f3f8fc 0%, #fff7f0 100%);
}
#our-values {
  background-color: #fff7f0;
}

/* ============================
   SHARED BOX STYLES
============================= */
.what-we-do-box,
.competencies-content,
.values-content {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Services Box */
.what-we-do-box {
  background: #ffffff;
  border-left: 5px solid #7c9bc1;
}
.what-we-do-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

/* Competencies Box */
.our-competencies.container{
      background: linear-gradient(180deg, #f58220 0%, #fff 100%);
}
.competencies-content {
  background-color: #fff;

}
.competencies-content:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

/* Values Box */
/* SECTION BACKGROUND */
#our-values {
  background: #fff;
}

/* VALUE CARD STYLING */
.value-card {
  background: #ffffff;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* ICON STYLE */
.icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

/* TEXT STYLE */
.value-card h5 {
  font-weight: 600;
  font-size: 1.2rem;
}
.value-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .value-card {
    padding: 1.5rem;
  }
  .value-card h5 {
    font-size: 1.1rem;
  }
  .value-card p {
    font-size: 0.95rem;
  }
}


/* ============================
   TEXT + LIST STYLING
============================= */
.section-title {
  font-weight: 700;
  font-size: 2rem;
}

.intro-text {
  max-width: 750px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.what-we-do-box ul li,
.values-list li {
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.6;
}

.values-list i {
  font-size: 1.1rem;
  vertical-align: middle;
}

/* ============================
   RESPONSIVE ADJUSTMENTS
============================= */
@media (max-width: 768px) {
  .what-we-do-box,
  .competencies-content,
  .values-content {
    padding: 1.5rem;
  }

  .intro-text {
    font-size: 1rem;
  }
}

.work-section {
  background-color: #f9fbfd;
}

.section-title {
  font-weight: 600;
  color: #004080;
}

.divider {
  width: 70px;
  height: 3px;
  background-color: #f58220;
  border: none;
  margin: 15px auto 30px;
}

.work-card {
  background-color: #fff;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.work-card h4 {
  font-weight: 600;
}

.icon-box i {
  color: #7c9bc1;
}
.modal-content {
  border-radius: 10px;
  border: none;
}

.modal-body p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.modal-footer .btn-primary {
  background-color: #7c9bc1;
  border: none;
}

.modal-footer .btn-primary:hover {
  background-color: #5f82aa;
}
.why-us-section {
  background: linear-gradient(135deg, #f8fafc 0%, #eef3f8 100%);
  color: #333;
}

.why-card {
  background-color: #fff;
  border-top: 4px solid #7c9bc1;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.why-icon i {
  transition: transform 0.4s ease, color 0.3s ease;
}

.why-card:hover .why-icon i {
  transform: rotate(10deg) scale(1.1);
  color: #f58220;
}

/* Fade-up animation */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}
.dev-key-title {
  color: #f58220; /* your main blue tone */
  font-weight: 300;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}



.dev-key-title i {
  color: #f58220; /* gold/yellow icon for contrast */
  font-size: 1.5rem;
  vertical-align: left;
}
.core-competencies {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
  background: #f8faff;
  padding: 15px 20px;
  border-radius: 8px;
  display: inline-block;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.1);
}

.core-competencies strong {
  color: #f58220;
  font-weight: 600;
  text-transform: uppercase;
  margin-right: 8px;
}

.core-competencies span {
  color: #7c9bc1;
  font-weight: 500;
}

.core-competencies span:hover {
  color: #f58220;
  transition: color 0.3s ease;
}
.client-name {
  font-size: 1.15rem;
  font-weight: 600;
  color: #0d6efd; /* your blue theme */
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  margin-bottom: 0.75rem;
}



