 /* ===== BODY FIX (PREVENT OVERLAP) ===== */
 body {
  padding-top: 75px;
  font-family: 'IBM Plex Sans', sans-serif;
  color: #19252F;
 }

 @media (max-width: 991px) {
  body {
   padding-top: 70px;
  }
 }

/* ===== NAVBAR ===== */
.navbar {
 transition: all 0.4s ease;
 padding: 15px 0;
 background: transparent;
}

/* Scroll effect */
.navbar.scrolled {
 background: #fff !important;
 box-shadow: 0 5px 20px rgba(0,0,0,0.08);
 padding: 10px 0;
}

/* NAV LINKS */
.navbar-nav .nav-link {
 position: relative;
 font-weight: 500;
 margin: 0 10px;
 color: #333 !important;
}

/* Underline animation */
.navbar-nav .nav-link::after {
 content: "";
 position: absolute;
 width: 0%;
 height: 2px;
 left: 0;
 bottom: 0;
 background: #0d6efd;
 transition: 0.3s;
}

.navbar-nav .nav-link:hover::after {
 width: 100%;
}

/* ===== DROPDOWN ===== */
.dropdown-menu {
 border: none;
 border-radius: 10px;
 padding: 10px 0;
 opacity: 0;
 transform: translateY(10px);
 visibility: hidden;
 transition: all 0.3s ease;
 box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Desktop hover */
@media (min-width: 992px) {
 .dropdown:hover .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  display: block;
 }
}

/* Dropdown items */
.dropdown-item {
 padding: 10px 20px;
 transition: 0.2s;
}

.dropdown-item:hover {
 background: #f8f9fa;
 padding-left: 25px;
}

/* BUTTON */
.nav-btn {
 background: #0d6efd;
 color: #fff;
 padding: 8px 18px;
 border-radius: 25px;
 transition: 0.3s;
}

.nav-btn:hover {
 background: #0b5ed7;
 color: #fff;
}

/* MOBILE FIX */
@media (max-width: 991px) {
 .dropdown-menu {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
  box-shadow: none;
 }
 .navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
  background-color: #fff;
  padding: 10px 10px 20px;
 }
}

/* Start Banner Code CSS */
.hero {
 padding: 100px 0px 80px;
 background-image: url('../../assets/images/homepage/agentic-bpo-banner.webp');
 background-size: cover;
 background-position: right;
}
.hero h1{
 font-weight: 700;
 margin-bottom: 20px;
 color: #fff;
}
.hero p {
 color: #fff;
 line-height: 1.7;
}
/* Wrapper */
.cta-wrapper {
 justify-content: left;
}

/* Base button */
.cta-btn {
 position: relative;
 padding: 12px 28px;
 border-radius: 50px;
 font-weight: 500;
 text-decoration: none;
 display: inline-block;
 transition: all 0.4s ease;
 overflow: hidden;
 white-space: nowrap;
}

/* ===== PRIMARY BUTTON (BLUE) ===== */
.primary-btn {
 background: linear-gradient(135deg, #0d6efd, #0a58ca);
 color: #fff;
 filter: drop-shadow(0 10px 20px rgba(0, 139, 255, 0.36));
}

/* Hover animation */
.primary-btn:hover {
 transform: translateY(-2px);
 box-shadow: 0 8px 20px rgba(13,110,253,0.3);
}

/* Shine effect */
.primary-btn::before {
 content: "";
 position: absolute;
 top: 0;
 left: -75%;
 width: 50%;
 height: 100%;
 background: rgba(255,255,255,0.3);
 transform: skewX(-20deg);
 transition: 0.5s;
}

.primary-btn:hover::before {
 left: 125%;
}


/* ===== SECONDARY BUTTON (WHITE/GRAY) ===== */
.secondary-btn {
 background: #f1f3f5;
 color: #333;
}

/* Hover */
.secondary-btn:hover {
 background: #e2e6ea;
 transform: translateY(-2px);
 box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.primary-btn1 {
 background: linear-gradient(135deg, #0a0a0a, #212223);
 color: #fff;
}
.primary-btn1:hover {
 transform: translateY(-2px);
 box-shadow: 0 8px 20px rgba(13,110,253,0.3);
}
.primary-btn1::before {
 content: "";
 position: absolute;
 top: 0;
 left: -75%;
 width: 50%;
 height: 100%;
 background: rgba(255,255,255,0.3);
 transform: skewX(-20deg);
 transition: 0.5s;
}
.primary-btn1:hover::before {
 left: 125%;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 576px) {
 .cta-btn {
  width: 100%;
  text-align: center;
 }
.banner-content
{
background-color: rgb(11 35 51 / 70%);
    padding: 20px 20px 20px;
    margin-bottom: 20px;
}
 .cta-wrapper {
  flex-direction: column;
  align-items: stretch;
 }
}

/* MAIN BOX */
.info-box {
 margin-top: 50px;
 padding: 30px;
 border-radius: 20px;
 background: rgba(255, 255, 255, 0.85);
 backdrop-filter: blur(10px);
 -webkit-backdrop-filter: blur(10px);

 border: 2px solid rgba(255,255,255,0.6);

 box-shadow: 
 inset 0 2px 8px rgba(255,255,255,0.6),
 0 8px 30px rgba(0,0,0,0.15);

 position: relative;
}

/* OUTER GLOW BORDER (like image) */
.info-box::before {
 content: "";
 position: absolute;
 inset: -12px;
 border-radius: 25px;
 background: rgba(255,255,255,0.25);
 z-index: -1;
}

/* TEXT */
.info-box li {
 font-size: 15px;
 color: #333;
 line-height: 1.6;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
 .info-box {
  padding: 20px;
  border-radius: 15px;
 }
.banner-content
{
background-color: rgb(11 35 51 / 70%);
    padding: 20px 20px 20px;
    margin-bottom: 20px;
}
 .info-box::before {
  inset: -8px;
 }

 .info-box li {
  font-size: 14px;
 }
}

.info-box1 {
 margin-top: 50px;
 border-radius: 20px;
 background: #fff;
 border: 2px solid rgba(255, 255, 255, 0.6);
 box-shadow: inset 0 2px 8px rgba(255, 255, 255, 0.6), 0 8px 30px rgba(0, 0, 0, 0.15);
 position: relative;
 z-index: 99;
}
.info-box1::before {
 content: "";
 position: absolute;
 inset: -12px;
 border-radius: 25px;
 background: rgb(210 210 210 / 25%);
 z-index: -1;
}
.info-box1 ul 
{
 padding: 30px;
 border-radius: 20px;
 background: #fff;
 border: 2px solid rgba(255, 255, 255, 0.6);
 box-shadow: inset 0 2px 8px rgba(255, 255, 255, 0.6), 0 8px 30px rgba(0, 0, 0, 0.15);
 position: relative;
}

/* TEXT */
.info-box1 li {
 color: #333;
 line-height: 1.6;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
 .info-box1 {
  padding: 20px;
  border-radius: 15px;
 }

 .info-box1::before {
  inset: -8px;
 }

 .info-box1 li {
  text-align: left;
 }
}
/* End Banner Code CSS */

/* Start Outcome Services Code CSS */
.outcome-first
{
 padding: 50px 0;
}
.outcome-first h2
{
 margin-bottom: 25px;
 font-size: 2.5rem;
}
.outcome-first h2 span 
{
 color: #008BFF;
}
.box-minus
{
 margin-top: -9%;
}
/* End Outcome Services Code CSS */

/* Start Footer CSS */
.footer {
 background: #0f2a36;
 color: #cfd8dc;
 padding: 60px 0;
 font-size: 14px;
}

.footer h6 {
 color: #ffffff;
 font-weight: 600;
 margin-bottom: 20px;
}

.footer a {
 color: #cfd8dc;
 text-decoration: none;
 display: block;
 margin-bottom: 8px;
 transition: 0.3s;
}

.footer a:hover {
 color: #ffffff;
 padding-left: 3px;
}

.footer-logo {
 font-size: 22px;
 font-weight: bold;
 color: #ffffff;
 margin-bottom: 30px;
}

.footer-bottom {
 border-top: 1px solid rgba(255,255,255,0.1);
 margin-top: 40px;
 padding-top: 20px;
 text-align: right;
 font-size: 13px;
 color: #9fb3bd;
}


#scrollTopBtn {
 position: fixed;
 bottom: 20px;
 right: 20px;
 display: none;
 z-index: 999;
 border-radius: 50%;
 width: 45px;
 height: 45px;
 font-size: 18px;
}

/* Responsive Fix */
@media (min-width: 768px) and (max-width: 991px) {
 .outcome-first {
  padding: 22px 0 20px;
 }
 .footer-bottom {
  text-align: center;
 }
 .box-minus {
  margin-top: 6%;
 }
 .outcome-first .mb-5 {
  margin-bottom: 0rem !important;
 }
}
/* End Footer CSS */

/*  Start Responisve CSS */
@media (max-width: 767px) {
 .box-minus {
  margin-top: 9%;
 }
 .outcome-first {
  padding: 20px 0 20px;
 }
 .outcome-first .mb-5 {
  margin-bottom: 2rem !important;
 }
}
/* End Responsive CSS */

/* Start Scroll Up Animation CSS */
.fade-up {
 opacity: 0;
 transform: translateY(60px);
 transition: all 0.3s ease;
}

.fade-up.show {
 opacity: 1;
 transform: translateY(0);
}
/* End Scroll Up Animation CSS */



/* Start Scroll Fixed Timeline Border CSS */
.timeline {
 position: fixed;
 left: 0px;
 top: 55px;
 height: 100vh;
 width: 120px;
 display: flex;
 align-items: center;
 pointer-events: none;
 z-index: 999;
}

.line {
 position: absolute;
 left: 24px;
 top: 20px;
 bottom: 20px;
 width: 2px;
 background: rgb(0 0 0 / 20%);
 border-radius: 1px;
}

.dots-container {
 position: relative;
 height: 100vh;
 width: 48px;
}

.dot {
 position: absolute;
 left: 24px;
 width: 8px;
 height: 8px;
 background: rgb(57 52 52 / 30%);
 border-radius: 50%;
 transform: translateX(-50%);
 transition: all 0.3s ease;
 z-index: 1;
}

/* Active dot highlighted */
.dot.active {
 width: 14px;
 height: 14px;
 background: #8b8b8b;
 border: 2px solid rgba(255, 255, 255, 0.4);
}

.active-dot {
 position: fixed;
 left: 33px;
 display: flex;
 align-items: center;
 gap: 3px;
 font-size: 9px;
 pointer-events: none;
 color: #222;
 background: #fff;
 padding: 3px;
 border-radius: 5px;
 font-weight: 600;
 text-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
 transition: top 0.3s ease;
 user-select: none;
}

.active-dot .section-number {
 font-family: monospace;
 font-size: 9px;
 color: #222;
}
/* End Scroll Fixed Timeline Border CSS */


/*  Start Services Page CSS */
.services-explore
{
 padding: 70px 0;
}
.services-explore h1 span 
{
 color: #1e88ff;
}
.filter-wrapper {
 padding: 40px 20px;
 display: flex;
 justify-content: center;
}
.filters {
 max-width: 1100px;
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 gap: 16px 18px;
}
.pill {
 display: inline-block;
 padding: 10px 22px;
 border-radius: 999px;
 border: 1.5px solid #1e88ff;
 color: #1e88ff;
 text-decoration: none;
 font-size: 15px;
 font-weight: 500;
 transition: all 0.3s ease;
 white-space: nowrap;
}
.pill.active {
 background: #1e88ff;
 color: #fff;
}
.pill:hover {
 background: #1e88ff;
 color: #fff;
}

/*  Start Develop Agents Code CSS */
.develop-agents
{
 padding: 0px 0 70px;
}
.develop-agents h2 span 
{
 color: #1e88ff;
}
.process-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px 0px 25px 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid #c6d6e8;
    height: 100%;
    position: relative;
    overflow: hidden;
    filter: drop-shadow(0 8px 11px rgba(0, 139, 255, 0.20));
}
.process-card:hover {
    background: linear-gradient(135deg, #0d6efd, #4da3ff);
    transform: translateY(-8px);
}
.icon-box {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #e9f2ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e88ff;
    font-size: 18px;
    margin-bottom: 15px;
    transition: 0.4s;
}
.process-title {
    font-weight: 600;
    color: #1e88ff;
    font-size: 18px;
    margin-bottom: 20px;
    padding-right: 25px;
    transition: 0.4s;
    border-bottom: 1px solid #B2E5FF;
    padding-bottom: 20px;
}
.process-text {
    color: #19252F;
    transition: 0.4s;
    padding-right: 25px;
}

/* Days */
.process-days {
    font-size: 28px;
    font-weight: 700;
    color: #1e88ff;
    margin-top: 20px;
    transition: 0.4s;
}

/* Hover Text Change */
.process-card:hover .process-title,
.process-card:hover .process-text,
.process-card:hover .process-days {
    color: #fff;
}

.process-card:hover .icon-box {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

/* Responsive spacing */
@media (max-width: 768px) {
    .process-card {
        margin-bottom: 20px;
    }
}
/*  End Develop Agents Code CSS */

/* Start Agent Directory Code CSS */
.agent-directory
{
 background-color: #F7F7F7;
 padding: 70px 0;
}
.directory-box {
    background-color: #fff;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #ccc;
    filter: drop-shadow(0 8px 11px rgba(0, 139, 255, 0.20));
    box-shadow: 0 10px 25px rgb(213 183 183 / 8%);
    position: relative;
    overflow: hidden;
    height: 96%;
}

/* Right border animation */
.directory-box::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 6px;
    border-radius: 20px;
    height: 0%;
    background: #008BFF;
    transition: all 0.4s ease;
    transform: translateY(-50%);
}
.cta-btn1 {
    position: relative;
    padding: 9px 20px 10px;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
    overflow: hidden;
    white-space: nowrap;
}
/* Hover effect */
.directory-box:hover::after {
    height: 100%;
}
.directory-box p span {
    color: #008BFF;
    font-weight: 500;
}
.modal.fade .modal-dialog {
    transform: scale(0.8);
    transition: 0.3s ease;
}

.modal.show .modal-dialog {
    transform: scale(1);
}
.popup-css p span
{
    color: #008BFF;
    font-weight: 600;
}
.popup-css .modal-header .btn-close {
    padding: calc(var(--bs-modal-header-padding-y) * .5) calc(var(--bs-modal-header-padding-x) * .5);
    margin: calc(-.5 * var(--bs-modal-header-padding-y)) calc(-.5 * var(--bs-modal-header-padding-x)) calc(-.5 * var(--bs-modal-header-padding-y)) auto;
    top: 13px;
    position: absolute;
    right: 13px;
    background-color: #e6dede;
    font-size: 11px;
    padding: 10px;
    border-radius: 50px;
}
.popup-css p
{
        font-size: 15px;
    line-height: 26px;
}
/* End Agent Directory Code CSS */

/*  End Services Page CSS */