.header-topbar-social img {
    width: 45px;
    height: 30px;
}
.header-topbar-info-wrapper .header-topbar-social p {
    color: #fff;
}
.offcanvas-social img {
    width: 40px;
    height: 25px;
}



/* HOME */
.single-infetech-serice-item .content {
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ABOUT */
.about-section-2 {
    background-color: #e9f6ff;
    padding-top: 80px;
    padding-bottom: 80px;
}

.about-section-2 h1 {
    text-align: center;
    margin-bottom: 80px;
}
.wsua-list {
    display: flex;
    gap: 10px;
}

.wsua-item i { 
    background: #9cd6fc;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 40px;
    color: #190a45;
    text-align: center;
    margin: 0px auto 10px auto;
}

.wsua-item:hover i {
    background-color: #6e9af3;
    font-size: 50px;
}

.wsua-item h5 {
    /* background: #689cf3; */
    padding: 10px;
    text-align: center;
    /* color: #fff; */
    margin-bottom: 10px;
}

.wsua-item p {
    text-align: center;
}

/* FIELDS OF ACTION */

.fields_of_actions {
    padding: 60px 20px;
    background: #f9f9f9;
}
.fields_of_actions .container {
    max-width: 1200px;
    margin: 0 auto;
}
.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #333;
}
.fields-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.field-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.field-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.fields_of_actions_title {
    text-align: center;
    margin-bottom:50px; 
}
.fields_of_actions_title h4 {
    color: #5670ed;
}
.field-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #5670ed;
}
.field-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}
.field-link {
    display: inline-block;
    color: #0073e6;
    font-weight: bold;
    text-decoration: none;
}
.field-link:hover {
    text-decoration: underline;
}

/* SMART TOOLS */
.smart_tools {
    padding: 80px 0;
    background: #f9f9f9;
}
.smart_tools .smart_tools_title {
    margin-bottom: 40px;
}
.smart_tools_title {
    text-align: center;
    margin-bottom:50px; 
}
.smart_tools_title h4 {
    color: #5670ed;
}
.smart-tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 per row */
    gap: 35px;
}
@media(max-width: 768px) {
    .smart-tools-grid {
        grid-template-columns: 1fr; /* stack on mobile */
    }
}
.smart-tool-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 25px;
}
.smart-tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.12);
}
.smart-tool-card .icon-box {
    flex-shrink: 0;
    width: 250px;
    height: 100%;
    border-radius: 14px;
    background: #eef2f7;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.smart-tool-card .icon-box img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}
.smart-tool-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}
.smart-tool-card p {
    font-size: 16px;
    line-height: 1.7;
}

/* FAQs */
.faqs {
    padding: 80px 0;
}
.accordion-button {
    padding: 20px;
}
.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #5467ed, #9fd8fd);
    color: #fff;
    box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1); /* makes the arrow white */
}

/* SERVICES */
.service-list li {
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #fff;
}

.service-list li a {
    color: #1f104a;
}

.service-list li a:hover {
    margin-left: 10px;
}
/* CONTACT */
  .cta-home-box .content h1 {
    color: #fff;
  }
  .contact-details {
    text-align: center;
  }
  .contact-details p {
    color: #fff;
  }
  .contact-details a {
    color: #fff;
  }
  .contact-details i {
    color: #fff;
    background: #1f104a;
    width: 70px;
    height: 70px;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 30px auto 10px;
}
/* PRIVACY POLICY */
.privacy-policy {
    padding: 80px 0;
}
.privacy-policy p {
    margin-top: 15px;
    margin-bottom: 15px;
}
.privacy-policy ul {
    list-style: disc;
    padding-left: 50px;
    padding-bottom: 15px;
}
/* FOOTER */
.footer-services ul li a {
    color: #b0a9c0;
    font-size: 16px;
    line-height: 34px;
}
.footer-services ul li a:hover {
        color: #6d9bf4;
}
.footer-copyright a {
    color: #b0a9c0;
    font-size: 16px;
    line-height: 34px;
}
.footer-copyright a:hover {
     color: #6d9bf4;
}
@media only screen and (min-width: 992px) {
    .header-box {
        background: #190a45;
    }   

    
}
@media only screen and (max-width: 991px) {
    .infetech-header-area .header-wrapper {
        box-shadow: 0px 1px 10px #c5c5c5;
    }
    .infetech-header-area .templates-logo {
        padding: 0px 20px !important;
    }
    .wsua-list {
        display: block;
       
    }
    .wsua-item {
         margin-bottom: 40px; 
    }
}

.cta-thumb img{
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.cookie-title {
    display: flex;
    align-items: center;
    justify-content: center;
}
.cookie-title img {
    width: 50px;
    margin-right: 20px;
}
.modal-header {
    background: #190a45;
    color: #fff;
}

.modal-header button.close {
    background: transparent;
    box-shadow: none;
    border: 0px;
    color: #fff;
    font-size: 25px;
}

.modal-header h2 {
    color: #fff;
}
.modal-dialog {
    width: 100%;
    max-width: 100%;
    position: absolute;
    bottom: 0;
    margin-bottom: 0;
}

.modal-body {
    height: 160px;
    text-align: justify;
    overflow-y: auto;
    background: linear-gradient(1deg, #9bd5fb, #fff);
}

.modal-body p {
    margin-bottom: 25px;
}

.modal-footer button.close-btn {
    background: #fff;
    color: #6d9bf4;
    box-shadow: 2px 2px 10px #d5d5d5;
}