body {
    font-family: 'Roboto', sans-serif;
    color: #333;
}

#topbar {
    background: #f8f9fa;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid #e9ecef;
}

#topbar .contact-info a {
    color: #555;
    transition: 0.3s;
    text-decoration: none;
}

#topbar .contact-info a:hover {
    color: #0d6efd;
}

#topbar .social-links a {
    color: #555;
    padding: 4px 12px;
    display: inline-block;
    line-height: 1px;
    transition: 0.3s;
}

#topbar .social-links a:hover {
    color: #0d6efd;
}

#header {
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    padding: 20px 0;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo h1 {
    font-size: 28px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    color: #0d6efd;
}

#header .logo a {
    color: #0d6efd;
    text-decoration: none;
}

.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    white-space: nowrap;
    transition: 0.3s;
    text-decoration: none;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #0d6efd;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    font-weight: 500;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #0d6efd;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.mobile-nav-toggle {
    color: #333;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.breadcrumbs {
    padding: 20px 0;
    background-color: #f8f9fa;
    min-height: 40px;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 5px 0 0 0;
    font-size: 14px;
}

.breadcrumbs ol li+li {
    padding-left: 10px;
}

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #6c757d;
    content: "/";
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    font-family: 'Montserrat', sans-serif;
}

.section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #0d6efd;
    bottom: 0;
    left: calc(50% - 25px);
}

/* Styles for solution details page */
.solution-details-page {
    padding: 40px 0;
}

.solution-details-page .content h3 {
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 20px;
    color: #0d6efd;
    font-family: 'Montserrat', sans-serif;
}

.solution-details-page .content p {
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 16px;
}

.solution-details-page .content ul {
    list-style: none;
    padding: 0;
}

.solution-details-page .content ul li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    font-size: 16px;
}

.solution-details-page .content ul i {
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 20px;
    color: #0d6efd;
}

.solution-details-page .content .img-fluid {
    border-radius: 8px;
    box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.08);
    margin-top: 20px;
    margin-bottom: 20px;
}

.solution-details-page .benefits-section {
    background-color: #f8f9fa;
    padding: 50px 0;
    border-radius: 8px;
    margin-top: 40px;
}

.solution-details-page .benefits-section .section-title h2 {
    font-size: 28px;
    color: #333;
}

.solution-details-page .benefits-section .benefit-item {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease-in-out;
    height: 100%;
}

.solution-details-page .benefits-section .benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
}

.solution-details-page .benefits-section .benefit-item i {
    font-size: 42px;
    color: #0d6efd;
    margin-bottom: 15px;
    display: block;
}

.solution-details-page .benefits-section .benefit-item h5 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.solution-details-page .benefits-section .benefit-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.solution-details-page .why-choose-us {
    padding: 40px 0;
}

.solution-details-page .why-choose-us h3 {
    font-weight: 700;
    font-size: 26px;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.solution-details-page .why-choose-us p {
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: center;
    color: #555;
    font-size: 16px;
}


.solution-details-page .cta-section {
    text-align: center;
    padding: 50px 0;
    background-color: #0d6efd;
    margin-top: 40px;
    border-radius: 8px;
}

.solution-details-page .cta-section h3 {
    font-size: 28px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.solution-details-page .cta-section p {
    font-size: 18px;
    color: #f0f0f0;
    margin-bottom: 25px;
}

.solution-details-page .cta-section .btn-contact {
    background: #fff;
    color: #0d6efd;
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: 2px solid #fff;
}

.solution-details-page .cta-section .btn-contact:hover {
    background: #0d6efd;
    color: #fff;
    border: 2px solid #fff;
}


#footer {
    background: #343a40;
    color: #fff;
    font-size: 14px;
}

#footer .footer-top {
    padding: 60px 0 30px 0;
    background: #3d444b;
}

#footer .footer-contact h4,
#footer .footer-links h4,
#footer .footer-info h3 {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 12px;
}

#footer .footer-contact p,
#footer .footer-info p {
    color: #adb5bd;
}

#footer .footer-contact a {
    color: #adb5bd;
    text-decoration: none;
}

#footer .footer-contact a:hover {
    color: #fff;
}

#footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-links ul i {
    padding-right: 2px;
    color: #0d6efd;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-links ul a {
    color: #adb5bd;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
    text-decoration: none;
}

#footer .footer-links ul a:hover {
    color: #fff;
}

#footer .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #5a6268;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 4px;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .social-links a:hover {
    background: #0d6efd;
    color: #fff;
    text-decoration: none;
}

#footer .copyright {
    background: #212529;
    padding: 20px 0;
    color: #fff;
}

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #0d6efd;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #2e89ff;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}