/* Custom CSS for color adjustments */


/* Icon color styles for "Why Choose Us" section */

.feature-block-ten .inner-box .image-box img {
    filter: brightness(0) saturate(100%);
}


/* First and third icons - dark blue (#1b3448) */

.feature-block:nth-child(odd) .feature-block-ten .inner-box .image-box img {
    filter: brightness(0) saturate(100%) invert(15%) sepia(29%) saturate(1032%) hue-rotate(173deg) brightness(94%) contrast(96%);
}


/* Second and fourth icons - orange (#ff6600) */

.feature-block:nth-child(even) .feature-block-ten .inner-box .image-box img {
    filter: brightness(0) saturate(100%) invert(40%) sepia(98%) saturate(1839%) hue-rotate(360deg) brightness(103%) contrast(106%);
}


/* Hover effect - swap colors */

.feature-block:nth-child(odd) .feature-block-ten .inner-box:hover .image-box img {
    filter: brightness(0) saturate(100%) invert(40%) sepia(98%) saturate(1839%) hue-rotate(360deg) brightness(103%) contrast(106%);
}

.feature-block:nth-child(even) .feature-block-ten .inner-box:hover .image-box img {
    filter: brightness(0) saturate(100%) invert(15%) sepia(29%) saturate(1032%) hue-rotate(173deg) brightness(94%) contrast(96%);
}


/* Custom gradient for numbers in the Successful projects section */

.funfact-two .counter-block-one .count-outer.g_color_2 {
    background: -webkit-linear-gradient(45deg, #1b3448, #ff6600 75%);
    color: transparent;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent;
}


/* Industries Section Styles */

.industries-section {
    position: relative;
    padding: 125px 0px 90px 0px;
    background: #f7f7f7;
}

.industries-section .pattern-layer .pattern-1 {
    display: none;
}

.industries-section .pattern-layer .pattern-2 {
    display: none;
}

.industries-section .inner-box {
    position: relative;
    display: block;
    overflow: hidden;
    border: 1px solid rgba(27, 52, 72, 0.1);
    padding: 35px 30px 30px 30px;
    margin-bottom: 30px;
    border-radius: 5px;
    transition: all 500ms ease;
    background: #1b3448;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.industries-section .inner-box:hover {
    box-shadow: 0 20px 30px rgba(255, 102, 0, 0.4);
}

.industries-section .inner-box:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 0%;
    left: 0px;
    bottom: 0px;
    border-radius: 5px;
    transition: all 500ms ease;
    background: -webkit-linear-gradient(0deg, #ff6600, #ff8533 100%);
}

.industries-section .inner-box:hover:before {
    height: 100%;
    top: 0px;
}

.industries-section .inner-box .pattern-layer {
    display: none;
}

.industries-section .inner-box:hover .pattern-layer {
    display: none;
}

.industries-section .inner-box span {
    position: relative;
    display: block;
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.industries-section .inner-box h4 {
    line-height: 28px;
    margin-bottom: 70px;
}

.industries-section .inner-box h4,
.industries-section .inner-box h4 a {
    color: #fff;
}

.industries-section .inner-box .btn-box {
    position: absolute;
    right: 30px;
    bottom: 60px;
}

.industries-section .inner-box .btn-box a {
    position: relative;
    display: inline-block;
    width: 55px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    border-radius: 50%;
    font-size: 24px;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.industries-section .inner-box:hover .btn-box a {
    background: #fff;
    color: #ff6600;
}

.industries-section .inner-box .icon-box {
    position: relative;
    display: inline-block;
    font-size: 60px;
    line-height: 60px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0px;
    transition: all 500ms ease;
}

.industries-section .inner-box:hover .icon-box {
    color: #ff6600;
}

.industries-section .content-box .btn-box a {
    color: #fff;
    font-weight: 600;
}


/* Top Products buttons */

.product-btn {
    display: inline-block;
    position: relative;
    font-size: 14px;
    line-height: 26px;
    font-weight: 500;
    color: #fff !important;
    background: #1b3448;
    padding: 5px 20px;
    text-align: center;
    border-radius: 4px;
    z-index: 1;
    transition: all 0.3s ease;
    margin-top: 5px;
}

.product-btn:hover {
    background: #1b3448;
    box-shadow: 0 5px 15px rgba(27, 52, 72, 0.3);
    transform: translateY(-2px);
}


/* Adjust spacing in feature blocks */

.feature-block-one .inner-box {
    padding-bottom: 20px;
}


/* Footer logo styling */

.footer-logo {
    display: block;
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
}


/* History section styles */

.history-section {
    position: relative;
    padding: 95px 0px 100px 0px;
    background-color: #f7f7f7;
}

.history-section .pattern-layer {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0.1;
}

.history-section .arrow-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    max-width: 1200px;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 0;
    opacity: 1;
}

.history-section .image-layer {
    position: absolute;
    right: 0px;
    bottom: 0px;
}

.history-section .inner-box {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.history-section .single-item {
    position: relative;
    margin-bottom: 60px;
}

.history-section .single-item:last-child {
    margin-bottom: 0px;
}

.history-section .single-item .inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.history-section .single-item:nth-child(odd) .inner {
    flex-direction: row-reverse;
}

.history-section .single-item .content-box {
    position: relative;
    max-width: 400px;
    width: 100%;
}

.history-section .single-item .content-box h4 {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.history-section .single-item .content-box h4 a {
    display: inline-block;
    color: #1b3448;
}

.history-section .single-item .content-box h4 a:hover {
    color: #ff6600;
}

.history-section .single-item .content-box p {
    position: relative;
    font-size: 16px;
    margin: 0px;
}

.history-section .single-item .year {
    position: relative;
    display: inline-block;
    width: 150px;
    height: 150px;
    line-height: 150px;
    text-align: center;
    border-radius: 50%;
    background: #1b3448;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 500ms ease;
}

.history-section .single-item .year span {
    position: relative;
    display: inline-block;
}

.history-section .single-item .inner:hover .year {
    background: #ff6600;
}

.history-section .single-item .year span:before {
    position: absolute;
    content: '';
    width: 190px;
    height: 1px;
    top: 50%;
    margin-top: -0.5px;
    background: #e5e5e5;
}

.history-section .single-item:first-child .inner .year span:before,
.history-section .single-item:nth-child(3) .inner .year span:before {
    right: 100%;
}

.history-section .single-item:last-child .inner .year span:before,
.history-section .single-item:nth-child(2) .inner .year span:before {
    left: 100%;
}

.history-section .single-item:last-child .inner .year,
.history-section .single-item:nth-child(2) .inner .year {
    margin-left: 15px;
}

.history-section .single-item .year span:after {
    position: absolute;
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    top: 50%;
    margin-top: -6px;
    background: #ff6600;
}

.history-section .single-item:first-child .inner .year span:after,
.history-section .single-item:nth-child(3) .inner .year span:after {
    left: -96px;
}

.history-section .single-item:last-child .inner .year span:after,
.history-section .single-item:nth-child(2) .inner .year span:after {
    right: -96px;
}

@media only screen and (max-width: 767px) {
    .history-section .single-item {
        margin-bottom: 40px;
    }
    .history-section .single-item .inner {
        display: block;
        text-align: center;
    }
    .history-section .single-item .content-box {
        max-width: 100%;
        margin-bottom: 15px;
    }
    .history-section .single-item:nth-child(odd) .inner {
        flex-direction: row;
    }
    .history-section .single-item .year span:before,
    .history-section .single-item .year span:after {
        display: none;
    }
    .history-section .single-item:last-child .inner .year,
    .history-section .single-item:nth-child(2) .inner .year {
        margin-left: 0px;
    }
}


/* Vision, Mission & Values icon styling */

.feature-11 .feature-block-11 .icon-box .icon-img {
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.feature-11 .feature-block-11 .icon-box .icon-img img {
    width: 60px;
    height: auto;
    transition: all 0.3s ease;
    filter: brightness(1) sepia(0.5) hue-rotate(0deg) saturate(1.5);
}


/* Apply specific color filter to the values icon */

.feature-block:nth-child(3) .feature-block-11 .icon-box .icon-img img {
    filter: brightness(1) sepia(1) hue-rotate(0deg) saturate(2);
    /* Orange color filter */
}


/* Add a border and background to the icon-box */

.feature-11 .feature-block-11 .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 102, 0, 0.05);
    margin: 0 auto 20px auto;
    /* Center horizontally with bottom margin */
    transition: all 0.3s ease;
    z-index: 1;
}

.feature-11 .feature-block-11:hover .icon-box {
    background: rgba(27, 52, 72, 0.05);
    transform: scale(1.1);
}

.feature-11 .feature-block-11:hover .icon-box .icon-img img {
    transform: scale(1.1);
}


/* Add a subtle hover effect to the boxes */

.feature-11 .feature-block-11 .inner-box {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.feature-11 .feature-block-11:hover .inner-box {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 102, 0, 0.1);
    border-color: rgba(255, 102, 0, 0.1);
}


/* Service icons customization */


/* Partner Registration Form Styles */

.partner-registration-form {
    padding: 100px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.partner-registration-form .form-inner {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 40px;
    border: 2px solid #9E7FD4;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.partner-registration-form .form-inner:before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 17px;
    background: linear-gradient(45deg, #9E7FD4, transparent, #A19ACF, transparent, #F2B5C0);
    background-size: 400%;
    z-index: -1;
    animation: borderAnimation 8s linear infinite;
}

@keyframes borderAnimation {
    0% {
        background-position: 0 0;
    }
    50% {
        background-position: 100% 0;
    }
    100% {
        background-position: 0 0;
    }
}

.partner-registration-form .form-inner:hover {
    box-shadow: 0 15px 40px rgba(158, 127, 212, 0.2);
    transform: translateY(-5px);
}

.partner-registration-form .form-group {
    margin-bottom: 25px;
    position: relative;
}

.partner-registration-form label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
    transition: all 0.3s ease;
}

.partner-registration-form label i {
    color: #9E7FD4;
    margin-right: 8px;
}

.partner-registration-form input {
    height: 55px;
    width: 100%;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 0 20px;
    font-size: 15px;
    color: #333;
    background-color: #fff;
    transition: all 0.3s ease;
}

.partner-registration-form input:focus,
.partner-registration-form textarea:focus,
.partner-registration-form select:focus {
    border-color: #9E7FD4;
    box-shadow: 0 0 10px rgba(158, 127, 212, 0.2);
}

.partner-registration-form input::placeholder {
    color: #999;
}

.partner-registration-form select {
    height: 55px;
    width: 100%;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 0 20px;
    font-size: 15px;
    color: #333;
    background-color: #fff;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="6"><path d="M0 0l6 6 6-6z" fill="%23666"/></svg>');
    background-repeat: no-repeat;
    background-position: right 20px center;
    cursor: pointer;
}

.partner-registration-form select:focus {
    border-color: #9E7FD4;
    box-shadow: 0 0 10px rgba(158, 127, 212, 0.2);
}

.partner-registration-form select option {
    padding: 10px;
}


/* Partner Benefits Styling */

.partner-benefits {
    margin-top: 30px;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.partner-benefits h3 {
    color: #333;
    margin-bottom: 20px;
}

.partner-benefits .benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.partner-benefits .benefits-list li {
    margin-bottom: 12px;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.partner-benefits .benefits-list li i {
    color: #9E7FD4;
    margin-right: 10px;
    font-size: 18px;
}


/* FAQ Section Styling */

.faq-section {
    background-color: #f8f9fa;
    padding: 100px 0 70px;
}

.faq-section .sec-title p {
    color: #ff6600;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.faq-section .sec-title h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

.faq-section .accordion-box {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.faq-section .accordion-box .accordion {
    position: relative;
    display: block;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    transition: all 500ms ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.faq-section .accordion-box .accordion .acc-btn {
    position: relative;
    display: block;
    padding: 20px 30px 20px 60px;
    background: #ffffff;
    cursor: pointer;
    transition: all 500ms ease;
}

.faq-section .accordion-box .accordion .acc-btn h5 {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    color: #222;
    padding-right: 40px;
    transition: all 500ms ease;
}

.faq-section .accordion-box .accordion .acc-btn .icon-outer {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 14px;
    color: #ff6600;
    border-radius: 50%;
    background: rgba(255, 102, 0, 0.1);
    transition: all 500ms ease;
}

.faq-section .accordion-box .accordion .acc-btn.active .icon-outer {
    background: #ff6600;
    color: #ffffff;
    transform: rotate(45deg);
}

.faq-section .accordion-box .accordion .acc-btn.active h5 {
    color: #ff6600;
}

.faq-section .accordion-box .accordion .acc-content {
    position: relative;
    display: none;
    padding: 0px 30px 25px 60px;
    background: #ffffff;
}

.faq-section .accordion-box .accordion .acc-content.current {
    display: block;
}

.faq-section .accordion-box .accordion .acc-content .text p {
    font-size: 16px;
    line-height: 26px;
    color: #666;
}

@media only screen and (max-width: 767px) {
    .faq-section .sec-title h2 {
        font-size: 30px;
    }
    .faq-section .accordion-box .accordion .acc-btn {
        padding: 15px 20px 15px 50px;
    }
    .faq-section .accordion-box .accordion .acc-btn h5 {
        font-size: 16px;
        line-height: 24px;
    }
    .faq-section .accordion-box .accordion .acc-content {
        padding: 0px 20px 20px 50px;
    }
    .faq-section .accordion-box .accordion .acc-btn .icon-outer {
        left: 15px;
        top: 15px;
    }
}


/* Unique Contact Form Section */

.unique-contact-form {
    position: relative;
    padding: 80px 0;
    background-color: #f8f9fa;
}

.unique-contact-form .form-container {
    position: relative;
}

.unique-contact-form .contact-form-box {
    position: relative;
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    overflow: hidden;
}

.unique-contact-form .contact-form-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #ff6600, #ff8c00);
}

.unique-contact-form .field-inner {
    position: relative;
    margin-bottom: 20px;
}

.unique-contact-form .field-inner input,
.unique-contact-form .field-inner textarea {
    width: 100%;
    height: 55px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 0 20px 0 50px;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
}

.unique-contact-form .field-inner textarea {
    height: 150px;
    padding-top: 15px;
    resize: none;
}

.unique-contact-form .field-inner input:focus,
.unique-contact-form .field-inner textarea:focus {
    border-color: #ff6600;
    box-shadow: 0 0 10px rgba(255, 102, 0, 0.1);
}

.unique-contact-form .field-inner .icon-box {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #ff6600;
}

.unique-contact-form .field-inner textarea~.icon-box {
    top: 25px;
    transform: translateY(0);
}

.unique-contact-form .theme-btn-one {
    position: relative;
    display: inline-block;
    padding: 12px 35px;
    background: linear-gradient(to right, #ff6600, #ff8c00);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    overflow: hidden;
    z-index: 1;
}

.unique-contact-form .theme-btn-one:hover {
    background: linear-gradient(to right, #ff8c00, #ff6600);
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.2);
    transform: translateY(-3px);
}

.unique-contact-form .theme-btn-one i {
    margin-left: 8px;
    transition: all 0.3s ease;
}

.unique-contact-form .theme-btn-one:hover i {
    transform: translateX(5px);
}


/* Contact Info Box */

.unique-contact-form .contact-info-box {
    position: relative;
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    overflow: hidden;
}

.unique-contact-form .contact-info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #ff6600, #ff8c00);
}

.unique-contact-form .contact-info-list {
    position: relative;
    margin-bottom: 30px;
}

.unique-contact-form .info-block {
    position: relative;
    padding-left: 60px;
    margin-bottom: 25px;
}

.unique-contact-form .info-block:last-child {
    margin-bottom: 0;
}

.unique-contact-form .info-block .icon-box {
    position: absolute;
    left: 0;
    top: 0;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    font-size: 18px;
    color: #ffffff;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6600, #ff8c00);
}

.unique-contact-form .info-block h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.unique-contact-form .info-block p,
.unique-contact-form .info-block a {
    font-size: 16px;
    line-height: 26px;
    color: #666;
    margin: 0;
}

.unique-contact-form .info-block a:hover {
    color: #ff6600;
}

.unique-contact-form .social-links {
    position: relative;
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

.unique-contact-form .social-links li {
    margin-right: 10px;
}

.unique-contact-form .social-links li:last-child {
    margin-right: 0;
}

.unique-contact-form .social-links li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border-radius: 50%;
    color: #333;
    font-size: 16px;
    transition: all 0.3s ease;
}

.unique-contact-form .social-links li a:hover {
    background: linear-gradient(135deg, #ff6600, #ff8c00);
    color: #ffffff;
    transform: translateY(-3px);
}

@media only screen and (max-width: 991px) {
    .unique-contact-form .contact-info-box {
        margin-top: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .unique-contact-form {
        padding: 60px 0;
    }
    .unique-contact-form .contact-form-box,
    .unique-contact-form .contact-info-box {
        padding: 30px;
    }
}


/* Company Statistics Section */

.company-stats-section {
    position: relative;
    padding: 50px 0;
    background-color: #ffffff;
    z-index: 1;
}

.company-stats-section .sec-title p {
    color: #ff6600;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.company-stats-section .sec-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}


/* Unique Stats Block Design */

.stats-block-unique {
    position: relative;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 25px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.stats-block-unique:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.15);
}

.stats-block-unique::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #ff6600, #ff8c00);
    transition: all 0.4s ease;
}

.stats-block-unique:hover::before {
    width: 10px;
}

.stats-block-unique .stats-icon {
    position: relative;
    margin-right: 20px;
}

.stats-block-unique .icon-circle {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, rgba(255, 140, 0, 0.1) 100%);
    transition: all 0.4s ease;
}

.stats-block-unique:hover .icon-circle {
    background: linear-gradient(135deg, #ff6600 0%, #ff8c00 100%);
}

.stats-block-unique .icon-circle i {
    font-size: 28px;
    color: #ff6600;
    transition: all 0.4s ease;
}

.stats-block-unique:hover .icon-circle i {
    color: #ffffff;
}

.stats-block-unique .stats-content {
    flex: 1;
}

.stats-block-unique h5 {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: #222;
    margin: 0 0 5px;
    transition: all 0.4s ease;
}

.stats-block-unique .id-number {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 1.4em;
    font-weight: 500;
    color: #ff6600;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
}


/* Animation for ID numbers */

@keyframes text-focus {
    0% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.7;
    }
}

.stats-block-unique:hover .id-number {
    animation: text-focus 2s infinite;
    color: #ff6600;
    text-shadow: 0 0 3px rgba(255, 102, 0, 0.2);
}


/* Responsive Styles */

@media only screen and (max-width: 1199px) {
    .company-stats-section {
        margin-top: -30px;
    }
}

@media only screen and (max-width: 991px) {
    .stats-block-unique {
        padding: 20px;
        margin-bottom: 20px;
    }
    .stats-block-unique .icon-circle {
        width: 60px;
        height: 60px;
    }
    .stats-block-unique .icon-circle i {
        font-size: 24px;
    }
    .stats-block-unique .count-outer {
        font-size: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .company-stats-section {
        margin-top: 0;
        padding: 40px 0;
    }
    .company-stats-section .sec-title h2 {
        font-size: 28px;
    }
    .stats-block-unique {
        margin-bottom: 15px;
    }
}

.partner-registration-form .theme-btn-five {
    background: linear-gradient(to right, #e97887, #d45a5a);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-align: center;
    z-index: 1;
}

.partner-registration-form .theme-btn-five:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #e97887, #d45a5a);
    transition: all 0.5s ease;
    z-index: -1;
}

.partner-registration-form .theme-btn-five:hover:before {
    left: 0;
}

.partner-registration-form .theme-btn-five i {
    margin-left: 8px;
    transition: all 0.3s ease;
}

.partner-registration-form .theme-btn-five:hover i {
    transform: translateX(5px);
}


/* Partner Benefits Styles */

.partner-image-box {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.partner-image-box .image {
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.partner-image-box .image img {
    width: 100%;
    height: auto;
    transition: all 0.5s ease;
}

.partner-image-box:hover .image img {
    transform: scale(1.05);
}

.partner-benefits {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.partner-benefits h3 {
    color: #333;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.partner-benefits h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, #e97887, #d45a5a);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 16px;
    color: #666;
}

.benefits-list li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: #ff6600;
    font-size: 18px;
}


/* Responsive Styles */

@media only screen and (max-width: 991px) {
    .partner-registration-form .form-inner {
        margin-bottom: 40px;
    }
    .partner-image-box {
        margin-top: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .partner-registration-form {
        padding: 70px 0;
    }
    .partner-registration-form .form-inner {
        padding: 30px;
    }
    .partner-benefits {
        padding: 20px;
    }
}

@media only screen and (max-width: 575px) {
    .partner-registration-form .form-inner {
        padding: 20px;
    }
    .partner-registration-form .theme-btn-five {
        padding: 12px 25px;
        font-size: 14px;
    }
}


/* Clients section spacing and visibility improvements */

.clients-one {
    padding: 70px 0 100px 0;
    /* Increased top and bottom padding */
    margin-bottom: 50px;
    /* Add margin at the bottom to create space before footer */
    background-color: #f9f9f9;
    /* Light background to differentiate from footer */
}

.clients-one .clients-logo-box img {
    max-width: 100%;
    height: auto;
    opacity: 1;
    /* Make logos fully visible instead of faded */
    transition: all 0.3s ease;
}

.clients-one .clients-logo-box {
    padding: 20px;
    margin: 10px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.clients-one .clients-logo-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}


/* Ensure the owl carousel has proper spacing */

.clients-one .owl-carousel {
    padding: 20px 0;
}


/* Domain, Hosting and Maintenance */

.service-block-two:nth-child(1) .icon-box .icon i {
    content: '\e82b';
    color: #1b3448;
}

.service-block-two:nth-child(1):hover .icon-box .icon i {
    color: #ff6600;
}


/* Software Design and Development */

.service-block-two:nth-child(2) .icon-box .icon i {
    content: '\e833';
    color: #1b3448;
}

.service-block-two:nth-child(2):hover .icon-box .icon i {
    color: #ff6600;
}


/* App Design and Development */

.service-block-two:nth-child(3) .icon-box .icon i {
    content: '\e83c';
    color: #1b3448;
}

.service-block-two:nth-child(3):hover .icon-box .icon i {
    color: #ff6600;
}


/* Website Design and Development */

.service-block-two:nth-child(4) .icon-box .icon i {
    content: '\e83e';
    color: #1b3448;
}

.service-block-two:nth-child(4):hover .icon-box .icon i {
    color: #ff6600;
}


/* Logo, Visiting Card and Brochure Designing */

.service-block-two:nth-child(5) .icon-box .icon i {
    content: '\e84e';
    color: #1b3448;
}

.service-block-two:nth-child(5):hover .icon-box .icon i {
    color: #ff6600;
}


/* Search Engine Optimization (SEO) */

.service-block-two:nth-child(6) .icon-box .icon i {
    content: '\e856';
    color: #1b3448;
}

.service-block-two:nth-child(6):hover .icon-box .icon i {
    color: #ff6600;
}


/* Social Media Marketing */

.service-block-two:nth-child(7) .icon-box .icon i {
    content: '\e84d';
    color: #1b3448;
}

.service-block-two:nth-child(7):hover .icon-box .icon i {
    color: #ff6600;
}


/* Contact page spacing fix between map and feature section */

.map-section {
    margin-bottom: 350px !important;
}


/* Spacer div for better visual separation */

.section-spacer {
    height: 350px;
    width: 100%;
    clear: both;
    position: relative;
    display: block;
}


/* Move feature section down and add separation */

.feature-13 {
    padding-top: 50px;
    position: relative;
    margin-top: 100px;
}


/* Add a visual separator */

.feature-13:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, #1b3448, #ff6600);
}


/* Contact page feature section alignment fix */

.feature-13 .feature-block-eight .inner-box {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-13 .feature-block-eight:hover .inner-box {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.1);
}

.feature-13 .feature-block-eight .text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.feature-13 .feature-block-eight .text p {
    margin-bottom: 20px;
    flex-grow: 1;
}

.feature-13 .row {
    display: flex;
    flex-wrap: wrap;
}

.feature-13 .feature-block {
    display: flex;
    margin-bottom: 30px;
}


/* Make sure all blocks have equal height on mobile */

@media only screen and (max-width: 767px) {
    .feature-13 .feature-block {
        width: 100%;
    }
    .feature-13 .feature-block-eight .inner-box {
        height: auto;
        min-height: 300px;
    }
}


/* Footer curved shape */

.footer-four {
    position: relative;
}

.footer-four:before {
    content: '';
    position: absolute;
    top: -70px;
    left: 0;
    width: 100%;
    height: 70px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%231b3448' fill-opacity='1' d='M0,32L80,42.7C160,53,320,75,480,74.7C640,75,800,53,960,48C1120,43,1280,53,1360,58.7L1440,64L1440,320L1360,320C1280,320,1120,320,960,320C800,320,640,320,480,320C320,320,160,320,80,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

.industries-section .content-box {
    position: relative;
    margin-bottom: 30px;
}

.industries-section .sec-title {
    margin-bottom: 42px;
}

.btn-style-four {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 26px;
    color: #fff;
    font-weight: 500;
    padding: 12px 40px;
    text-align: center;
    border-radius: 5px;
    z-index: 1;
    overflow: hidden;
    text-transform: capitalize;
}

.btn-style-four:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    right: 0px;
    z-index: -1;
    background: -webkit-linear-gradient(0deg, #ff6600, #ff8533 100%);
    transition: all 500ms ease;
}

.btn-style-four:hover:before {
    opacity: 0;
}

.btn-style-four:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    right: 0px;
    z-index: -1;
    background: -webkit-linear-gradient(0deg, #ff8533, #ff6600 100%);
    transition: all 500ms ease;
    transform: scale(0, 0);
}

.btn-style-four:hover:after {
    transform: scale(1, 1);
}

.btn-style-four span {
    margin-left: 8px;
    font-size: 17px;
    font-weight: 600;
}

@keyframes slide {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(-1000px, 0, 0);
        transform: translate3d(-1000px, 0, 0);
    }
}


/* Why Choose Us / Our Hosting Main Features section background */

.feature-ten {
    background-color: #f7f7f7;
}


/* Add bottom margin to the Achievements heading */

.funfact-two .sec-title h2 {
    margin-bottom: 50px;
}


/* Add more spacing to the entire achievements section */

.funfact-two .sec-title {
    margin-bottom: 70px;
}


/* Move 'Our Achievements' text up */

.funfact-two .sec-title h6 {
    margin-bottom: 5px;
    position: relative;
    top: -5px;
}


/* Improve spacing in the achievements section */

.funfact-two {
    padding: 80px 0;
}


/* Adjust counter blocks */

.funfact-two .counter-block-one .inner-box {
    padding: 30px 15px;
    text-align: center;
}


/* Fix text color in white background */

.funfact-two .counter-block-one .inner-box p {
    color: #333 !important;
}


/* Scroll to top button styling */

.scroll-to-top .scroll-bar-text.g_color_2 {
    background: -webkit-linear-gradient(45deg, #1b3448, #ff6600 75%);
    color: transparent;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent;
}

.scroll-to-top .bar-inner {
    background: #1b3448;
}


/* Add more space around numbers */

.funfact-two .count-outer {
    margin-bottom: 25px;
    font-size: 60px;
}


/* Center align the counter blocks */

.funfact-two .row {
    justify-content: center;
}


/* Industries Section New Styles */

.industries-section-new {
    position: relative;
    background-color: #f8f9fa;
    overflow: hidden;
}

.industries-section-new:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/shape/shape-57.png) no-repeat;
    background-position: left top;
    opacity: 0.05;
    z-index: 0;
}

.industries-section-new:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #1b3448, #ff6600);
    transition: all 0.4s ease;
}

.industry-card {
    position: relative;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.industry-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #1b3448, #ff6600);
    transition: all 0.4s ease;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.industry-card:hover:before {
    height: 6px;
}

.industry-card .icon-box {
    position: relative;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    border-radius: 50%;
    background: #f7f7f7;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.industry-card:hover .icon-box {
    background: #1b3448;
    animation: pulse 2s infinite;
}

.industry-card .industry-icon {
    font-size: 36px;
    color: #1b3448;
    transition: all 0.4s ease;
}

.industry-card:hover .industry-icon {
    color: #ffffff;
}

.industry-card h3 {
    font-size: 22px;
    line-height: 1.3;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 15px;
    color: #1b3448;
    transition: all 0.3s ease;
}

.industry-card:hover h3 {
    color: #1b3448;
}

.industry-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.industry-card .industry-link {
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    color: #1b3448;
    transition: all 0.3s ease;
}

.industry-card .industry-link i {
    margin-left: 5px;
    transition: all 0.3s ease;
}

.industry-card:hover .industry-link {
    color: #1b3448;
}

.industry-card:hover .industry-link i {
    transform: translateX(5px);
}


/* Page title background and shapes fix */

.page-title.style-two .pattern-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-title.style-two .pattern-layer .shape-1,
.page-title.style-two .pattern-layer .shape-2,
.page-title.style-two .pattern-layer .shape-3 {
    position: absolute;
    background-size: contain;
    z-index: -1;
}

.page-title.style-two .pattern-layer .shape-1 {
    display: block;
    visibility: visible;
    opacity: 1;
}

.page-title.style-two .pattern-layer .shape-2 {
    display: block;
    visibility: visible;
    opacity: 1;
}

.page-title.style-two .pattern-layer .shape-3 {
    display: block;
    visibility: visible;
    opacity: 0.1;
}


/* Animation for the industry cards */

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(27, 52, 72, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(27, 52, 72, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(27, 52, 72, 0);
    }
}


/* Responsive adjustments */

@media only screen and (max-width: 991px) {
    .industry-card {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .industries-section-new {
        padding: 70px 0;
    }
}