/*** Spinner Start ***/

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }

/*** Spinner End ***/


/*** Button Start ***/

.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-md-square {
    width: 46px;
    height: 46px;
}

.btn-lg-square {
    width: 58px;
    height: 58px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.back-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

/*** Button End ***/


/***---------------------------- Topbar Start ------------------------***/
/*** Topbar Enhancements ***/
.topbar {
    background: #000;
    padding: 10px 0;
    color: white;
    font-size: 14px;
    font-weight: 500;
    align-items: center;
}

.topbar .top-info {
    letter-spacing: 1px;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    0% {
        transform: translateY(10px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.topbar .top-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar .top-link a {
    margin-right: 10px;
    color: #fff;
    transition: 0.3s ease;
}

.topbar .top-link a:hover {
    color: var(--bs-secondary);
    text-decoration: underline;
}

/*** Note Ticker Animation ***/
#note {
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 10px;
    border-radius: 5px;
    height: 30px;
}

#note small {
    position: absolute;
    display: inline-block;
    white-space: nowrap;
    animation: scrollText 10s linear infinite;
    font-weight: bold;
    background: linear-gradient(90deg, #00f2fe, #4facfe, #00f2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 14px;
}

/* Hover to pause */
#note:hover small {
    animation-play-state: paused;
}

@keyframes scrollText {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/*** Optional: Add Pulse to an Icon inside topbar ***/
.topbar .fa-bullhorn {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/***------------------------------------ Topbar End ------------------------------***/


/***-------------------------- Navbar Start --------------------------***/
.navbar {
    background: #fff;
}

.navbar .navbar-nav {
    padding: 25px 0;
}

.navbar .navbar-nav .nav-link {
    padding: 10px 15px;
    color: black;
    font-size: 18px;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease-in-out;
    width: auto;
    white-space: nowrap;
    display: inline-block;
}

.navbar .navbar-nav .nav-link:hover {
    color: #3d89bb;
}

.container-fluid.bg-mycolor {
    background: #fff !important;
    padding: 10px;
}

.custom-section {
    background-color: #f0f8ff;
}

.navbar-dark .navbar-nav .nav-link:focus {
    color: #000;
}

/* Underline effect */
.navbar .navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 5px;
    left: 20%;
    background-color: #203a43 !important;
    transition: 0.4s ease-in-out;
}

.navbar .navbar-nav .nav-link:hover::before,
.navbar .navbar-nav .nav-link.active::before {
    width: 60%;
    background-color: #3d89bb !important;
}

/* Dropdown arrow */
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
    transition: transform 0.3s;
    transform: rotate(0deg);
}

/* Rotate on hover (desktop) */
@media (min-width: 992px) {
    .navbar .nav-item:hover .dropdown-toggle::after {
        transform: rotate(180deg);
    }
}

/* Rotate on open (mobile click) */
.navbar .dropdown.open .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Responsive styles */
@media screen and (max-width: 769px) {
    .navbar .navbar-nav .nav-link {
        position: relative;
    }

    .navbar .navbar-nav .nav-link::before {
        content: "";
        display: block;
        position: absolute;
        width: 0;
        height: 2px;
        background-color: #3d89bb;
        left: 2%;
        bottom: 0;
        transition: width 0.3s ease;
    }

    .navbar .navbar-nav .nav-link:hover::before,
    .navbar .navbar-nav .nav-link.active::before {
        width: 0%;
    }
}

/* Show dropdown on hover only for desktop */
@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }

    /* Dropdown Animation */
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: 0.5s ease;
        opacity: 0;
        padding: 0px !important;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        opacity: 1;
    }
}

.navbar .nav-item .dropdown-menu {
    padding: 0px !important;
}

.nav-item.nav-link.active {
    color: #3d89bb !important;
}


/***-------------------------- Navbar End --------------------------***/



/***--------------------------- Carousel Start ---------------------------***/

.carousel-item {
    position: relative;
}

.carousel-item::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgb(54 54 54 / 60%);
}

.carousel-caption {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.carousel-item p {
    max-width: 700px;
    margin: 0 auto 35px auto;
}
/*** --------carousel control Start ----------***/
.carousel-control-prev {
    width: 90px;
    height: 60px;
    position: absolute;
    top: 50%;
    left: 0;
    background: var(--bs-primary);
    border-radius: 0 50px 50px 0;
    opacity: 1;
}

.carousel-control-prev:hover {
    background: var(--bs-secondary);
    transition: .8s;
}

.carousel-control-next {
    width: 90px;
    height: 60px;
    position: absolute;
    top: 50%;
    right: 0;
    background: var(--bs-primary);
    border-radius: 50px 0 0 50px;
    opacity: 1;
}

.carousel-control-next:hover {
    background: var(--bs-secondary);
    transition: .8s;
}



@media (max-width: 576px) {
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 40px;
    }

    .carousel-control-prev {
        border-radius: 0 25px 25px 0;
    }

    .carousel-control-next {
        border-radius: 25px 0 0 25px;
    }
}
/*** -----------------carousel control end ---------------------***/

.carousel-caption .carousel-content a button.carousel-content-btn1 {
    background: var(--bs-primary);
    color: var(--bs-white);
    opacity: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn1:hover {
    background: var(--bs-primary);
    color: #ffffff;
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2 {
    background: var(--bs-primary);
    color: var(--bs-white);
    opacity: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2:hover {
    background: var(--bs-secondary);
    color: var(--bs-dark);
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}


#carouselId .carousel-indicators li {
    width: 30px;
    height: 10px;
    background: var(--bs-primary);
    margin: 10px;
    border-radius: 30px;
    opacity: 1;
}

#carouselId .carousel-indicators li:hover {
    background: var(--bs-secondary);
    opacity: 1;
}

@media (max-width: 768px) {
    #carouselId .carousel-indicators {
        display: none;
    }
}


@media (max-width: 992px) {
    .carousel-item {
        min-height: 500px;
    }
    
    .carousel-item img {
        min-height: 500px;
        object-fit: cover;
    }

    .carousel-item h1 {
        font-size: 40px !important;
    }

    .carousel-item p {
        font-size: 16px !important;
    }
}

@media (max-width: 768px) {
    .carousel-item {
        min-height: 400px;
    }
    
    .carousel-item img {
        min-height: 400px;
        object-fit: cover;
    }

    .carousel-item h1 {
        font-size: 28px !important;
    }

    .carousel-item p {
        font-size: 14px !important;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/banner-6.jpg) center center no-repeat;
    background-size: cover;
}

/*----------- Breadcrumb container ----------------------*/
.page-header .breadcrumb {
    background: transparent; /* Always transparent on all devices */
    padding: 10px 20px;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 12px;
    position: relative;
    backdrop-filter: blur(6px); /* Apply blur on all devices */
    -webkit-backdrop-filter: blur(6px); /* Safari support */
    background-color: rgba(255, 255, 255, 0.1); /* Slight transparent background */
}

/* Breadcrumb items */
.page-header .breadcrumb-item {
    position: relative;
    padding: 0 15px;
    font-size: 18px;
    color: var(--bs-white);
    transition: all 0.3s ease;
}

/* Breadcrumb item separator ("/") */
.page-header .breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: var(--bs-white);
    font-size: 18px;
    margin-right: 10px;
}

/* Breadcrumb links */
.page-header .breadcrumb-item a {
    color: var(--bs-white);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Hover effect on breadcrumb links */
.page-header .breadcrumb-item a:hover {
    color: #00e5ff;
    transform: scale(1.05);
}

/* Underline animation on hover */
.page-header .breadcrumb-item a::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: #00e5ff;
    transition: width 0.3s ease;
    margin: 4px auto 0;
}

.page-header .breadcrumb-item a:hover::after {
    width: 100%;
}

/* Active breadcrumb */
.page-header .breadcrumb-item.active {
    color: #00e5ff;
    font-weight: bold;
}

/* Make breadcrumb scrollable on small devices */
@media (max-width: 576px) {
    .page-header .breadcrumb {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .page-header .breadcrumb::-webkit-scrollbar {
        display: none;
    }

    .page-header .breadcrumb-item {
        font-size: 16px; /* Slightly smaller text on mobile */
    }
}

/* Optional: Smooth transitions for breadcrumb item hover */
.page-header .breadcrumb-item a {
    transition: color 0.4s ease, transform 0.4s ease, letter-spacing 0.4s ease;
}

/* Improve spacing for all devices */
.page-header .breadcrumb-item + .breadcrumb-item {
    margin-left: 10px;
}

/* Add padding for larger screens */
.page-header .breadcrumb {
    padding: 12px 24px;
}

/*** Carousel End ***/


/*** -----------------Services Start ---------------------***/

.services .services-item {
    box-shadow: 0 0 60px rgba(0, 0, 0, .2);
    width: 100%;
    height: 100%;
    border-radius: 10px;
    padding: 10px 0;
    position: relative;
}


.services-content::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px 10px 0 0;
    background:#1842b6;
    transition: .5s;
}

.services-content::after {
    top: 0;
    bottom: auto;
    border-radius: 10px 10px 10px 10px;
}

.services-item:hover .services-content::after {
    height: 100%;
    opacity: 1;
    transition: .5s;
}

.services-item:hover .services-content-icon {
    position: relative;
    z-index: 2;
}

.services-item .services-content-icon i,
.services-item .services-content-icon p {
    transition: .5s;
}

.services-item:hover .services-content-icon i {
    color: var(--bs-white) !important;
}

.services-item:hover .services-content-icon p , .services-item:hover .services-content-icon h4 , .services-item:hover .services-content-icon p{
    color: var(--bs-white);
}

.services-item:hover a.btn-primary {
    background-color: #fff; 
    color:var(--bs-black);

}
.services-item:hover .btn-primary {
    background-color: #fff !important; /* bg white */
    color: #000 !important; /* text black */
    border: 2px solid var(--bs-primary); /* optional blue border */
}


/***-------------------------- Services End -------------------------------------***/


/*** Project Start ***/

.project-img {
    position: relative;
    padding: 15px;
}

.project-img::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    top: 0;
    left: 0;
    background: var(--bs-secondary);
    border-radius: 10px;
    opacity: 1;
    z-index: -1;
    transition: .5s;
}

.project-img::after {
    content: "";
    width: 150px;
    height: 150px;
    position: absolute;
    right: 0;
    bottom: 0;
    background: var(--bs-primary);
    border-radius: 10px;
    opacity: 1;
    z-index: -1;
    transition: .5s;
}

.project-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.project-content a {
    display: inline-block;
    padding: 20px 25px;
    background: var(--bs-primary);
    border-radius: 10px;
}

.project-item:hover .project-content {
    opacity: 1;
    transition: .5s;
}

.project-item:hover .project-img::before,
.project-item:hover .project-img::after {
    opacity: 0;
}

/*** Project End ***/


/***------------------ Blog Start-----------------------------***/


.blog .card {
    position: relative;
    border: 2px solid #1842b6 !important; 
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    background: white;
}

.blog .card:hover {
    /* transform: translateY(-8px); */
    box-shadow: 0 16px 24px rgba(13, 110, 253, 0.15);
    transition: all 0.3s ease;
}

.blog .card-img-top {
    height: 180px;
    object-fit: cover;
    border-bottom: 2px solid #eee !important;
}

.blog .card-body {
    padding: 2rem 1.5rem;
}

.blog .card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.blog .card:hover .card-title {
    color: #0d6efd; 
}

.blog .card-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.blog .small.text-muted {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    display: block;
}

.blog .btn-outline-primary {
    font-weight: 600;
    border-radius: 30px;
    padding: 10px 30px;
    font-size: 1rem;
    transition: all 0.4s ease;
}

.blog .btn-outline-primary:hover {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: #fff;
}

/* Optional: Customize Owl Dots */
.blog-carousel .owl-dots {
    text-align: center;
    margin-top: 20px;
    display: none; /* hidden initially, will fade in on scroll */
}

.blog-carousel .owl-dot {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 5px;
    border-radius: 50%;
    background: #ccc;
    transition: background 0.3s ease;
}

.blog-carousel .owl-dot.active {
    background: #0d6efd;
}

/***--------------------Blog end-------------------***/

/***------------------- Team Start ---------------***/

.team-item {
    border-top: 30px solid var(--bs-secondary);
    background: rgba(239, 239, 241, 0.8);
}

.team-content::before {
    height: 200px;
    display: block;
    content: "";
    position: relative;
    top: -101px;
    background: var(--bs-secondary);
    clip-path: polygon(50% 50%, 100% 50%, 50% 100%, 0% 50%);
    padding: 60px;
    opacity: 1;
}

.team-img-icon {
    position: relative;
    margin-top: -200px;
    padding: 30px;
    padding-bottom: 0;
}

.team-img {
    border: 15px solid var(--bs-white);
}

.team-img img {
    border: 10px solid var(--bs-secondary);
    transition: .5s;
}

.team-item:hover h4 {
    color: var(--bs-primary);
    transition: .5s;
}

.team-item:hover .team-img img {
    transform: scale(1.05);
    border: 10px solid var(--bs-secondary);
}

.team-carousel .owl-stage {
    position: relative;
    width: 100%;
    height: 100%;
}

.team-carousel .owl-nav {
    position: absolute;
    top: -100px;
    right: 50px;
    display: flex;
}

.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next {
    width: 56px;
    height: 56px;
    border-radius: 56px;
    margin-left: 15px;
    background: var(--bs-secondary);
    color: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-carousel .owl-nav .owl-prev:hover,
.team-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (max-width: 992px) {
    .team-carousel {
        margin-top: 3rem;
    }

    .team-carousel .owl-nav {
        top: -85px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        margin-left: -15px;
    }
}


/*** Team End ***/


/*** Testimonial Start ***/

.testimonial-item {
    background: #e3f0eb;

}

.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #c1dad0;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--bs-primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}




/*** Testimonial End ***/


/***--------------------------- Contact Start Home page ---------------------------- ***/

        .hover-shadow {
            transition: box-shadow 0.3s ease, transform 0.3s ease;
        }

        .hover-shadow:hover {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            transform: translateY(-4px);
        }

        .btn-primary:hover {
            background-color: #0056b3 !important;
            transform: scale(1.03);
        }

.contact-detail::before {
    position: absolute;
    content: "";
    height: 50%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(rgb(210, 243, 235, 1), rgba(230, 250, 245, .3)), url(../img/background.jpg) center center no-repeat;
    background-size: cover;
    border-radius: 10px;
    z-index: -1;
}

.contact-map {
    background: #26d48c;
}

.contact-form {
    background: #26d48c;
}

/***--------------------------- Contact End ***----------------------------/
 

 /* -----------------------------contact page start-------------------------------- */

.contact-section {
    background: linear-gradient(120deg, #f8f9fc, #e0eafc);
    font-family: 'Poppins', sans-serif;
}

.bg-glass {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.contact-card {
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.icon-circle {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.icon-circle:hover {
    transform: scale(1.1) rotate(5deg);
}

.map-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.map-wrapper iframe {
    transition: all 0.3s ease;
}

.map-wrapper:hover iframe {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
}

/* -----------------------------contact page end-------------------------------- */ 


/***-------------- Footer Start -------------------***/

.footer .short-link a,
.footer .help-link a,
.footer .contact-link a {
    transition: .5s;
}

.footer .short-link a:hover,
.footer .help-link a:hover,
.footer .contact-link a:hover {
    letter-spacing: 1px;
}

.footer .hightech-link a:hover {
    background: var(--bs-secondary);
    border: 0;
}

/* Footer Container */
.footer {
    background-color: #0d6efd; /* Blue background */
    color: #fff; /* White text */
    padding: 20px 0; /* Add padding to make footer spacious */
}

/*.footer .col-lg-3 {
    width: 24% !important;
}*/

/* Footer Column Styling */
.footer-column {
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px; /* Add space between columns */
    transition: transform 0.3s ease-in-out;
}

/* Add gap between all columns */
.footer-column:not(:last-child) {
    margin-bottom: 40px; /* Space between columns */
}

.footer-column:hover {
    transform: translateY(-10px); /* Hover effect for dynamic feel */
}

/* Blue Background for Columns */
.footer-column.bg-blue {
    background-color: #0d6efd; /* Blue */
}

/* Light Gray Background for Columns */
.footer-column.bg-light {
    background-color: #f9f9f9; /* Light Gray */
    color: #333; /* Dark text for light background */
}

/* Heading Colors */
.footer-column .h3 {
    font-weight: bold;
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #fff; /* White for headings */
}

/* Text Links and Social Icons */
.footer-column a {
    color: inherit;
    text-decoration: none;
    font-size: 1rem;
}

.footer-column a:hover {
    color: #1842b6; /* Light blue on hover */
    text-decoration: underline;
}

/* Styling for Social Media and Contact Links */
.footer-column .social-link {
    display: flex;
    gap: 15px;
}

.footer-column .social-link a {
    color: #fff;
    font-size: 1.5rem;
    background-color: #1842b6; /* Social media button color */
    padding: 12px;
    border-radius: 50%;
    transition: background-color 0.3s ease-in-out;
}

.footer-column .social-link a:hover {
    background-color: #0d6efd; /* Change to blue on hover */
}

/* Footer Bottom Styling */
footer .row hr {
    border-color: #fff;
    width: 100%;
    margin: 30px 0;
}

footer .col-md-6.text-center {
    text-align: center;
}

footer .col-md-6.text-center a {
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
}

footer .col-md-6.text-center a:hover {
    color: #1842b6; /* Light blue color for hover */
}

/* Adjustments for Contact Info Links */
.footer-column .contact-link a {
    padding: 0px 0;
    font-size: 1rem;
    border-bottom: 1px solid #1842b6;
}

.footer-column .contact-link a:hover {
    color: #1842b6;
    border-bottom: 1px solid #1842b6;
}

.footer-column .contact-link i {
    color: #1842b6;
    margin-right: 10px;
}

/* Styling for Footer Background */
footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Footer Column Layout Adjustments */
@media (max-width: 768px) {
    .footer-column {
        margin-bottom: 20px;
        text-align: center;
    }

    .footer-column .social-link {
        justify-content: center;
    }

    .footer .row {
        text-align: center;
    }

    .footer .col-md-6.text-center a {
        display: inline-block;
        margin: 5px 0;
    }   
}

@media (min-width: 768px) {
    .footer .col-lg-3 {
        width: 24% !important;
    }
}


/***---------------------------------- Footer End------------------------ ***/




/***---------------------My custom css form here--------------------------------- ***/
/*------------ Smooth about image float animation start home page section------------ */
/* Float animation for first image */
@keyframes floatUpDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-25px); }
}

.float-anim {
  animation: floatUpDown 6s ease-in-out infinite;
}

/* Rotate animation for second image */
@keyframes slowRotate {
 0% { transform: rotate(0deg); }
  50% { transform: rotate(30deg); }

}

.rotate-anim {
  animation: slowRotate 10s linear infinite;
}

/* Hover Zoom effect */
.hover-zoom {
  transition: transform 0.10s ease, box-shadow 0.5s;
}
.hover-zoom:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}


/*---------------Home Page about us section Smooth about image float animation  end------------------  */

/*---------------Home page software process section start ----------------------*/
.sticky-left {
    position: sticky !important;
    top: 100px;
    align-self: flex-start;
  }
  
.card-step {
    border-radius: 1.5rem;
    transition: transform 0.5s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    transform-origin: bottom center;
    background: rgb(19, 178, 210);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .card-step:nth-child(1) {
    transform: rotate(-5deg);
  }

  .card-step:nth-child(2) {
    transform: rotate(5deg);
  }

  .card-step:nth-child(3) {
    transform: rotate(-4deg);
  }

  .card-step:nth-child(4) {
    transform: rotate(4deg);
  }

  .card-step.folded {
    transform: rotate(0deg) scaleY(0.8) translateY(20px);
    opacity: 0.7;
  }

  .card-step:hover {
    transform: scale(1.05) rotate(0deg);
    z-index: 10;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
    opacity: 1;
  }

  .step-number {
    font-size: 1.7rem;
    font-weight: bold;
    color: #6c757d;
    background-color: #fff;
    border-radius: 50%;
    padding: 0.5rem 1rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }

  .card-step.folded .step-number {
    opacity: 0.6;
  }

  .sticky-step {
    position: sticky !important;
    top: 100px;
    margin-bottom: 60px;
    transition: all 0.5s ease-in-out;
    backdrop-filter: blur(8px);
    border-radius: 1.5rem;
    border: 1px solid #e0e0e0;
  }

  .sticky-step:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(128, 90, 213, 0.2);
    z-index: 999;
  }

  .btn-primary {
    background-color: blue;
    border-color: #6f42c1;
  }

  .btn-primary:hover {
    background-color: #000;
    border-color: #5a32a3;
  }

  h2, p {
    font-family: 'Arial', sans-serif;
  }

  h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #212529;
  }

  p {
    color: #495057;
    font-size: 1rem;
    line-height: 1.6;
  } 
/* Light card with blue border and shadow */
.custom-card-light {
    background-color: #ffffff; /* White background */
    border: 2px solid #1842b6; /* Blue border */
    box-shadow: 0 4px 12px rgba(24, 66, 182, 0.15); /* Soft blue shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effect */
}

.custom-card-light:hover {
    transform: translateY(-10px); /* Slight lift on hover */
    box-shadow: 0 8px 16px rgba(24, 66, 182, 0.25); /* Stronger shadow on hover */
}

/* Dark card with white text and blue border and shadow */
.custom-card-dark {
    background-color: #1842b6 !important; /* Blue background */
    border: 2px solid #1842b6; /* Blue border */
    box-shadow: 0 4px 12px rgba(24, 66, 182, 0.3); /* Stronger blue shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effect */
}

.custom-card-dark:hover {
    transform: translateY(-10px); /* Slight lift on hover */
    box-shadow: 0 8px 16px rgba(24, 66, 182, 0.45); /* Stronger shadow on hover */
}

.custom-card-light h5,
.custom-card-light p {
    color: #333; /* Dark text for light background */
}

.custom-card-dark h5,
.custom-card-dark p {
    color: #fff; /* White text for dark background */
}

/* Step number styling */
.step-number {
    background-color: #1842b6;
    color: white;
    padding: 8px 18px; /* Slightly larger padding */
    border-radius: 50%;
    font-weight: bold;
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}

.step-number:hover {
    background-color: #145a8a; /* Darker blue when hovered */
}

/* Add a subtle hover effect to the heading text */
h5:hover {
    /* color: #ffffff; /* Change color to blue on hover */
    /* transition: color 0.3s ease;  */
}

/* Add some animation to make the text more engaging */
.custom-card-light h5, .custom-card-dark h5 {
    transition: transform 0.3s ease;
}

.custom-card-light:hover h5, .custom-card-dark:hover h5 {
    transform: translateX(5px); /* Slightly shift the heading text on hover */
}

/* Add some padding and spacing for the body text */
.custom-card-light p, .custom-card-dark p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.custom-card-light:hover p {
    color: #1842b6; /* Change text color to blue on hover */
}


  @media (max-width: 768px) { 
  .sticky-left {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
  }
}





/*----------------Home page software process section end ------------------------*/

/*----------------------------career page start ---------------*/
.section-heading {
  text-align: center;
  font-size: 2rem;
  color: white;
  margin-bottom: 40px;
  position: relative;
}

.section-heading.blink {
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.why-join, .open-positions, .application-form {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.features-grid, .positions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature, .position {
  background: white;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.feature i, .position i {
  font-size: 2rem;
  color: #457b9d;
  margin-bottom: 10px;
}

.feature:hover, .position:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.application-form form {
  max-width: 700px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.application-form input,
.application-form select,
.application-form textarea {
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.application-form button {
  background-color: #457b9d;
  color: #fff;
  padding: 14px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.application-form button:hover {
  background-color: #1d3557;
}

/*----------------------------career page end---------------*/



/* ------------------------------
   Enhanced Breadcrumb Styles
------------------------------ */

/* Breadcrumb container */
.breadcrumb {
    background: transparent; /* Always transparent on all devices */
    padding: 8px 16px;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 12px;
}

/* Breadcrumb items */
.breadcrumb-item {
    position: relative;
    padding: 0 12px;
    font-size: 18px;
    color: var(--bs-white);
    transition: all 0.3s ease;
}

/* Separator ("/") between breadcrumb items */
.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: var(--bs-white);
    font-size: 18px;
    margin-right: 10px;
}

/* Breadcrumb links */
.breadcrumb-item a {
    color: var(--bs-white);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Hover effect on breadcrumb links */
.breadcrumb-item a:hover {
    color: #00e5ff;
    transform: scale(1.05);
}

/* Underline animation on hover */
.breadcrumb-item a::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: #00e5ff;
    transition: width 0.3s ease;
    margin: 4px auto 0;
}

.breadcrumb-item a:hover::after {
    width: 100%;
}

/* Active breadcrumb (current page) */
.breadcrumb-item.active {
    color: #ffc107;
    font-weight: bold;
}

/* Responsive improvement: breadcrumb horizontal scroll for small screens */
@media (max-width: 576px) {
    .breadcrumb {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
        scrollbar-width: none; /* Hide scrollbar for Firefox */
    }
    .breadcrumb::-webkit-scrollbar {
        display: none; /* Hide scrollbar for Chrome, Safari */
    }
}

/* Optional: Desktop only blur effect */
@media (min-width: 768px) {
    .page-header .breadcrumb {
        backdrop-filter: blur(4px);
        background-color: rgba(255, 255, 255, 0.05);
    }
}


/* Desktop default */
.logoo-img {
  max-height: 50px;
  height: auto;
  width: auto;
}

/* Mobile view adjustment */
@media (max-width: 576px) {
  .logo-img {
    max-height: 35px; /* Adjust as needed */
  }
}

/*------------------- toggle open menu or cross menu bar------------------------- */

.navbar-toggler.open .navbar-toggler-icon {
    background-image: none;
    position: relative;
    width: 1.5rem;
    height: 1.5rem;
}

.navbar-toggler.open .navbar-toggler-icon::before,
.navbar-toggler.open .navbar-toggler-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: white;
}

.navbar-toggler.open .navbar-toggler-icon::before {
    transform: rotate(45deg);
}

.navbar-toggler.open .navbar-toggler-icon::after {
    transform: rotate(-45deg);
}


/*------------------ About us page section start---------------- */

    .feature-box, .about-img-container, .call-box {
        transition: all 0.3s ease;
    }

    .feature-box:hover {
        background-color: #081724; /* Light blue background */
        border: 1px solid #0d6efd; /* Bootstrap primary */
        box-shadow: 0 0 15px rgba(13, 110, 253, 0.3);
        transform: translateY(-3px);
    }

    .about-img-container:hover {
        box-shadow: 0 0 20px rgba(13, 110, 253, 0.4);
        transform: scale(1.02);
    }

    .call-box:hover {
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
        background-color: #ffffff;
        transform: translateY(-2px);
    }

/*------------------about page Work Process---------------*/
.process-wrapper {
    background-color: #f8f9fa;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1771cb;
}

.section-subtitle {
    color: #1842b6;
    letter-spacing: 1px;
}

.process-step {
    background-color: #fff;
    border: 2px solid #e2e6ea;
    border-radius: 12px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 transparent;
    height: 100%;
}

.process-step:hover {
    background-color: #e9f6fb;
    border-color: #00AEEF;
    box-shadow: 0 10px 25px rgba(0, 174, 239, 0.15);
    transform: translateY(-5px);
}

.process-icon {
    width: 70px;
    height: 70px;
    background-color: #00AEEF;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px auto;
    transition: all 0.3s ease;
}

.process-step:hover .process-icon {
    background-color: #007bb5;
    transform: scale(1.1);
}

.process-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #001f3f;
    margin-bottom: 10px;
}

.process-description {
    font-size: 0.95rem;
    color: #6c757d;
}

.arrow-icon {
    font-size: 1.8rem;
    color: #ccc;
    margin: 0 10px;
}

@media (max-width: 767.98px) {
    .arrow-icon {
        display: none;
    }
}



/* Arrows between cards (only visible on desktop) */
@media (min-width: 992px) {
    .process-step:not(:last-child)::after {
      content: "\f101"; /* Font Awesome double-right icon */
      font-family: "Font Awesome 5 Free";
      font-weight: 900;
      position: absolute;
      top: 50%;
      right: -15px;
      transform: translateY(-50%);
      color: #00aeef;
      font-size: 20px;
    }
  }
  
    



 /* #navbarCollapse {
    position: fixed;
    top: 0px;
    right: -100%;
    width: 100%;        
    height: 100vh;       
    background: #ffffff; 
    opacity: 0;
    transition: right 0.5s ease, opacity 0.5s ease;
    z-index: 1050;
    padding-top: 80px;  


  } */
  
   
  /* #navbarCollapse.show {
    right: 0;
   opacity: 1;
  }
  
 
  #navbarCollapse .navbar-nav {
    flex-direction: column;
    align-items: start;
    padding: 1rem 2rem;
    background-color: white;
   
  }
  
 
  .collapse:not(.show) {
    display: none;
  }
 @media (max-width: 575.98px) {
    
    .carousel-caption .carousel-content a button.carousel-content-btn2 {
        margin-top: 10px;
    }
  } */

  /*------------------ CEO Team Section Start------------------------ */
.welcome-section {
      padding: 15px 20px;
      position: relative;
      overflow: hidden;
    }

.title {
      font-size: 28px;
      text-align: center;
      font-weight: 600;
      margin-bottom: 40px;
      color: #000;
      border-bottom: 1px solid #1842b6;
      padding-bottom: 10px;
}

.card-ceo {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      padding: 10px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

.card-ceo:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    }

.card-ceo img {
      width: 100%;
      border-radius: 8px;
      object-fit: cover;
      transition: transform 0.3s ease;
      object-position: top;
    }

.card-ceo img:hover {
      transform: scale(1.05);
    }

.caption-ceo h5{
      font-size: 20px;
      font-weight: 500px;
      margin-top: 10px;
      color: #1842b6;
    }

.social-icons a {
      color: #1842b6;
      font-size: 18px;
      margin: 0 8px;
      transition: transform 0.3s ease, color 0.3s ease;
    }
.social-icons a {
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(24, 66, 182, .25);
}

.social-icons a:hover {
      color: #1a57ff;
      transform: translateY(-5px);
    }

.text-section {
      padding-left: 40px;
    }

.text-section h5 {
      font-size: 50px;
      font-weight: 700;
      margin-bottom: 10px;
      color: #1842b6;
    }

.text-section h2 {
      font-size: 32px;
      font-weight: 700;
      color: #000;
      margin-bottom: 20px;
    }

.text-section p {
      color: #000;
      font-size: 15px;
      margin-bottom: 10px;
    }

@media (max-width: 768px) {
    .text-section {
        padding-left: 0;
        margin-top: 30px;
      }

      .text-section h2 {
        font-size: 26px;
      }
    }
/*------------------ CEO Team Section End------------------------ */

.leadone-detail-center {
  display: flex;
  flex-direction: column;
  justify-content: center;  
  align-items: center;       
  min-height: 300px;         
  margin: 40px 0 0 0;
  background: transparent;   
  max-width: 70%;            
  margin-left: auto;        
  margin-right: auto;
}

.leadone-detail-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  text-align: center;
}

.leadone-detail-description {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 10px;
  letter-spacing: 0.1px;
  text-align: center;
}

h2.leadone-detail-heading {
    text-align: left;
}

.leadone-detail-section {
    text-align: left;
}

button.btn.btn-outline-primary.project-filter-btn {
    margin-right: 2px;
    margin-bottom: 10px;
}

img.post_imgg {
    max-width: -webkit-fill-available;
}

table {
    margin-bottom: 25px;
    width: 100%;
    border-left: 1px #e4e4e4 solid;
    border-top: 1px #e4e4e4 solid;
}

thead {
    white-space: nowrap;
}

table td, table th {
    border-right: 1px #e4e4e4 solid;
    border-bottom: 1px #e4e4e4 solid;
    padding: 20px 10px;
    font-weight: bold;
}

table th {
    background-color: #232323;
    color: #fff;
    border-color: transparent;
}

table tbody tr:nth-child(odd) {
    background-color: #fff;
}

table td, table th {
    border-right: 1px #e4e4e4 solid;
    border-bottom: 1px #e4e4e4 solid;
    padding: 20px 10px;
    font-weight: bold;
    font-size: medium;
}


.single-post li {
    font-size: medium;
}

.single-post h2 {
    padding: 25px 0px;
}



.owl-stage {
  display: flex;
}

.owl-item {
  display: flex;
  align-items: stretch; /* stretch children */
}

.owl-item > div {
  flex: 1; /* make the card fill equal height */
}


h5:hover {
  color: inherit !important;
}


.page-id-28 .team-img.rounded-circle {
    aspect-ratio: 1;
    width: 100%;
}

.page-id-28 img.img-fluid.w-100.rounded-circle {
    height: 285px;
}


/* new section home ----------------------------------------*/


        .digital-solutions-main .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
        }

        .digital-solutions-main .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .digital-solutions-main .content-section {
            padding: 40px 0;
        }

        .digital-solutions-main .accent-bar {
            width: 340px;
            height: 40px;
            background: linear-gradient(90deg, #28a745 0%, #20c997 100%);
            border-radius: 50px;
            margin-bottom: 40px;
        }

        .digital-solutions-main .main-title {
            font-size: 44px;
            font-weight: 800;
            line-height: 1.1;
            color: #212529;
            margin-bottom: 30px;
        }

        .digital-solutions-main .highlight-text {
            color: #0d6efd;
        }

        .digital-solutions-main .description-text {
            font-size: 16px;
            color: #6c757d;
            line-height: 25px;
            margin-bottom: 50px;
            max-width: 580px;
        }

        .digital-solutions-main .button-group {
            display: flex;
            gap: 20px;
/*             flex-wrap: wrap; */
        }

        .digital-solutions-main .primary-button {
            background: #0d6efd;
            color: white;
            padding: 15px 15px;
            font-size: 15px;
            font-weight: 600;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .digital-solutions-main .primary-button:hover {
            background: #0b5ed7;
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(13, 110, 253, 0.4);
        }

        .digital-solutions-main .secondary-button {
            background: white;
            color: #0d6efd;
            padding: 15px 15px;
            font-size: 15px;
            font-weight: 600;
            border: 2px solid #dee2e6;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .digital-solutions-main .secondary-button:hover {
            border-color: #0d6efd;
            background: #f8f9fa;
            transform: translateY(-3px);
        }

        .digital-solutions-main .image-section {
            position: relative;
        }

        .digital-solutions-main .main-image-wrapper {
            position: relative;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
        }

        .digital-solutions-main .main-image {
            width: 100%;
            height: 450px !important;
            display: block;
        }

        .digital-solutions-main .stat-card {
            position: absolute;
            background: white;
            padding: 15px 15px;
            border-radius: 18px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
            text-align: center;
            animation: float-animation 3s ease-in-out infinite;
        }

        .digital-solutions-main .stat-card.top-right {
            top: 30px;
            right: 30px;
        }

        .digital-solutions-main .stat-card.bottom-left {
            bottom: 40px;
            left: 30px;
        }

        .digital-solutions-main .stat-number {
            font-size: 30px;
            font-weight: 600;
            margin: 0;
        }

        .digital-solutions-main .stat-number.green {
            color: #28a745;
        }

        .digital-solutions-main .stat-number.blue {
            color: #17a2b8;
        }

        .digital-solutions-main .stat-label {
            font-size: 0.95rem;
            color: #6c757d;
            margin: 0px;
            font-weight: 500;
        }

        .digital-solutions-main .tech-icons-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            justify-content: center;
            align-items: center;
            max-width: 400px;
            opacity: 0.7;
            pointer-events: none;
        }

        .digital-solutions-main .tech-icon {
            font-size: 3rem;
        }

		.digital-solutions-main {
			padding: 70px 93.5px;
		}

		h2.stat-number.blue {
			text-align: left;
		}

		h2.stat-number.green {
			text-align: left;
		}

		.digital-solutions-main {
			background-color: #ecf5ff;
		}


		.digital-solutions-main .main-image-wrapper {
					transition: all 0.4s ease;
		}

		.digital-solutions-main .main-image-wrapper:hover {
			transform: scale(1.05);
			box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
		}

		.digital-solutions-main .main-image {
			transition: transform 2.0s ease;
		}

		.accent-bar {
			color:white;
			font-size:13px;
			display: flex;
			justify-content: center;
			align-items: center;
		}


/*         @keyframes float-animation {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-15px);
            }
        } */

        @media (max-width: 992px) {
            .digital-solutions-main .hero-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .digital-solutions-main .main-title {
                font-size: 2.8rem;
            }

            .digital-solutions-main .accent-bar {
                width: 250px;
            }

            .digital-solutions-main .stat-card {
                padding: 20px 25px;
            }

            .digital-solutions-main .stat-number {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 576px) {
			.digital-solutions-main .content-section {
				padding: 20px 0;
			}
			
			.digital-solutions-main .main-image {
				width: 100%;
				height: 350px !important;
				display: block;
			}
			
			.digital-solutions-main {
				padding: 40px 20.5px;
			}
			
			.digital-solutions-main .main-image[
				width: 100%;
				height: 350px !important;
				display: block;

			]
			
			.digital-solutions-main {
				padding: 35px 12px;
			}
			
			.accent-bar{
				font-size:10px;
				margin-bottom:30px;
			}
			
            .digital-solutions-main .main-title {
                font-size: 2rem;
            }

            .digital-solutions-main .description-text {
                font-size: 1rem;
            }

            .digital-solutions-main .button-group {
                flex-direction: column;
            }

            .digital-solutions-main .primary-button,
            .digital-solutions-main .secondary-button {
                width: 100%;
                justify-content: center;
            }

            .digital-solutions-main .accent-bar {
/*                 width: 180px;
                height: 30px; */
            }

            .digital-solutions-main .stat-card {
                padding: 15px 20px;
            }

            .digital-solutions-main .stat-card.top-right {
                top: 15px;
                right: 15px;
            }

            .digital-solutions-main .stat-card.bottom-left {
                bottom: 15px;
                left: 15px;
            }
        }
