/* Date: 2025-08-11
   Author: Alok
   File: assets/css/style.css
   Purpose: Combined CSS - simplified version */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1,
h3 {
  color: #d1320d;
}
h2,
h4 {
  color: #005786;
}
p {
  color: #676767;
}

body {
  font-family: Lato, sans-serif;
  overflow-x: hidden;
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  left: 0;
  height: 80px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
  background: transparent;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  z-index: 1000;
}

.content {
  /* margin-top: 80px; */
}
.container {
  width: 85%;
  margin: auto;
  padding: 20px;
}
@media (max-width: 768px) {
  .container {
    width: 100%;
    padding: 25px;
  }
}

.logo img {
  max-height: 80px;
}

nav {
  flex-grow: 1;
  text-align: center;
}
nav ul {
  list-style: none;
  display: inline-flex;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #005786;
  padding: 8px 16px;
  border: 2px solid transparent;
  border-radius: 8px;
  transition: all 0.2s ease;
}

nav ul li a:hover {
  border: 2px solid #005786;
  border-radius: 8px;
}

.book-consultation {
  background: #d1320d;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.book-consultation:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  opacity: 0.95;
}

#book-consultation {
  display: block;
}
@media (min-width: 900px) {
  #book-consultation {
    display: none;
  }
}

/* Mobile Menu */
@media (max-width: 900px) {
  header {
    padding: 0 20px;
  }
  nav ul,
  .book-consultation {
    display: none;
  }

  .menu-icon {
    font-size: 24px;
    color: #005786;
    cursor: pointer;
  }
  .icon-container {
    display: flex;
    gap: 15px;
    align-items: center;
  }

  .mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding-left: 20px;
    animation: slideDown 0.3s ease;
    z-index: 10000;
  }

  .mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .mobile-menu ul li {
    padding: 15px;
    border-bottom: 1px solid #eee;
  }
  .mobile-menu ul li a {
    color: #005786;
    text-decoration: none;
    font-size: 18px;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (min-width: 901px) {
  .menu-icon {
    display: none;
  }
  nav ul,
  .book-consultation {
    display: inline-flex;
  }
}

.rpa-header__dropdown {
  position: relative;
}

.rpa-header__dropdown-menu {
  display: none;
  position: absolute;
  top: 120%;
  left: 0;
  background: #fff;
  min-width: 180px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 0 0 8px 8px;
  padding-top: 10px;
  margin-top: 0;
  z-index: 1000;
  border-top: 3px solid #005786;
}

.rpa-header__dropdown-menu li {
  list-style: none;
}

.rpa-header__dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: #676767;
  font-size: 16px;
  text-decoration: none;
  text-align: left;
}

.rpa-header__dropdown-menu a:hover {
  color: #005786;
}

.rpa-header__dropdown:hover .rpa-header__dropdown-menu {
  display: block;
}

.rpa-header__dropdown > a {
  position: relative;
}

.rpa-header__dropdown:hover > a {
  background: rgba(0, 87, 134, 0.1);
  border: 2px solid #005786;
  border-radius: 8px;
}

/* --- Mobile Dropdown --- */
.rpa-header__mobile-dropdown-menu {
  display: none;
  padding-left: 20px;
  background: #f9f9f9;
}

.rpa-header__mobile-dropdown-menu li {
  list-style: none;
  padding: 8px 0;
}

/* Dropdown toggle arrow */
.rpa-header__mobile-dropdown-toggle {
  cursor: pointer;
  margin-left: 5px;
  color: #005786;
  font-size: 16px;
}

.rpa-header__mobile-dropdown-menu.active {
  display: block;
}

/* HERO */
.hero {
  background-size: cover;
  background-position: center;
  padding: 20px;
  padding-top: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding: 20px 0;
}

.hero-text {
  width: 100%;
  text-align: left;
  mix-blend-mode: multiply;
}

.hero-subtitle {
  margin: 20px 0;
}

.hero-text h1 {
  font-size: 36px;
  color: #002c43;
  margin-bottom: 20px;
  line-height: 38px;
}

.hero-text p {
  font-size: 20px;
  margin-bottom: 40px;
  color: black;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(90deg, #005786, #d1320d);
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.hero-button:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  background: linear-gradient(120deg, #005786, #d1320d);
}

.hero-button::after {
  content: "➜";
  font-size: 1.2em;
  margin-left: 8px;
}

@media (max-width: 768px) {
  .hero-text {
    text-align: center;
  }
  .hero-text h1 {
    font-size: 28px;
  }
  .hero-text p {
    font-size: 18px;
  }
}

/* POWER PLATFORM SECTIONS */
.Power-Platform h2 {
  text-align: center;
  font-size: 2em;
  margin: 20px 0;
}

.Power-Platform ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.Power-Platform ul li {
  margin: 10px 0;
  padding-left: 20px;
  position: relative;
}

.Power-Platform ul li::before {
  content: "•";
  color: black;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.image-row {
  display: flex;
  justify-content: center;
  margin: 0;
}

.image-row img {
  max-width: 100%;
  height: auto;
}

/* PIONEER SECTION */
.pioneer {
  display: flex;
  padding: 20px;
  align-items: center;
  border-radius: 10px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}

.pioneer-left {
  flex: 0 0 30%;
}

.pioneer-left img {
  width: 70%;
  height: auto;
  border-radius: 5px;
}

.pioneer-right {
  flex: 0 0 70%;
  padding-left: 20px;
}

@media (max-width: 768px) {
  .pioneer {
    flex-direction: column;
    text-align: center;
  }
  .pioneer-left img {
    width: 60%;
  }
  .pioneer-right {
    padding-left: 0;
  }
}

/* GRID LAYOUTS */
.solutions-key,
.solutions-benefit {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* centers the last row */
  gap: 20px;
}

.solution-box-key,
.solution-box-benefit {
  background: white;
  padding: 20px;
  margin: 20px 0;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 286px;
}

@media (max-width: 768px) {
  .solution-box-key,
.solution-box-benefit {
  width: 100%;
}
}



.solution-box-key img,
.solution-box-benefit img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.solution-box-key h4 {
  color: #005786;
  font-size: 20px;
  margin-bottom: 20px;
}

.solution-box-benefit h4 {
  color: #005786;
  font-size: 22px;
  margin-bottom: 15px;
}

.solution-box-key p,
.solution-box-benefit p {
  color: #676767;
  line-height: 24px;
}

/* TRANSFORM SECTION */
.transform-section {
  background: white;
  padding: 40px;
  text-align: center;
  border: 3px solid #d1320d;
  margin: 20px;
  border-radius: 10px;
}

.transform-section h2 {
  color: #d1320d;
  font-size: 2em;
  margin-bottom: 20px;
}

.transform-section p {
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.custom-button {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(90deg, #005786, #d1320d);
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.custom-button:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  background: linear-gradient(120deg, #005786, #d1320d);
}

.custom-button::after {
  content: "➜";
  font-size: 1.2em;
  margin-left: 8px;
}

/* CASE STUDIES */
.case-study {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.case-study-column {
  flex: 1;
  min-width: 30%;
  text-align: center;
  margin: 10px;
}

.case-study-column img {
  width: 80%;
  height: auto;
}

.case-study a {
  text-decoration: none;
  color: #d1320d;
}

.case-study-view {
  text-align: right;
}

.case-study-view a {
  color: #005786;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .case-study-column {
    min-width: 45%;
  }
}

@media (max-width: 768px) {
  .case-study-column {
    min-width: 100%;
    margin: 10px 0;
  }
}

/* FOOTER */
footer {
  background: linear-gradient(120deg, #f1c2b6, #d9d9d9);
  padding: 40px 20px;
  color: #333;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-columns div {
  flex: 1;
  margin: 0 15px;
  min-width: 200px;
}

.footer-columns h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #000;
}

.footer-columns ul {
  list-style: none;
}

.footer-columns ul li {
  margin-bottom: 10px;
}

.footer-columns ul li a {
  text-decoration: none;
  color: #005786;
  transition: color 0.3s;
}

.separator {
  width: 100%;
  height: 1px;
  background: #696969;
  margin: 30px 0;
}

.bottom-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 20px;
}

.bottom-section .copyright {
  color: #005786;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  transition: opacity 0.3s;
}

.social-icons a:hover {
  opacity: 0.7;
}
/* Date: 2025-08-13
   Author: Alok
   File: Additional CSS for new components
   Purpose: Styles for testimonials, partners, clients */

/* VIDEO TESTIMONIALS */
.testimonials-section {
  background: #f9f9f9;
  padding: 40px 0;
}

.video-testimonial {
  position: relative;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.video-testimonial:hover {
  transform: translateY(-5px);
}

.video-testimonial img {
  width: 100%;
  height: auto;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(209, 50, 13, 0.9);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: background 0.3s ease;
}

.play-button:hover {
  background: rgba(209, 50, 13, 1);
}

/* PARTNERS SECTION */
.partners-section {
  padding: 40px 0;
  background: white;
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  align-items: center;
  margin-top: 30px;
}

.partner-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  transition: opacity 0.3s ease;
}

.partner-logo:hover {
  opacity: 0.8;
}

.partner-logo img {
  max-width: 100%;
  height: auto;
  /* filter: grayscale(50%); */
  transition: filter 0.3s ease;
}

.partner-logo:hover img {
  filter: grayscale(0%);
}

/* CLIENTS SECTION */
.clients-section {
  padding: 40px 0;
  background: #f9f9f9;
}

.client-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  align-items: center;
  margin-top: 30px;
}

.client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.client-logo:hover {
  transform: translateY(-3px);
}

.client-logo img {
  max-width: 100%;
  height: auto;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.client-logo:hover img {
  opacity: 1;
}

/* SERVICE LINKS */
.service-link {
  color: #d1320d;
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
  display: inline-block;
}

.service-link:hover {
  text-decoration: underline;
}

/* STATS INLINE */
.stats-inline p {
  margin: 8px 0;
  color: #005786;
  font-size: 16px;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
  .partner-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .client-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .play-button {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }
}

/* Date: 2025-09-26
   Author: Adarsh Goutam
   File: assets/css/style.css
   Purpose: Support & Maintange Page CSS
*/

/* ----card-grid------- */
.cg-card-grid {
  display: grid;
  gap: 20px;
  align-items: stretch;
  width: 100%;
}

.cg-card-grid__card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
}

.cg-card-grid__card-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  width: 100%;
  height: 100%;
}

.cg-card-grid__card-image {
  width: 100%;
  max-height: 140px;
  object-fit: contain;
  margin-bottom: 12px;
}
.cg-card-grid__card-icon {
  display: flex; /* centers the icon */
  justify-content: center;
  align-items: center;
  width: 100%;
  max-height: 140px;
  font-size: 105px; /* adjust size to match typical image height */
  margin-bottom: 12px;
}

.cg-card-grid__card-title {
  font-size: 24px;
  font-weight: 500;
  margin: 8px 0;
}

.cg-card-grid__card-description {
  font-size: 17px;
}

/* Modifier for filled cards (alternate bg or manually set) */
.cg-card-grid__card--filled {
  background-color: #005786;
  border-color: #005786;
}

.cg-card-grid__card--filled .cg-card-grid__card-title,
.cg-card-grid__card--filled .cg-card-grid__card-description {
  color: #fff;
}

@media (max-width: 768px) {
  /* or whatever breakpoint you want */
  .cg-card-grid {
    grid-template-columns: 1fr !important; /* 1 card per row */
    gap: 15px;
  }
}

/* -----why-rpa-support-services----- */
.why-rpa-support-services {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 50px 0;
}

.why-rpa-support-services__heading {
  font-size: 35px;
  padding: 0 50px;
}

.why-rpa-support-services__desc {
  font-size: 17px;
  line-height: 30px;
  padding: 0 50px;
}

.why-rpa-support-services__desc a {
  text-decoration: none;
  color: #005786;
}

@media (max-width: 768px) {
  /* or whatever breakpoint you want */

  .why-rpa-support-services__heading,
  .why-rpa-support-services__desc {
    padding: 0;
  }
}

/* ------post-implementation-challenges------- */
.pic {
  margin: 50px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.pic__heading {
  font-size: 35px;
  padding: 0 50px;
}
.pic__desc {
  font-size: 17px;
  line-height: 30px;
  padding: 0 50px;
}
.pic__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.pic__card {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  border-radius: 15px;
  border-color: var(--e-global-color-9bed1ea);
  box-shadow: 0 0 10px rgba(143, 143, 143, 0.5);
}

.pic__card img {
  width: 25%;
  max-width: 300px;
}
.pic__card h4 {
  font-size: 24px;
}
.pic__card p {
  font-size: 17px;
  line-height: 30px;
}

.pic__card--filled {
  background-color: #005786;
  border: 1px solid #005786;
}

.pic__card--filled h4,
.pic__card--filled p {
  color: white;
}
@media (max-width: 768px) {
  /* or whatever breakpoint you want */
  .pic__grid {
    grid-template-columns: 1fr; /* 1 card per row */
  }
}

/* rpa-support-benefits */
.rpa-support-benefits {
  margin: 50px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.rpa-support-benefits__heading {
  font-size: 35px;
  padding: 0 50px;
}

.rpa-support-benefits__desc {
  font-size: 17px;
  line-height: 30px;
  padding: 0 50px;
}

/* ----rpa-support-services----- */
.rpa-support-services {
  margin: 50px 0;
}
.rpa-support-services div {
  margin: 30px 0;
}
.rpa-support-services__heading,
.rpa-support-services__subheading {
  font-size: 35px;
  text-align: center;
  margin: 20px 0;
}

/* --------subscribe-------- */
.subscribe {
  /* border: 1px solid; */
  margin: 30px auto;
  display: flex;
  gap: 20px;
  width: 70%;
}

.subscribe p {
  font-size: 17px;
  text-align: right;
}

.subscribe__button {
  padding: 0.5em 2em;
  border-radius: 5px;
  font-size: 17px;
  background-color: #005786;
  color: white;
  cursor: pointer;
  width: fit-content;
}

@media (max-width: 1024px) {
  .subscribe {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .subscribe {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }
  .subscribe p {
    text-align: center;
  }
}

/* subscribe-modal */
.subscribe-modal {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.subscribe-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.subscribe-modal__content {
  position: relative;
  background: #fff;
  border-radius: 5px;
  width: 90%;
  max-width: 500px;
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  z-index: 1001;
}
.subscribe-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.subscribe-modal__header h2 {
  margin: 0;
  font-size: 1.75rem;
}
.subscribe-modal__close {
  font-size: 1.5rem;
  cursor: pointer;
}
.subscribe-modal__divider {
  margin: 1rem 0;
  border: none;
  border-top: 1px solid #005786;
}
.subscribe-modal__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.subscribe-modal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.5rem;
}
.subscribe-modal__field label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 500;
  color: #676767;
}
.subscribe-modal__field .required {
  color: red;
}
.subscribe-modal__field input {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 20px;
  font-size: 1rem;
  background-color: #f5f8fa;
}
.subscribe-modal__submit {
  margin-top: 1rem;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  align-self: start;

  background-color: #ff7a59;
  color: #ffffff;
  font-size: 17px;
  line-height: 12px;
}

/* Date: 2025-09-29
   Author: Adarsh Goutam
   File: assets/css/style.css
   Purpose: Analytics Page CSS
*/

/* Impact Metrics */
.metrics-grid {
  margin: 40px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}
.metric-card {
  text-align: center;
  padding: 20px;
}
.metric-value {
  font-size: 3em;
  font-weight: bold;
  color: #005786;
}
.metric-label {
  color: #676767;
  margin-top: 10px;
}

/* Maturity Assessment */
.maturity-assessment {
  margin: 40px 0;
}

.maturity-assessment h2,
p {
  text-align: center;
  padding: 5px 0;
}
.maturity-stages {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 40px 0;
}
.stage-card {
  flex: 1;
  padding: 20px;
  text-align: center;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
}
.stage-card:hover {
  border-color: #005786;
  transform: translateY(-5px);
}
.stage-number {
  width: 40px;
  height: 40px;
  margin: 0 auto 15px;
  background: #005786;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.stage-arrow {
  color: #d1320d;
  font-size: 2em;
  margin: 0 10px;
}
.assessment-cta {
  display: flex;
  justify-content: center;
}

/* Industry Solutions Tabs */
/* Shared Styles */
.industry-solutions__title,
.tab-content__visual,
.tab-content__cta {
  text-align: center;
}

.tab-buttons,
.tab-button,
.tab-contents {
  display: flex;
}

.tab-button,
.tab-content__cta-button {
  cursor: pointer;
  border: none;
}

.tab-content__visual,
.tab-content__cta,
.tab-content__features div,
.tab-content__cta-button {
  border-radius: 12px;
}

.tab-button,
.tab-contents,
.tab-content__visual,
.tab-content__cta {
  background: #fff;
}

/* Make the component height-adaptive */
.industry-solutions {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.industry-solutions .containerr {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Title */
.industry-solutions__title {
  margin: 20px 0 40px;
  font-size: 24px;
  font-weight: 600;
  flex-shrink: 0;
}

/* Main Container */
.industry-tabs {
  display: flex;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
  align-items: stretch;
  flex: 1;
  min-height: 0;
  width: 100%;
}

/* Tab Buttons Container */
.tab-buttons {
  flex-direction: column;
  gap: 12px;
  background-color: #005786;
  padding: 30px;
  padding-right: 0;
  border-radius: 16px 0 0 16px;
  min-width: 320px;
  flex: 0 0 auto;
  align-self: stretch;
}

/* Individual Tab Button */
.tab-button {
  padding: 20px 28px;
  background: transparent;
  color: #fff;
  font-size: 17px;
  text-align: left;
  border-radius: 12px 0 0 12px;
  align-items: center;
  gap: 14px;
  font-weight: 500;
  position: relative;
  margin-right: 30px;
  flex: 1;
  min-height: 0;
}

.tab-button i {
  font-size: 22px;
  width: 26px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.tab-button.active {
  background-color: #fff;
  color: #000;
  z-index: 2;
  margin-right: 0;
  padding-right: 40px;
  font-weight: 600;
}

.tab-button.active i {
  color: #005786;
}

/* Tab Contents Container */
.tab-contents {
  flex: 1;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 0 16px 16px 0;
  padding: 30px 60px;
  box-shadow: 4px 0 8px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.1),
    0 -4px 8px rgba(0, 0, 0, 0.1);
  margin-left: -1px;
  align-self: stretch;
  min-height: 0;
}

/* Tab Content */
.tab-content {
  display: none;
  height: 100%;
  min-height: 0;
}

.tab-content.active {
  display: flex;
  flex-direction: column;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Features Grid */
.tab-content__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  flex: 1;
  align-content: stretch;
  grid-auto-rows: 1fr;
  min-height: 0;
}

.tab-content__sidebar {
  display: none;
}

/* Visual Box */
.tab-content__visual {
  background: linear-gradient(135deg, #005786 0%, #003d5c 100%);
  padding: 32px;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 87, 134, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tab-content__visual-icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.9;
}

.tab-content__visual-text {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.95;
  margin: 0;
}

/* CTA Box */
.tab-content__cta {
  border: 2px solid #d1320d;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tab-content__cta-title {
  font-size: 16px;
  font-weight: 600;
  color: #212529;
  margin: 0 0 12px 0;
}

.tab-content__cta-text {
  font-size: 13px;
  color: #6c757d;
  margin: 0 0 20px 0;
  line-height: 1.5;
}

.tab-content__cta-button {
  display: inline-block;
  background: #d1320d;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.25s ease;
  align-self: center;
}

.tab-content__cta-button:hover {
  background: #b02a0b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(209, 50, 13, 0.3);
}

/* Feature Items */
.tab-content__features div {
  padding: 18px 24px 18px 56px;
  margin: 0;
  background: transparent;
  position: relative;
  border-left: 5px solid #d1320d;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
}

.tab-content__features div:hover {
  background: #fef5f3;
}

/* .tab-content__features div:before {
  content: "✓";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #d1320d;
  font-weight: bold;
  font-size: 20px;
} */

.tab-content__features .feature-title {
  margin: 0 0 6px 0;
  font-size: 17px;
  color: #212529;
  line-height: 1.5;
  font-weight: 600;
}

.tab-content__features .feature-desc {
  margin: 0;
  font-size: 14px;
  color: #6c757d;
  line-height: 1.6;
  font-weight: 400;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .industry-tabs {
    flex-direction: column;
    gap: 16px;
    height: auto;
    min-height: auto;
  }

  .tab-buttons {
    min-width: 100%;
    gap: 12px;
    border-radius: 16px;
    padding: 30px;
    height: auto;
  }

  .tab-button {
    border-radius: 12px;
    border-left: 3px solid transparent;
    margin-right: 0;
    flex: 0 0 auto;
    padding: 30px 28px;
  }

  .tab-button.active {
    border-left: 3px solid #d1320d;
    padding-right: 28px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .tab-contents {
    border-radius: 16px;
    padding: 30px 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    height: auto;
  }

  .tab-content {
    height: auto;
  }

  .tab-content__features {
    grid-template-columns: 1fr;
    gap: 16px;
    grid-auto-rows: auto;
  }

  .tab-content__features div {
    padding: 16px 16px 16px 44px;
  }

  .tab-content__features div:before {
    left: 14px;
    top: 50%;
  }

  .tab-content__features .feature-title {
    font-size: 16px;
  }

  .tab-content__features .feature-desc {
    font-size: 13px;
  }
}

/* Engagement Tiers */
.engagement-tiers {
  margin: 80px 0;
}

.engagement-tiers__title {
  text-align: center;
  margin: 20px 0;
}
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.tier-card {
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  position: relative;
  background: white;
}
.tier-card.featured {
  border-color: #d1320d;
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.tier-icon {
  font-size: 3em;
  margin-bottom: 20px;
}
.tier-duration {
  color: #676767;
  margin: 10px 0;
}
.tier-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.tier-features li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}
.tier-price {
  font-size: 1.5em;
  color: #005786;
  font-weight: bold;
  margin: 20px 0;
}
.tier-button {
  display: inline-block;
  width: 80%;
  padding: 12px;
  background: linear-gradient(90deg, #005786, #d1320d);
  color: white;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
}

/* Problem Solution Grid */
.problem-solution {
  margin: 40px 0;
}
.problem-solution h2 {
  text-align: center;
  margin: 20px 0;
}
.transformation-grid {
  display: grid;
  gap: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.transformation-card {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 20px;
  background: white;
}
.problem-side {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  text-align: right;
  padding-right: 20px;
}
.solution-side {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  text-align: left;
  padding-left: 20px;
}
.arrow-divider {
  font-size: 2em;
  color: #d1320d;
  padding: 0 20px;
}
.problem-icon {
  color: #999;
}
.solution-icon {
  color: #005786;
}

/* Tech Stack */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}
.tech-card {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 8px;
  transition: transform 0.3s;
}
.tech-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.tech-card img {
  max-width: 80px;
  height: auto;
  margin-bottom: 10px;
}
.tech-category {
  font-size: 0.8em;
  color: #676767;
}

/* Testimonial Quote */
.quote-slider {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.quote-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}
.quote-card {
  flex: 0 0 100%;
  width: 100%;
  margin: 0 auto;
  padding: 40px;
  background: white;
  border-left: 4px solid #d1320d;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.quote-mark {
  font-size: 4em;
  color: #d1320d;
  line-height: 0.3;
  margin-bottom: 20px;
}
.quote-card blockquote {
  font-size: 1.3em;
  font-style: italic;
  color: #333;
  margin-bottom: 20px;
}
.quote-attribution {
  display: flex;
  align-items: center;
  gap: 20px;
}
.quote-attribution img {
  max-width: 100px;
  height: auto;
}
.quote-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
  padding: 20px 0;
}
.quote-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}
.quote-dot:hover {
  background: #999;
}
.quote-dot.active {
  background: #d1320d;
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  .maturity-stages {
    flex-direction: column;
  }
  .stage-arrow {
    transform: rotate(90deg);
    margin: 20px 0;
  }
  .transformation-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .problem-side,
  .solution-side {
    flex-direction: column;
    padding: 10px;
    text-align: center;
  }
  .arrow-divider {
    transform: rotate(90deg);
    padding: 20px 0;
  }
  .tiers-grid {
    grid-template-columns: 1fr;
  }
  .tier-card.featured {
    transform: scale(1);
  }

  .industry-tabs {
    flex-direction: column;
  }
  .tab-buttons {
    background: transparent;
    padding: 0;
    gap: 0;
  }
  .tab-button {
    display: block;
    width: 100%;
    background: #005786;
    color: white;
    padding: 25px;
    border-radius: 6px;
    margin-bottom: 5px;
    text-align: left;
  }
  .tab-button.active {
    background: #005786;
    color: white;
    border-left: none;
  }
  .tab-contents {
    display: none;
    margin: 0 0 15px 0;
  }
  .tab-content.active {
    display: block;
    padding: 10px 0;
  }
}

.tier-icon i {
  font-size: 48px;
  color: #005786;
  margin-bottom: 20px;
  display: block;
}

.tier-card.featured .tier-icon i {
  color: #d1320d;
}

/* Analytics page specific refinements */
.analytics-intro {
  padding: 40px 0;
  margin: 40px 0;
  background: #f9f9f9;
}

.analytics-intro h2 {
  text-align: center;
  margin: 10px 0;
}

.analytics-intro p {
  /* max-width: 900px; */
  margin: 20px 0 20px;
  font-size: 1.1em;
  line-height: 1.8;
}

.analytics-capabilities {
  padding: 60px 0;
}

.analytics-capabilities h2 {
  text-align: center;
  margin: 20px 0;
}

.analytics-outcomes {
  background: #fff;
  padding: 60px 0;
}

.guide-download {
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  text-align: center;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px auto;
}

/* Fix icon sizing in problem-solution */
.transformation-card i {
  font-size: 32px;
  display: block;
  margin-bottom: 15px;
}

.pioneer ul li {
  margin: 8px 35px;
}
.tech-methodology__title {
  text-align: center;
  margin: 20px 0;
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  border: 2px solid #005786; /* same primary color */
  color: #005786;
  background: transparent;
  transition: 0.3s;
}

.secondary-btn:hover {
  background: #005786;
  color: white;
}

/* Date: 2025-10-07
   Author: Adarsh Goutam
   File: assets/css/style.css
   Purpose: Dashboard component css
*/

.dashboards {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 15px;
}

.dashboards__title {
  font-size: 28px;
  margin-bottom: 15px;
  text-align: center;
  color: #005786;
}

.dashboards__description {
  text-align: center;
  margin-bottom: 25px;
}

.dashboards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 992px) {
  .dashboards__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .dashboards__grid {
    grid-template-columns: 1fr;
  }
}

.dashboards__card {
  background: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  overflow: hidden;
  transition: border 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 350px;
}

.dashboards__card:hover {
  border: 3px solid #007bff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.dashboards__card-preview {
  flex: 1;
  background: #f9f9f9;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  margin: 20px;
  overflow: hidden; /* hide scrollbars */
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dashboards__card-iframe-wrapper {
  width: 1200px; /* desktop width */
  height: 800px; /* desktop height */
  transform: scale(0.3); /* scale to fit card */
  transform-origin: top left;
}

.dashboards__card-iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 4px;
}

.dashboards__card-footer {
  padding: 10px 12px 15px 12px;
}

.dashboards__card-title {
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 15px 0;
  color: #333;
}

.dashboards__card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.dashboards__card-text {
  font-size: 14px;
  color: #666;
  margin-right: 10px;
  flex: 1;
}

.dashboards__card-button {
  display: inline-block;
  padding: 8px 20px;
  background: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
  transition: background 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.dashboards__card-button:hover {
  background: #0056b3;
}

/* Technology & Methodology Section */
.tech-methodology {
  padding: 40px 0;
}

.tech-methodology__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.tech-methodology__content {
  display: flex;
  gap: 100px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  padding: 50px 25px 25px 50px;
  align-items: flex-start;
}

.tech-methodology__section {
  flex: 1;
  padding: 0;
  margin: 0 100px 25px 0;
}

.tech-methodology__section-title {
  font-size: 1.5em;
  font-weight: 700;
  color: #d32f2f;
  margin: 0 0 25px 0;
  padding-bottom: 12px;
  border-bottom: 3px solid #d32f2f;
}

.tech-methodology__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tech-methodology__list-item {
  padding: 3px 0;
  padding-left: 32px;
  color: #333;
  font-size: 1.05em;
  line-height: 1.6;
  position: relative;
  margin-bottom: 8px;
  transition: all 0.2s ease;
}

.tech-methodology__list-item--platforms::before {
  content: "▸";
  position: absolute;
  top: 0;
  left: 8px;
  color: #0066cc;
  font-size: 1.2em;
  font-weight: 700;
}

.tech-methodology__list-item--methodology::before {
  content: "●";
  position: absolute;
  left: 10px;
  color: #d32f2f;
  font-size: 0.8em;
  top: 6px;
}

.tech-methodology__label {
  color: #1a1a1a;
  font-weight: 700;
  display: inline-block;
  min-width: 90px;
}

@media (max-width: 968px) {
  .tech-methodology__content {
    gap: 35px;
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .tech-methodology {
    padding: 40px 0;
  }

  .tech-methodology__content {
    flex-direction: column;
    align-items: center;
    gap: 35px;
    padding: 30px 20px;
  }

  .tech-methodology__section {
    display: inline-block;
    text-align: left;
  }

  .tech-methodology__section-title {
    font-size: 1.35em;
    margin: 0 0 20px 0;
    text-align: center;
  }

  .tech-methodology__list-item {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .tech-methodology__content {
    padding: 20px 15px;
    gap: 25px;
  }

  .tech-methodology__section-title {
    font-size: 1.15em;
    margin-bottom: 15px;
  }

  .tech-methodology__list-item {
    font-size: 0.9em;
    padding-left: 25px;
    margin-bottom: 6px;
  }

  .tech-methodology__list-item--platforms::before {
    left: 5px;
    font-size: 1em;
  }

  .tech-methodology__list-item--methodology::before {
    left: 7px;
    font-size: 0.7em;
  }

  .tech-methodology__label {
    display: block;
    margin-bottom: 2px;
    min-width: auto;
  }
}

/* ------------------------------------------------------------------------------------------------------------ */
/* Date: 2025-10-15
   Author: Adarsh Goutam
   File: assets/css/style.css
   Purpose: HomePage CSS
*/

/* homepage css */
.home-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  padding: 40px 20px;
  padding-top: 100px;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.home-hero__container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

.home-hero__content {
  flex: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-hero__badges {
  display: flex;
  gap: 32px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.home-hero__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.home-hero__badge-logo {
  height: 80px;
  width: 80px;
  padding: 12px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.home-hero__badge:hover .home-hero__badge-logo {
  opacity: 1;
  filter: grayscale(0%);
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.home-hero__badge-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home-hero__badge-name {
  font-size: 12px;
  font-weight: 600;
  color: #666;
  text-align: center;
  line-height: 1.2;
}

.home-hero__badge-subtitle {
  font-size: 14px;
  font-weight: 500;
  color: #666;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.home-hero__headline {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 24px;
}

.home-hero__framework {
  font-size: 24px;
  font-weight: 500;
  color: #005786;
  letter-spacing: 0.5px;
  margin-bottom: 32px;
}

.home-hero__description {
  font-size: 20px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 32px;
}

.home-hero__metrics {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 16px 32px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  font-size: 18px;
  font-weight: 600;
  color: #00a651;
  flex-wrap: wrap;
}

.home-hero__metric-separator {
  color: #999;
}

.home-hero__cta-group {
  display: flex;
  gap: 16px;
}

.home-hero__cta {
  font-size: 18px;
  font-weight: 600;
  padding: 16px 40px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 200px;
  text-align: center;
  cursor: pointer;
  border: none;
}

.home-hero__cta--primary {
  background: #0078d4;
  color: #fff;
}

.home-hero__cta--primary:hover {
  background: #005a9e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 120, 212, 0.3);
}

.home-hero__cta--secondary {
  background: transparent;
  color: #0078d4;
  border: 2px solid #0078d4;
}

.home-hero__cta--secondary:hover {
  background: #0078d4;
  color: #fff;
}

.home-hero__image-wrapper {
  flex: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-hero__picture {
  display: block;
  width: 100%;
}

.home-hero__image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  display: block;
}

.home-hero__image-placeholder {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, #0078d4 0%, #005786 100%);
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
  .home-hero {
    min-height: auto;
  }

  .home-hero__container {
    flex-direction: column;
    gap: 40px;
  }

  .home-hero__badges {
    gap: 16px;
    justify-content: center;
  }

  .home-hero__badge-logo {
    height: 60px;
    width: 60px;
  }

  .home-hero__badge-name {
    font-size: 10px;
  }

  .home-hero__badge-subtitle {
    font-size: 12px;
  }

  .home-hero__headline {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .home-hero__framework {
    font-size: 18px;
    margin-bottom: 24px;
  }

  .home-hero__description {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .home-hero__metrics {
    gap: 8px;
    padding: 16px 24px;
    font-size: 14px;
  }

  .home-hero__cta-group {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .home-hero__cta {
    font-size: 16px;
    padding: 14px 32px;
    width: 100%;
    max-width: 320px;
  }

  .home-hero__image-placeholder {
    height: 300px;
    font-size: 18px;
  }
}

/* Tablet (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .home-hero__container {
    flex-direction: column;
    gap: 40px;
  }

  .home-hero__badges,
  .home-hero__cta-group,
  .home-hero__metrics {
    justify-content: center;
  }

  .home-hero__headline {
    font-size: 42px;
  }

  .home-hero__framework {
    font-size: 20px;
  }

  .home-hero__description {
    font-size: 18px;
  }

  .home-hero__image-placeholder {
    height: 400px;
  }
}

/* 4A services component css */
.services-4a {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 24px;
}

.services-4a__header {
  text-align: center;
  margin-bottom: 60px;
}

.services-4a__header-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.services-4a__header-subtitle {
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto;
}

.services-4a__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.services-4a__card {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.services-4a__card--hero {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #f0f7ff 0%, #fff 100%);
  border: 2px solid #005786;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: center;
  height: auto;
}

.services-4a__card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.services-4a__card-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-4a__card-illustration-img {
  width: 100%;
  height: auto;
  max-width: 380px;
  display: block;
}

.services-4a__badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 9999px;
  background-color: #dbeafe;
  color: #2563eb;
  margin-bottom: 16px;
  width: fit-content;
}

.services-4a__badge-icon {
  font-size: 1.5rem;
  color: #3b82f6;
  margin-right: 8px;
}

.services-4a__badge-text {
  line-height: 1;
}

.services-4a__hook {
  font-size: 20px;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 20px;
  line-height: 1.3;
  height: 75px;
}

.services-4a__card--hero .services-4a__hook {
  font-size: 2rem;
}

.services-4a__description {
  color: #4b5563;
  margin-bottom: 24px;
  line-height: 1.7;
  height: 185px;
}

.services-4a__card--hero .services-4a__description {
  height: 125px;
}

.services-4a__capabilities {
  list-style: none;
  margin-bottom: 24px;
  padding-left: 0;
  flex-grow: 1;
}

.services-4a__capabilities-item {
  display: flex;
  align-items: flex-start;
  color: #374151;
  margin-bottom: 12px;
  line-height: 1.5;
}

.services-4a__capabilities-item::before {
  content: "✓";
  color: #005786;
  font-weight: bold;
  margin-right: 12px;
  flex-shrink: 0;
}

.services-4a__footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
}

.services-4a__platform {
  font-size: 0.875rem;
  color: #6b7280;
  font-style: italic;
  margin-bottom: 10px;
}

.services-4a__cta {
  display: inline-flex;
  align-items: center;
  color: #005786;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.services-4a__cta:hover {
  color: #0677b4ff;
  transform: translateX(4px);
}

.services-4a__cta::after {
  content: "→";
  margin-left: 8px;
  transition: margin-left 0.2s ease;
}

.services-4a__cta:hover::after {
  margin-left: 12px;
}

.services-4a__card--analytics .services-4a__badge {
  background-color: #d1f0e4;
  color: #10b981;
}

.services-4a__card--analytics .services-4a__badge-icon i {
  color: #10b981;
}

.services-4a__card--agents .services-4a__badge {
  background-color: #f3e8ff;
  color: #8b5cf6;
}

.services-4a__card--agents .services-4a__badge-icon i {
  color: #8b5cf6;
}

.services-4a__card--apps .services-4a__badge {
  background-color: #e6f0ff;
  color: #3b82f6;
}

.services-4a__card--apps .services-4a__badge-icon i {
  color: #3b82f6;
}

@media (max-width: 1024px) {
  .services-4a__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-4a__card--hero {
    grid-template-columns: 1fr;
    padding: 32px;
  }

  .services-4a__card-illustration {
    display: none;
  }
}

@media (max-width: 768px) {
  .services-4a__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services-4a__card {
    padding: 28px;
  }

  .services-4a__hook {
    font-size: 1.5rem;
  }

  .services-4a__card--hero .services-4a__hook {
    font-size: 1.75rem;
  }

  .services-4a__card--hero .services-4a__description {
    height: 185px;
  }
}

/* why-rpatech */
.why-rpatech {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 24px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #1a2332;
  background: #f8f9fa;
}

.why-rpatech__header {
  text-align: center;
  margin-bottom: 60px;
}

.why-rpatech__header-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.why-rpatech__header-subtitle {
  font-size: 16px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.why-rpatech__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-rpatech__card {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  border-top: 4px solid transparent;
}

.why-rpatech__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.why-rpatech__card--production-delivery:hover {
  border-top-color: #00a651;
}

.why-rpatech__card--outcome-focused:hover {
  border-top-color: #0078d4;
}

.why-rpatech__card--platform-agnostic:hover {
  border-top-color: #ff6b35;
}

.why-rpatech__card--full-lifecycle:hover {
  border-top-color: #20b2aa;
}

.why-rpatech__card-header {
  font-size: 3rem;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.why-rpatech__card-headline {
  font-size: 20px;
  font-weight: 700;
  color: #1a2332;
  line-height: 1.3;
}

.why-rpatech__card-description {
  color: #4b5563;
  margin-bottom: 24px;
  line-height: 1.7;
  font-size: 1rem;
}

.why-rpatech__proofs {
  list-style: none;
  margin: 0;
  padding: 0;
}

.why-rpatech__proofs-item {
  display: flex;
  align-items: flex-start;
  color: #374151;
  margin-bottom: 12px;
  line-height: 1.5;
  font-size: 0.95rem;
}

.why-rpatech__proofs-item::before {
  content: "✓";
  color: inherit;
  font-weight: bold;
  margin-right: 12px;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.why-rpatech__card--production-delivery .why-rpatech__proofs-item::before {
  color: #00a651;
}

.why-rpatech__card--outcome-focused .why-rpatech__proofs-item::before {
  color: #0078d4;
}

.why-rpatech__card--platform-agnostic .why-rpatech__proofs-item::before {
  color: #ff6b35;
}

.why-rpatech__card--full-lifecycle .why-rpatech__proofs-item::before {
  color: #20b2aa;
}

@media (max-width: 1024px) {
  .why-rpatech__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .why-rpatech {
    padding: 60px 20px;
  }

  .why-rpatech__header-title {
    font-size: 2rem;
  }

  .why-rpatech__header-subtitle {
    font-size: 1rem;
  }

  .why-rpatech__card {
    padding: 24px;
  }

  .why-rpatech__card-header {
    font-size: 2.5rem;
  }

  .why-rpatech__card-headline {
    font-size: 1.25rem;
    padding-right: 20px;
  }

  .why-rpatech__card-description {
    font-size: 0.95rem;
  }
}

/* Client-stories component css */
.client-videos {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 24px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #1a2332;
  background: #fff;
}

.client-videos__header {
  text-align: center;
  margin-bottom: 60px;
}

.client-videos__header-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.client-videos__header-subtitle {
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.client-videos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.client-videos__card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.client-videos__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.client-videos__card-link {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #f3f4f6;
  overflow: hidden;
  display: block;
  text-decoration: none;
}

.client-videos__card-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-videos__card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease;
}

.client-videos__card-link:hover .client-videos__card-overlay {
  background: rgba(0, 0, 0, 0.5);
}

.client-videos__card-play {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.client-videos__card-link:hover .client-videos__card-play {
  transform: scale(1.1);
  background: #fff;
}

.client-videos__card-play-icon {
  font-size: 32px;
  color: #3b82f6;
  margin-left: 4px;
}

.client-videos__card-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
}

.client-videos__card-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.client-videos__card-industry {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #005786;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.client-videos__card-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 12px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.client-videos__card-client {
  font-size: 15px;
  color: #000;
  margin-bottom: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.client-videos__card-description {
  color: #4b5563;
  line-height: 1.6;
  font-size: 15px;
  margin-top: auto;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.client-videos__cta-wrapper {
  text-align: center;
  margin-top: 24px;
}

.client-videos__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #3b82f6;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.client-videos__cta:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.client-videos__cta-icon {
  font-size: 1.125rem;
  transition: transform 0.3s ease;
}

.client-videos__cta:hover .client-videos__cta-icon {
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .client-videos__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .client-videos {
    padding: 60px 20px;
  }

  .client-videos__header-title {
    font-size: 2rem;
  }

  .client-videos__header-subtitle {
    font-size: 1rem;
  }

  .client-videos__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .client-videos__card-content {
    padding: 20px;
  }

  .client-videos__card-title {
    font-size: 1.125rem;
  }

  .client-videos__card-play {
    width: 64px;
    height: 64px;
  }

  .client-videos__card-play-icon {
    font-size: 24px;
  }
}

/* partners-clients component css */
.partners-clients {
  width: 100%;
  padding: 0;
  margin: 0;
}

.partners-clients__section {
  padding: 80px 20px;
}

.partners-clients__container {
  max-width: 1200px;
  margin: 0 auto;
}

.partners-clients__header {
  margin-bottom: 60px;
  text-align: center;
}

.partners-clients__header-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.partners-clients__header-subtitle {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.partners-clients__partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 48px;
  align-items: center;
  justify-items: center;
  margin-bottom: 20px;
}

.partners-clients__partner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.partners-clients__partner-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  width: 100%;
}

.partners-clients__partner-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.partners-clients__partner-link:focus {
  outline: 2px solid #0066cc;
  outline-offset: 4px;
  border-radius: 4px;
}

.partners-clients__partner-logo {
  max-width: 180px;
  max-height: 100px;
  width: auto;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.partners-clients__partner--tier-1 .partners-clients__partner-logo {
  max-width: 200px;
  max-height: 150px;
}

.partners-clients__partner--tier-2 .partners-clients__partner-logo {
  max-width: 160px;
  max-height: 100px;
}

.partners-clients__partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.partners-clients__partner-badge {
  margin-top: 16px;
  text-align: center;
}

.partners-clients__partner-badge-text {
  font-size: 13px;
  color: #666;
  font-style: italic;
  line-height: 1.4;
}

.partners-clients__clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  align-items: center;
  justify-items: center;
}

.partners-clients__client {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 80px;
}

.partners-clients__client-logo {
  max-width: 140px;
  max-height: 100px;
  width: auto;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: opacity 0.3s ease;
  cursor: default;
}

.partners-clients__client-logo:hover {
  opacity: 1;
}

@media (max-width: 1023px) {
  .partners-clients__header-title {
    font-size: 32px;
  }

  .partners-clients__header-subtitle {
    font-size: 16px;
  }

  .partners-clients__partners-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }

  .partners-clients__clients-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
  }
}

@media (max-width: 767px) {
  .partners-clients__section {
    padding: 60px 20px;
  }

  .partners-clients__header {
    margin-bottom: 40px;
  }

  .partners-clients__header-title {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .partners-clients__header-subtitle {
    font-size: 15px;
  }

  .partners-clients__partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .partners-clients__partner-logo {
    max-width: 140px;
    max-height: 70px;
  }

  .partners-clients__partner--tier-1 .partners-clients__partner-logo {
    max-width: 160px;
    max-height: 80px;
  }

  .partners-clients__partner-badge-text {
    font-size: 12px;
  }

  .partners-clients__clients-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .partners-clients__client-logo {
    max-width: 100px;
    max-height: 60px;
  }
}

@media (max-width: 480px) {
  .partners-clients__section {
    padding: 50px 16px;
  }

  .partners-clients__header-title {
    font-size: 24px;
  }

  .partners-clients__header-subtitle {
    font-size: 14px;
  }

  .partners-clients__partners-grid {
    gap: 24px;
  }

  .partners-clients__clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .partners-clients__partner-logo,
  .partners-clients__client-logo {
    transition: none;
  }
}

.partners-clients__partner:focus-within .partners-clients__partner-logo,
.partners-clients__client:focus-within .partners-clients__client-logo {
  outline: 2px solid #0066cc;
  outline-offset: 4px;
}

/* Date: 2025-10-17
   Author: Adarsh Goutam
   File: assets/css/style.css
   Purpose: Service Page CSS
*/

/* 1. TOP BLOCK & CONTAINER */
.solution-showcase {
  padding: 60px 0;
  margin: 30px 0;
  /* Background: light grey/blue */
  /* background-color: #f4f7fa; */
  font-family: sans-serif;
}

.solution-showcase__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Title */
.solution-showcase__title {
  font-size: 28px;
  font-weight: 800;
  /* Text color: dark grey */
  color: #333;
  text-align: center;
  margin-bottom: 40px;
}

.solution-showcase__title--accent {
  /* Accent color: bright blue */
  color: #005786;
}

/* 2. MAIN CONTENT (2 COLUMNS) - Flexbox for main columns */
.solution-showcase__content {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.solution-showcase__column {
  flex: 1; /* Equal width for both columns */
  padding: 20px;
  /* Background: white */
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Column Headers */
.solution-showcase__header {
  font-size: 1.5rem;
  font-weight: 700;
  /* Header color: deep blue */
  color: #1e3a8a;
  /* Accent underline */
  border-bottom: 2px solid #005786;
  padding-bottom: 5px;
  margin-bottom: 20px;
  text-align: center;
}

/* 3. CARD GRID (INTERNAL LAYOUT) - Grid for cards */
.solution-showcase__grid {
  display: grid;
  /* Create 2 mini-columns inside the main column */
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

/* 4. CARD (BLOCK) - Static style, no hover/pointer */
.solution-showcase__card {
  display: flex;
  align-items: center;
  padding: 15px;
  /* Card background: light blue tint */
  background-color: #eaf1f7;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.solution-showcase__icon {
  font-size: 1.25rem;
  /* Icon color: deep blue */
  color: #1e3a8a;
  margin-right: 10px;
}

.solution-showcase__text {
  font-weight: 500;
  /* Text color: dark grey */
  color: #333;
  line-height: 1.2;
}

/* 5. FOOTER STATEMENT */
.solution-showcase__footer {
  text-align: center;
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 600;
  /* Text color: muted grey */
  padding: 15px 0;
  border-top: 1px solid #ddd;
  max-width: 800px;
  margin: 0 auto;
}

/* 6. RESPONSIVE DESIGN (Stacks columns on smaller screens) */
@media (max-width: 768px) {
  .solution-showcase__content {
    flex-direction: column;
    gap: 20px;
  }

  .solution-showcase__grid {
    /* On small screens, cards stack better in 1-2 columns */
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .solution-showcase__title {
    font-size: 2rem;
  }
}

/* Date: 2025-10-21
   Author: Adarsh Goutam
   File: assets/css/style.css
   Purpose: agents Page CSS
*/

.ai-agents-how-it-happens {
  padding: 60px 0;
  text-align: center;
  font-family: Arial, sans-serif;
  margin: 30px 0;
}

.ai-agent-section-header {
  margin-bottom: 40px;
}

.ai-agent-section-header h2 {
  font-size: 28px;
  font-weight: 700;
}

.ai-agent-section-header p {
  font-size: 16px;
  margin: 20px 0 45px 0;
}

.ai-agent-visual {
  margin: 40px 0;
}

.ai-agent-visual img {
  max-width: 900px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.ai-agent-capabilities {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}

.ai-capability-item {
  flex: 1 1 30%;
  padding: 0 30px;
  box-sizing: border-box;
}

.capability-icon {
  color: #005786;
  margin-bottom: 15px;
}

.capability-icon i {
  font-size: 3rem;
}

.capability-title {
  font-size: 20px;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 10px;
}

.capability-description {
  font-size: 16px;
  color: #495057;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .ai-capability-item {
    flex: 1 1 100%;
    padding: 20px 15px;
  }

  .ai-agent-section-header h2 {
    font-size: 2rem;
  }
}

/* agents success stories */
.rpa-agents-action {
  background-color: #f9fafb;
  padding: 20px;
  margin: 40px 0;
}

.rpa-agents-action__container {
  max-width: 1200px;
  margin: 0 auto;
}

.rpa-agents-action__heading {
  font-size: 28px;
  text-align: center;
  margin-bottom: 10px;
}

.rpa-agents-action__subtext {
  font-size: 16px;
  text-align: center;
  width: 60%;
  margin: auto auto 60px;
  line-height: 1.6;
}

.rpa-agents-action__card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .rpa-agents-action__card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.rpa-agents-action__card {
  background-color: #fff;
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.rpa-agents-action__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.rpa-agents-action__card-accent {
  height: 8px;
  width: 100%;
}

.rpa-agents-action__card-content {
  padding: 30px;
  text-align: center;
}

.rpa-agents-action__icon-container {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rpa-agents-action__icon-inner {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rpa-agents-action__icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.rpa-agents-action__card-title {
  font-size: 20px;
  color: #005786;
  margin-bottom: 8px;
  line-height: 1.2;
}

.rpa-agents-action__card-description {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 25px;
  padding: 10px 28px;
}

.rpa-agents-action__learn-more-btn {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.rpa-agents-action__learn-more-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* Date: 2025-10-24
   Author: Adarsh Goutam
   File: assets/css/style.css
   Purpose: Custom app Page CSS
*/
.split-list-section {
  margin: 40px 0;
  padding: 0 20px;
}

.split-list-section h4 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 15px;
}

.split-list-section p {
  font-size: 16px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* Container */
.split-list-container {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
}

/* Each row */
.split-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 10px 0;
}

/* Challenge column */
.challenge {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex: 1 1 280px;
  min-width: 200px;
  font-weight: bold;
  color: #005786;
  gap: 10px;
  padding-right: 15px;
}

/* Solution column */
.solution {
  flex: 1 1 450px;
  min-width: 250px;
  color: #676767;
  font-size: 14px;
  line-height: 1.5;
  padding-left: 15px;
}

/* Icon styling */
.challenge i {
  font-size: 24px;
  flex-shrink: 0;
}

/* Tablet */
@media (max-width: 992px) {
  .split-list-section h4 {
    font-size: 24px;
  }

  .split-list-section p {
    font-size: 15px;
    width: 90%;
    margin-bottom: 40px;
  }

  .challenge {
    flex: 1 1 240px;
    font-size: 15px;
  }

  .solution {
    flex: 1 1 350px;
    font-size: 13px;
  }

  .challenge i {
    font-size: 22px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .split-list-section {
    margin: 30px 0;
    padding: 0 15px;
  }

  .split-list-section h4 {
    font-size: 22px;
  }

  .split-list-section p {
    font-size: 14px;
    width: 100%;
    margin-bottom: 30px;
  }

  .split-list-container {
    gap: 25px;
  }

  .split-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #005786;
  }

  .challenge {
    justify-content: flex-start;
    flex: 1 1 100%;
    font-size: 16px;
    padding-right: 0;
  }

  .solution {
    flex: 1 1 100%;
    padding-left: 34px;
    font-size: 13px;
  }

  .challenge i {
    font-size: 20px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .split-list-section h4 {
    font-size: 20px;
  }

  .split-list-section p {
    font-size: 13px;
  }

  .challenge {
    font-size: 15px;
  }

  .solution {
    font-size: 12px;
    padding-left: 30px;
  }

  .challenge i {
    font-size: 18px;
  }
}

/* Date: 2025-10-24
   Author: Adarsh Goutam
   File: assets/css/style.css
   Purpose: Training Page CSS
*/

/* Main Section */
.explore-categories {
  padding: 80px 20px;
  background: #ffffff;
}

.explore-categories__container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Header Section */
.explore-categories__header {
  text-align: center;
  margin-bottom: 60px;
}

.explore-categories__title {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 15px 0;
  line-height: 1.2;
}

.explore-categories__subtitle {
  font-size: 18px;
  margin: 0;
  font-weight: 400;
}

/* Grid Layout */
.explore-categories__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Card Base Styles */
.explore-categories__card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 3px solid transparent;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Card Color Variants */
.explore-categories__card--orange .explore-categories__card-icon {
  background: linear-gradient(135deg, #ff9800 0%, #ffb74d 100%);
}

.explore-categories__card--green .explore-categories__card-icon {
  background: linear-gradient(135deg, #28a745 0%, #31c754 100%);
}

.explore-categories__card--purple .explore-categories__card-icon {
  background: linear-gradient(135deg, #ab47bc 0%, #ce93d8 100%);
}

/* Card Hover Effects */
.explore-categories__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.explore-categories__card--orange:hover {
  border-color: #ff9800;
}

.explore-categories__card--green:hover {
  border-color: #28a745;
}

.explore-categories__card--purple:hover {
  border-color: #ab47bc;
}

/* Card Icon Section */
.explore-categories__card-icon {
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
}

.explore-categories__card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.explore-categories__card:hover .explore-categories__card-icon img {
  transform: scale(1.05);
}

/* Card Content Section */
.explore-categories__card-content {
  padding: 25px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  justify-content: space-between;
}

.explore-categories__card-content ul {
  padding: 10px 26px;
}

.explore-categories__card-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.explore-categories__card-intro {
  font-size: 15px;
  color: #444;
  margin-bottom: 15px;
}

.explore-categories__card-description {
  text-align: left;
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  padding-left: 0;
}

.explore-categories__card-description li {
  margin-bottom: 6px;
}

/* Responsive */
@media (max-width: 1024px) {
  .explore-categories__title {
    font-size: 40px;
  }

  .explore-categories__subtitle {
    font-size: 18px;
  }

  .explore-categories__card-icon {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .explore-categories__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .explore-categories__title {
    font-size: 32px;
  }

  .explore-categories__subtitle {
    font-size: 16px;
  }

  .explore-categories__card-icon {
    height: 170px;
  }
}

@media (max-width: 480px) {
  .explore-categories__title {
    font-size: 28px;
  }

  .explore-categories__subtitle {
    font-size: 15px;
  }

  .explore-categories__card-icon {
    height: 160px;
  }

  .explore-categories__card-title {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .explore-categories__card-description {
    font-size: 13px;
    line-height: 1.6;
  }
}
