﻿
.footer-contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.footer-contact-list li i {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: rgba(255,255,255,.08);
    color: #D9BC7A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.footer-contact-list li h4 {
    font-size: 14px;
    color: #fff;
    margin-bottom: 5px;
    font-weight: 600;
}

.footer-contact-list li p {
    font-size: 14px;
    margin: 0;
    color: rgba(255,255,255,.75);
}

.footer-contact-list li a {
    color: rgba(255,255,255,.75);
    transition: .3s;
}

    .footer-contact-list li a:hover {
        color: #D9BC7A;
    }

.premium-breadcrumb {
    position: relative;
    padding: 180px 0 120px;
    overflow: hidden;
    background: linear-gradient( 135deg, #08163f 0%, #0A4EA3 100% );
}

.breadcrumb-overlay {
    position: absolute;
    inset: 0;
    background: url('assets/images/breadcrumb-pattern.png');
    background-size: cover;
    opacity: .08;
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.breadcrumb-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #D9BC7A;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

    .breadcrumb-tag:before,
    .breadcrumb-tag:after {
        content: '';
        width: 40px;
        height: 2px;
        background: #D9BC7A;
    }

.premium-breadcrumb h1 {
    color: #fff;
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 25px;
}

.breadcrumb-nav {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 14px 30px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50px;
    margin: 0;
    list-style: none;
}

    .breadcrumb-nav li {
        color: #fff;
        font-size: 15px;
    }

        .breadcrumb-nav li a {
            color: #D9BC7A;
            transition: .3s;
        }

            .breadcrumb-nav li a:hover {
                color: #fff;
            }

.breadcrumb-shape {
    position: absolute;
    border-radius: 50%;
}

.shape-1 {
    width: 350px;
    height: 350px;
    background: rgba(217,188,122,.08);
    top: -120px;
    right: -100px;
}

.shape-2 {
    width: 250px;
    height: 250px;
    background: rgba(255,255,255,.05);
    bottom: -100px;
    left: -80px;
}

@media(max-width:991px) {

    .premium-breadcrumb {
        padding: 140px 0 90px;
    }

        .premium-breadcrumb h1 {
            font-size: 44px;
        }
}

@media(max-width:767px) {

    .premium-breadcrumb {
        padding: 120px 0 70px;
    }

        .premium-breadcrumb h1 {
            font-size: 38px;
        }

    .breadcrumb-nav {
        padding: 12px 20px;
        gap: 10px;
    }
}

.website-transform-section {
    padding: 120px 0;
    background: #f8fafc;
}

.transform-wrapper {
    display: grid;
    grid-template-columns: 1fr 120px 1fr;
    gap: 30px;
    align-items: center;
}

.transform-box {
    background: #fff;
    padding: 45px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,.05);
    position: relative;
    overflow: hidden;
}

.old-site {
    border-top: 5px solid #dc3545;
}

.new-site {
    border-top: 5px solid #0A4EA3;
}

.transform-label {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.old-site .transform-label {
    background: #ffe8eb;
    color: #dc3545;
}

.new-site .transform-label {
    background: #eaf2ff;
    color: #0A4EA3;
}

.transform-box h3 {
    font-size: 32px;
    font-weight: 800;
    color: #0b163f;
    margin-bottom: 25px;
}

.transform-box ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.transform-box li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: #6B7280;
}

.old-site li i {
    color: #dc3545;
}

.new-site li i {
    color: #28a745;
}
.mobile-app-features {
    padding: 120px 0;
    background: rgb(248, 250, 252);
}

.app-wrapper{
    display:grid;
    grid-template-columns:1fr 420px 1fr;
    align-items:center;
    gap:40px;
}

.app-center img{
    width:100%;
    animation:float 4s ease-in-out infinite;
}

@keyframes float{
    50%{
        transform:translateY(-15px);
    }
}

.app-feature-box{
    background:#fff;

    padding:30px;
    border-radius:25px;

    text-align:center;

    box-shadow:
    0 15px 40px rgba(0,0,0,.05);

    margin-bottom:25px;

    transition:.4s;
}

.app-feature-box:hover{
    transform:translateY(-8px);
}

.app-feature-box i{
    width:70px;
    height:70px;

    border-radius:20px;

    background:linear-gradient(
        135deg,
        #0A4EA3,
        #2563eb
    );

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:0 auto 20px;

    font-size:28px;
}

.app-feature-box h4{
    font-size:22px;
    font-weight:700;
    margin-bottom:10px;
}

.app-feature-box p{
    color:#6B7280;
    margin:0;
}

@media(max-width:991px){

    .app-wrapper{
        grid-template-columns:1fr;
    }

    .app-center{
        order:-1;
        max-width:350px;
        margin:auto;
    }
}
.vs-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient( 135deg, #0A4EA3, #D9BC7A );
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: auto;
}

@media(max-width:991px) {

    .transform-wrapper {
        grid-template-columns: 1fr;
    }

    .vs-circle {
        width: 80px;
        height: 80px;
    }
}

.web-design-section {
    padding: 120px 0;
}

.service-tag {
    display: inline-block;
    color: #D9BC7A;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.web-design-section h2 {
    font-size: 44px;
    font-weight: 800;
    color: #0b163f;
    margin-bottom: 25px;
}

.web-design-section p {
    color: #6B7280;
    line-height: 1.9;
    margin-bottom: 30px;
}

.web-features {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #0b163f;
}

    .feature-item i {
        color: #D9BC7A;
    }
.web-btn:hover {
    border: 1px solid #0A4EA3;
    color: #0A4EA3;
    background: #fff;
    transition: .5s;
    box-shadow: 0 10px 25px rgba(10,78,163,.15);
}
.web-btn {
    display: inline-block;
    padding: 15px 35px;
    background: #0A4EA3;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
}

.web-image-wrapper {
    position: relative;
}

    .web-image-wrapper img {
        width: 100%;
        border-radius: 30px;
    }

.floating-card {
    position: absolute;
    background: #ffffffe0;
    padding: 18px 25px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    text-align: center;
}

    .floating-card strong {
        /*display: block;*/
        color: #0A4EA3;
        font-size: 22px;
    }

.card-one {
    top: 40px;
    left: -30px;
}

.card-two {
    bottom: 40px;
    right: -20px;
}

@media(max-width:991px) {

    .web-design-section h2 {
        font-size: 40px;
    }

    .web-image-wrapper {
        margin-top: 40px;
    }
}

@media(max-width:767px) {

    .web-features {
        grid-template-columns: 1fr;
    }

    .web-design-section h2 {
        font-size: 32px;
    }

    .floating-card {
        display: none;
    }
}

.software-solutions {
    margin-top: 35px;
}

.solution-box {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid #edf2f7;
    transition: .3s;
}

    .solution-box:last-child {
        border-bottom: none;
    }

    .solution-box:hover {
        padding-left: 12px;
    }

    .solution-box span {
        width: 55px;
        height: 55px;
        min-width: 55px;
        border-radius: 15px;
        background: linear-gradient( 135deg, #0A4EA3, #2563eb );
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 18px;
    }

    .solution-box h4 {
        font-size: 22px;
        font-weight: 700;
        color: #0b163f;
        margin-bottom: 6px;
    }

    .solution-box p {
        margin: 0;
        color: #6B7280;
        line-height: 1.7;
    }
.software-banner {
    padding: 70px 0;
    background: linear-gradient( 135deg, rgba(10,78,163,.95), rgba(5,32,76,.95) );
    border-radius: 40px;
    margin:0 30px ;
    position: relative;
    overflow: hidden;
}

    .software-banner::before {
        content: '';
        position: absolute;
        width: 350px;
        height: 350px;
        border-radius: 50%;
        background: rgba(255,255,255,.05);
        top: -150px;
        right: -100px;
    }

    .software-banner::after {
        content: '';
        position: absolute;
        width: 250px;
        height: 250px;
        border-radius: 50%;
        background: rgba(217,188,122,.12);
        bottom: -120px;
        left: -80px;
    }

.software-banner-content {
    max-width: 1320px;
    text-align: center;
    margin: auto;
    position: relative;
    z-index: 2;
}

.banner-tag {
    display: inline-block;
    color: #D9BC7A;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.software-banner h2 {
    color: #fff;
    font-size: 44px;
    font-weight: 800;
    line-height: 1.25;
    max-width: 1000px;
    margin: 0 auto 25px;
}

.software-banner p {
    color: rgba(255,255,255,.85);
    font-size: 18px;
    line-height: 1.9;
    max-width: 1000px;
    margin: 0 auto 40px;
}
.banner-points {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 35px;
}
    .banner-points span {
        background: rgba(255,255,255,.08);
        padding: 14px 24px;
        border-radius: 50px;
        color: #fff;
        font-size: 15px;
        font-weight: 600;
    }
.software-banner h2 span {
    color: #D9BC7A;
}
    .banner-points i {
        color: #D9BC7A;
        margin-right: 8px;
    }

.banner-btn {
    display: inline-block;
    padding: 18px 42px;
    font-size: 16px;
    font-weight: 700;
    background: #fff;
    color: #0A4EA3;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: .4s;
}

    .banner-btn:hover {
        background: #D9BC7A;
        color: #fff;
    }

@media(max-width:767px) {

    .software-banner {
        padding: 70px 25px;
        
    }

        .software-banner h2 {
            font-size: 34px;
        }
}
.business-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 35px 0;
}

    .business-card-features span {
        padding: 14px 22px;
        border-radius: 50px;
        background: #f4f8ff;
        border: 1px solid rgba(10,78,163,.12);
        color: #0b163f;
        font-size: 15px;
        font-weight: 600;
        transition: .3s;
    }

        .business-card-features span:hover {
            background: #0A4EA3;
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(10,78,163,.15);
        }

@media(max-width:767px) {

    .business-card-features {
        gap: 10px;
    }

        .business-card-features span {
            font-size: 14px;
            padding: 12px 18px;
        }
}

.business-marquee-section {
    padding: 100px 0 0;
    background: #f8fafc;
    overflow: hidden;
}

.marquee-wrapper {
    margin-bottom: 70px;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 35px;
    width: max-content;
    animation: marqueeMove 25s linear infinite;
}

    .marquee-track span {
        font-size: 48px;
        font-weight: 800;
        color: #0A4EA3;
        white-space: nowrap;
    }

        .marquee-track span:nth-child(even) {
            color: #D9BC7A;
        }

@keyframes marqueeMove {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.branding-cards {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.branding-card {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,.05);
    transition: .4s;
}

    .branding-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(10,78,163,.12);
    }

    .branding-card h3 {
        font-size: 28px;
        font-weight: 700;
        color: #0b163f;
        margin-bottom: 15px;
    }

    .branding-card p {
        color: #6B7280;
        line-height: 1.8;
    }

@media(max-width:991px) {

    .branding-cards {
        grid-template-columns: 1fr;
    }

    .marquee-track span {
        font-size: 34px;
    }
}
.marketing-services {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 35px 0;
}

.marketing-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    background: #f4f8ff;
    border: 1px solid rgba(10,78,163,.10);
    border-radius: 50px;
    transition: .3s;
}

    .marketing-item:hover {
        background: #0A4EA3;
        transform: translateY(-4px);
    }

    .marketing-item i {
        color: #D9BC7A;
        font-size: 16px;
    }

    .marketing-item span {
        color: #0b163f;
        font-weight: 600;
    }

    .marketing-item:hover span {
        color: #fff;
    }

@media(max-width:767px) {

    .marketing-services {
        gap: 10px;
    }

    .marketing-item {
        width: 100%;
        justify-content: flex-start;
    }
}
.marketing-grid-section {
    padding: 100px 0;
    background: #f8fafc;
}

.marketing-box {
    background: #fff;
    padding: 35px;
    border-radius: 25px;
    height: 100%;
    box-shadow: 0 15px 35px rgba(0,0,0,.05);
    transition: .4s;
}

    .marketing-box:hover {
        transform: translateY(-10px);
    }

    .marketing-box span {
        font-size: 14px;
        font-weight: 700;
        color: #D9BC7A;
        letter-spacing: 2px;
    }

    .marketing-box h4 {
        margin: 15px 0;
        font-size: 26px;
        font-weight: 700;
        color: #0b163f;
    }

    .marketing-box p {
        margin: 0;
        color: #6B7280;
        line-height: 1.8;
    }
