:root{
    --primary:#1e3b5b;
    --secondary:#8EACCD;
    --secondary-light:#D7E5CA;
    --lightbg:#F9F3CC;
    --lightbb:#D2E0FB;
}
main#main-content {
    margin-top: 5rem !important;
}
.navbar.bg-dark{
    background-color: var(--primary) !important;
}
    /* Sidebar Styles */
    #sidebarCollapse{
        position: absolute;
        top: 1rem;
        right: 2rem;
        background-color: #fff;
        display: none;
    }
    #sidebarCollapse img{
    width: 3rem;
    background-color: #fff;
    }
    #sidebar {
        width: 250px;
        position: fixed;
        top: 0;
        right: -250px;
        height: 100%;
        background: var(--primary);
        z-index: 1000;
        transition: all 0.3s;
    }
    #sidebar.active {
        right: 0;
    }
    #sidebar .sidebar-header {
        padding: 20px;
        background: var(--secondary-light);
    }
    #sidebar .list-unstyled {
        padding: 0;
        margin: 0;
        list-style: none;
    }
    #sidebar .list-unstyled li {
        margin: 0;
    }
    #sidebar .list-unstyled li a {
        color: #fff;
        text-decoration: none;
        display: block;
        padding: 15px;
        border-bottom: 1px solid var(--lightbg);
    }
    #sidebar .list-unstyled li a:hover {
        background: var(--primary);
    }

    /* Overlay */
    #overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 900;
        display: none;
    }
    #overlay.active {
        display: block;
    }
    /* Floating Social Media Links */
.social-links {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.social-links a {
    display: block;
    margin: 10px 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    background-color: #007bff;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    font-size: 1.2rem; /* Adjust font size as needed */
}

.social-links a:hover {
    background-color: #0056b3;
    transform: scale(1.1);
}

.hero {
    background: url('/assets/img/hero-bg.jpg') no-repeat center center/cover;
    color: black;
    text-align: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #dadada;
    background-blend-mode: overlay;
}

/* Section Padding */
section {
    padding: 50px 0;
    opacity: 0;
    /* Initially hidden for lazy loading */
}

/* Testimonials Section */
.testimonials {
    background-color: #f8f9fa;
}

/* Footer Section */
.footer {
    background-color: #343a40;
    color: white;
    padding: 20px 0;
}

/* Bottom Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}
body {
    background-color: #f8f9fa;
    color: #000;
  }
.nav-link {
    color: rgb(232 243 255) !important;
}

/* Navigation Animation */
.navbar-nav .nav-link {
    transition: color 0.3s, transform 0.3s;
    border: 1px solid #1e3b5b;
}

.navbar-nav .nav-link:hover {
    color: #ffffff !important;
    transform: translateY(0px) !important;
    background: #1a3450;
    opacity: 1;
    border-radius: 4px;
    border: 1px solid #2e588a;
}
.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #007bff;
  }
  .tip {
    color: orange;
    font-weight: bold;
  }
  .benefit {
    color: green;
    font-weight: bold;
  }
  #articles .card-text{
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    white-space: pre-wrap;
  }
  #articles .card-title {
    min-height: 3rem;
}
button.accordion-button {
    background: #f2f9ff;
    font-weight: 600;
}
.accordion-button:not(.collapsed) {
    background-color:  #1e3b5b;
    font-weight: 600;    
    color: #fff;
}
.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #1e3b5b;
    --bs-btn-border-color: #1e3b5b;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #264669;
    --bs-btn-hover-border-color: #264669;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #264669;
    --bs-btn-active-border-color: #264669;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #1e3b5b;
    --bs-btn-disabled-border-color: #1e3b5b;
}
.btn:hover {
    color: var(--bs-btn-hover-color);
    background-color: var(--bs-btn-hover-bg);
    border-color: var(--bs-btn-hover-border-color);
}

.fade-in {
    animation: fadeIn 1s ease-in-out;
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .slide-up {
    animation: slideUp 1s ease-in-out;
  }

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

  .transition {
    transition: all 0.3s ease;
  }
  .social-links{
    display: none;
  }
  .nav-tabs li.nav-item .nav-link {
    background: #fff0;
    color: #1e3b5b !important;
    /* border-left: 1px solid #ccc; */
}
.nav-tabs li.nav-item  .nav-link.active {
    background-color: #5699e0 !important;
    color: rgb(255 255 255) !important;
  }
  /* .nav-tabs li.nav-item .nav-link {
    color: rgb(232 243 255) !important;
} */
.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: #1e3b5b;
}
.carousel-control-next, .carousel-control-prev{
    justify-content: flex-start;
}
.carousel-control-next{
    justify-content: flex-end;
}
div#portfolioModal {
    align-content: center;
}
.logo-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: normal;
}

.logo-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    width: 18%;
    border: 1px solid #ddd;
    transition: transform 0.3s ease-in-out;
}

.logo-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease-in-out;
}
@media only screen and (max-width : 991.5px) {
        iframe.linkedinpost {
           display: none;
        }
    .grid3fr, .grid2fr{
        grid-template-columns: 1fr !important;
    }
#navbarload a.nav-link {
    padding: 1rem;
    font-size: 1.2rem;
}
#navbarload ul.navbar-nav {
    margin-top: 2rem;
}
}

#main-content section{
    padding: 0%;
    opacity: 1;
}
#main-content .accordion-body ul li:has(a), #main-content .accordion-body ul li,#main-content .container ul:not(.nav.nav-tabs) li {
    list-style: auto;
    padding: 0.3rem;
    font-size: 1rem;
}
.grid3fr{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
.grid2fr{
    display: grid;
    grid-template-columns: 1fr 1fr;
}
#website-content .card-body, #saas-app .card-body, #enterprise-app .card-body {
    min-height: 9rem;
}
.circular-progress {
    position: relative;
    width: 100px;
    height: 100px;
}

.circular-progress .progress-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    clip-path: circle();
    background-color: #e9ecef;
    position: relative;
}

.circular-progress .progress-circle:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    clip-path: circle();
    background-color: green;
    transform: rotate(calc(var(--percentage) * 3.6deg));
    transform-origin: center center;
    transform-box: fill-box;
}

.circular-progress .inner-circle {
    position: absolute;
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2em;
}
.accordion-button:not(.collapsed)::after {
    filter: invert(1);
    mix-blend-mode: screen;
}
.main-timeline {
    position: relative
}

.main-timeline:before {
    content: "";
    display: block;
    width: 2px;
    height: 100%;
    background: #c6c6c6;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0
}

.main-timeline .timeline {
    margin-bottom: 40px;
    position: relative
}

.main-timeline .timeline:after {
    content: "";
    display: block;
    clear: both
}

.main-timeline .icon {
    width: 18px;
    height: 18px;
    line-height: 18px;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0
}

.main-timeline .icon:before,
.main-timeline .icon:after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.33s ease-out 0s
}

.main-timeline .icon:before {
    background: #fff;
    border: 2px solid #232323;
    left: -3px
}

.main-timeline .icon:after {
    border: 2px solid #c6c6c6;
    left: 3px
}

.main-timeline .timeline:hover .icon:before {
    left: 3px
}

.main-timeline .timeline:hover .icon:after {
    left: -3px
}

.main-timeline .date-content {
    width: 50%;
    float: left;
    margin-top: 22px;
    position: relative
}

.main-timeline .date-content:before {
    content: "";
    width: 36.5%;
    height: 2px;
    background: #c6c6c6;
    margin: auto 0;
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0
}

.main-timeline .date-outer {
    width: 125px;
    height: 125px;
    font-size: 16px;
    text-align: center;
    margin: auto;
    z-index: 1
}

.main-timeline .date-outer:before,
.main-timeline .date-outer:after {
    content: "";
    width: 125px;
    height: 125px;
    margin: 0 auto;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transition: all 0.33s ease-out 0s
}

.main-timeline .date-outer:before {
    background: #fff;
    border: 2px solid #232323;
    left: -6px
}

.main-timeline .date-outer:after {
    border: 2px solid #c6c6c6;
    left: 6px
}

.main-timeline .timeline:hover .date-outer:before {
    left: 6px
}

.main-timeline .timeline:hover .date-outer:after {
    left: -6px
}

.main-timeline .date {
    width: 100%;
    margin: auto;
    position: absolute;
    top: 27%;
    left: 0
}

.main-timeline .month {
    font-size: 18px;
    font-weight: 700
}

.main-timeline .year {
    display: block;
    font-size: 30px;
    font-weight: 700;
    color: #232323;
    line-height: 36px
}

.main-timeline .timeline-content {
    width: 50%;
    padding: 20px 0 20px 50px;
    float: right
}

.main-timeline .title {
    font-size: 19px;
    font-weight: 700;
    line-height: 24px;
    margin: 0 0 15px 0
}

.main-timeline .description {
    margin-bottom: 0
}

.main-timeline .timeline:nth-child(2n) .date-content {
    float: right
}

.main-timeline .timeline:nth-child(2n) .date-content:before {
    left: 10px
}

.main-timeline .timeline:nth-child(2n) .timeline-content {
    padding: 20px 50px 20px 0;
    text-align: right
}

@media only screen and (max-width: 991px) {
    .main-timeline .date-content {
        margin-top: 35px
    }
    .main-timeline .date-content:before {
        width: 22.5%
    }
    .main-timeline .timeline-content {
        padding: 10px 0 10px 30px
    }
    .main-timeline .title {
        font-size: 17px
    }
    .main-timeline .timeline:nth-child(2n) .timeline-content {
        padding: 10px 30px 10px 0
    }
}

@media only screen and (max-width: 767px) {
    .main-timeline:before {
        margin: 0;
        left: 7px
    }
    .main-timeline .timeline {
        margin-bottom: 20px
    }
    .main-timeline .timeline:last-child {
        margin-bottom: 0
    }
    .main-timeline .icon {
        margin: auto 0
    }
    .main-timeline .date-content {
        width: 95%;
        float: right;
        margin-top: 0
    }
    .main-timeline .date-content:before {
        display: none
    }
    .main-timeline .date-outer {
        width: 110px;
        height: 110px
    }
    .main-timeline .date-outer:before,
    .main-timeline .date-outer:after {
        width: 110px;
        height: 110px
    }
    .main-timeline .date {
        top: 30%
    }
    .main-timeline .year {
        font-size: 24px
    }
    .main-timeline .timeline-content,
    .main-timeline .timeline:nth-child(2n) .timeline-content {
        width: 95%;
        text-align: center;
        padding: 10px 0
    }
    .main-timeline .title {
        margin-bottom: 10px
    }
}
.padded-list-item {
    padding: 0px !important;
    display: flex;
    align-items: center;
    border: 1px solid #d9d9d9;
    border-top-width: 1px !important;
    margin-top: 1rem;
}
.padded-list-item:hover, .padded-list-item:focus{
    border: 1px solid #1a3450;
    box-shadow: 2px 3px 4px #e7e7e7;
    cursor: pointer;
}
.padded-list-item .joblogo {
    max-width: 11rem;
    border-right: 1px solid #d9d9d9;
}
.accordion-item {
    border: 1px solid #c8c8c8;
}
.nav-item.ctabookbtn{
    background-color: rgb(255 248 153);
    margin-left: 1rem;
    border-radius: 40px;
}
.nav-item.ctabookbtn .nav-link{
     color: #000  !important;
     border-radius: 40px;
     font-weight: 600;
}
.nav-item.ctabookbtn .nav-link:hover, .nav-item.ctabookbtn .nav-link:focus{
    background-color: rgb(255, 244, 91);
}
.calendly-overlay .calendly-popup{
    height: 100% !important;
    max-height: 100% !important;
}
.lead.counter {
    font-size: 1.25rem;
    font-weight: 300;
    z-index: 99999;
    position: absolute;
    bottom: 0;
    color: #1a3450;
}
