.header-sticky.is-sticky .nav-link {
  color: #172c45 !important;
}

.header-sticky.is-sticky .nav-link:hover {
  
}


.header-sticky.is-sticky .header-btn .btn-default {
  border: 0.5px solid #172c45 !important;
  color: #172c45;
}


.header-sticky.is-sticky .navbar {
    padding:10px;
}


.is-sticky {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding:0px !important;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #000000 !important;
  
  animation: fadeInDown 0.4s both;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


img.logo-default {
    filter: brightness(0) invert(1) !important;
}

.why-choose-item {
    border-radius: 8px;
    padding: 0px;
    margin: 0px;
}

.why-choose-item .icon-box {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    border-radius: 50%;
    margin-right: 15px;
}


.why-choose-item-header {
    display: flex;
    align-items: flex-start; 
    margin-top: 10px;     
    margin-bottom: 10px;     
}

.icon-box {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;          
}

.why-choose-item-title p {
    margin: 0;               
    line-height: 1.5;        
    padding-top: 8px;        
}



@media (min-width: 992px) {
    /* The container must be flex-start so the left col can 'slide' */
    .row.align-items-flex-start {
        display: flex;
        align-items: flex-start;
    }

    .sticky-sidebar {
        position: -webkit-sticky; /* For Safari */
        position: sticky;
        top: 100px; /* Adjust this based on your sticky header height */
        z-index: 10;
    }
}

/* Optional: Ensure the list items have enough bottom margin 
   to make the scroll feel significant */
.what-we-item {
    margin-bottom: 30px;
}


.work-steps-item {
    padding:0px;
    margin:0px;
    margin-top:20px;
    margin-bottom:20px;

    padding-bottom:10px;
    padding-top:10px;

}


/* Force the container to be a row */
.about-us-boxes {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important; /* Prevents wrapping on desktop */
    gap: 20px; /* Space between boxes */
    align-items: stretch !important;
    width: 100% !important;
}

/* Force each box to take up exactly one-third */
.about-counter-box {
    flex: 1 !important;
    width: 33.33% !important;
    margin: 0 !important;
    padding: 20px !important;
    display: flex !important;
    flex-direction: column !important;
}

/* Align the Number and the Label side-by-side */
.about-counter-title {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    margin-bottom: 15px !important;
}

.about-counter-title h2 {
    margin: 0 !important;
    line-height: 1 !important;
}

.about-counter-title h3 {
    margin: 0 0 0 10px !important; /* Space to the left of the label */
    font-size: 1.1rem !important; /* Adjust if the label is too big */
}

/* Responsive: Stack on mobile only */
@media (max-width: 768px) {
    .about-us-boxes {
        flex-direction: column !important;
    }

    .about-counter-box {
        margin:15px !important;
        width: 100% !important;
    }

}

.footer-copyright-text {
    margin:0px;
    padding:0px;

    padding-top:20px;
    padding-bottom:20px;

}

.testimonial-content {
    width:100% !important;
}

.portal-section {
    padding: 80px 0;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.portal-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.portal-header h3 {
    /* color: var(--primary-color); */
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    font-weight: 700;
}

.portal-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin: 15px 0;
}

/* Feature Row Layout */
.portal-feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 100px;
}

.portal-feature.reverse {
    flex-direction: row-reverse;
}

.portal-text, .portal-image {
    flex: 1;
}

/* Typography & Icons */
.feature-icon {
    font-weight: 800;
    color: rgba(37, 99, 235, 0.1);
    font-size: 3rem;
    line-height: 1;
    margin-bottom: -20px;
}

.portal-text h4 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.portal-text p {
    line-height: 1.7;
    font-size: 1.1rem;
}

.image-placeholder {
    background: var(--bg-light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

.image-placeholder:hover {
    transform: translateY(-5px);
}

.image-placeholder img {
    width: 100%;
    display: block;
}

/* Buttons */
.portal-btns {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .portal-feature, .portal-feature.reverse {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .portal-btns {
        justify-content: center;
    }
    
    .portal-header h2 {
        font-size: 2rem;
    }
}

.portal-section h3 {
    margin-bottom:20px;
}

.contact-info-item {
    padding:0px;
    margin:0px;

    margin-top:15px;
    margin-bottom:15px;

    padding-top:10px;
    padding-bottom:10px;

}


.contact-us-box {
    padding:0px;
    background-color:transparent;
}

@media (max-width: 992px) {
    .contact-info-item {
        font-size:12px !important;
    }

    .icon-box {
        padding:0px !important;
    }

    .contact-info-item h3{
        font-size:12px !important;
    }

    .contact-us-box {
        padding:0px;
        background-color:transparent;
    }

}

.page-header {
    padding:120px !important;
    padding-top:150px !important;
}

@media (max-width: 992px) {

    .page-header {
        padding:0px !important;
        padding-top:110px !important;
        /* padding-bottom:110px !important; */
        padding-bottom:80px !important;
    }

}