/* --- Cookie Modal (Bottom Bar) --- */
.cookie-banner {
     position: fixed;
     bottom: 0;
     left: 0;
     width: 100%;
     background: #ffffff;
     box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
     z-index: 1050;
     padding: 16px 0;
     border-top: 1px solid #e6e6e6;
}

.cookie-content {
     display: flex;
     align-items: center;
     justify-content: space-between;
     flex-wrap: wrap;
     gap: 12px;
}

.cookie-text {
     flex: 1;
     color: #333;
     font-size: 14px;
     line-height: 1.5;
     margin: 0;
}

.cookie-actions {
     display: flex;
     align-items: center;
     gap: 10px;
}

/* Buttons */
.cookie-policy-btn {
     border-radius: 6px;
     font-size: 13px;
     padding: 6px 16px;
}

.accept_cookies_btn {
     border-radius: 6px;
     font-size: 13px;
     padding: 6px 18px;
}

/* Mobile responsive */
@media (max-width: 768px) {
     .cookie-content {
          flex-direction: column;
          align-items: flex-start;
     }

     .cookie-actions {
          width: 100%;
          justify-content: flex-start;
     }

     .cookie-actions .btn {
          width: 100%;
     }
}


/* solutions page styles are here */
/* Solutions Page Colors */

/* Section & Card Backgrounds */
.solutions-section-bg {
     background-color: #ffffff;
     /* White background */
}

.solutions-card-bg {
     background-color: rgba(230, 243, 255, 0.5);
     border-radius: 12px !important;
     transition: box-shadow 0.3s ease, transform 0.3s ease;
     /* smooth hover effect */
}

.solutions-card-bg:hover {
     box-shadow: 0 8px 20px rgba(1, 43, 93, 0.25);
     /* #012B5D with 25% opacity */
     /* shadow on hover */
     transform: translateY(-0.5px);
     /* optional slight lift for better effect */
}

/* Icon Colors */
.solutions-icon-circle-bg {
     background-color: #012B5D;
     width: 60px;
     height: 60px;
     border-radius: 50%;
     /* Icon circle background */
}

.solutions-icon-fill {
     fill: #C1DCFF;
     /* Icon color */
}

/* Text Colors */
.solutions-heading-color {
     color: #121212;
     font-size: 24px;
     /* Heading text */
}

.solutions-bodytext-color {
     color: #333333;
     /* Body text */
}

.solutions-link-color {
     color: #002A7A;
     text-decoration: underline;
     /* Learn more link */
}

/* solution styles end  */