
@charset "utf-8";
/* CSS Document */
/* Banner */

* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Montserrat', sans-serif;
        color: #333;
        line-height: 1.6;
		/* background-color: white; */
    }

    h1, h2, h3, h4, h5, h6 {
        font-family: "Enriqueta", serif;
        font-weight: 700;
        /* color: #1a2a3a; */
    }

    .section {
        padding: 80px 0;
    }

/* .banner-content-row {
	height:50vh!important;
} */
.banner-wrapper {
    background-image: linear-gradient(rgba(129, 129, 129, 0.3), rgba(0, 0, 0, 0.3)), url('https://img.freepik.com/free-photo/warehouse-worker-scanning-barcode-box_23-2152005488.jpg?semt=ais_hybrid&w=740&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    padding: 60px 30px;
    /* overflow: hidden; */
    position: relative;
}

.banner-content {
    padding: 20px;
}

.banner-title {
    font-family: 'factoria', serif;
    font-size: 66px;
    font-weight: 100;
    margin-bottom: 10px;
    color: #ffffff;
	letter-spacing: 2px;
}

.banner-subtitle {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #f09630;
	letter-spacing: 1px;
}

.banner-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #ffffff;
}

.btn-prime {
    background-color: #c06701;
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-prime:hover {
    background-color: #da7501;
}

.banner-image img {
   
    border-radius: 8px;
}

/* Banner with background image and overlay */
.banner-wrapper {
    position: relative;
    border-radius: 10px;
    padding: 40px 30px;
    /* overflow: hidden; */
    z-index: 1;
}

.banner-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('path/to/your/barcode-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.banner-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(105deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.7) 50%, rgba(0,20,40,0.7) 100%);
    z-index: -1;
}


/* Enquiry Form Styles */
.enquiry-form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #333;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.form-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #da7501;
}

.enquiry-form .form-group {
    margin-bottom: 15px;
}

.enquiry-form .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.enquiry-form .form-control:focus {
    outline: none;
    border-color: #da7501;
    box-shadow: 0 0 0 3px rgba(79, 195, 247, 0.1);
    background: #ffffff;
}

.enquiry-form textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(45deg, #da7501, #fca13a);
    color: #000000;
    padding: 14px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background: linear-gradient(45deg, #da7501, #da7501);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(41, 182, 246, 0.3);
}
   
    /* Contact Section */
    .contact-section {
       background: linear-gradient( rgba(0, 0, 0, 0.6),  rgba(0, 0, 0, 0.6)),
    url('https://s.alicdn.com/@sc04/kf/H46f97785870f4ce49430686fcc270959Q/221435798/H46f97785870f4ce49430686fcc270959Q.jpg');

     background-size: cover;
     background-position: top-center;
     background-repeat: no-repeat;
        color: #ffffff;
    }

    .contact-title {
        font-size: 42px;
        color: #ffffff;
        margin-bottom: 20px;
    }

    .contact-description {
        font-size: 18px;
        opacity: 0.9;
        margin-bottom: 30px;
    }

    .contact-info {
        margin-top: 30px;
    }

    .contact-item {
        margin-bottom: 15px;
        display: flex;
        align-items: center;
    }

    .contact-item strong {
        min-width: 80px;
        color: #da7501;
    }

    .contact-item span {
        color: #ffffff;
        opacity: 0.9;
    }

    .contact-form-wrapper {
        background: rgba(255, 255, 255, 0.05);
        padding: 40px;
        border-radius: 10px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .contact-form .form-control {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: #ffffff;
        padding: 12px 15px;
        margin-bottom: 16px;
        border-radius: 5px;
    }

    .contact-form .form-control::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }

    .contact-form .form-control:focus {
        background: rgba(255, 255, 255, 0.15);
        border-color: #da7501;
        box-shadow: none;
        color: #ffffff;
    }

    .btn-contact {
        background: #da7501;
        color: #ffffff;
        padding: 14px 30px;
        border: none;
        border-radius: 5px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        cursor: pointer;
        transition: all 0.3s ease;
        width: 100%;
    }

    .btn-contact:hover {
        background: #c06701;
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(218, 117, 1, 0.3);
        color: #ffffff;
    }

    .success {
        background-color: #ffffff91;
        padding : 40px 20px;
        border-radius : 20px;


    .gold {
        color : #ff8800;
        font-size : 50px;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
        
    }

    p {
        color : black;
        font-size : 18px;
    }
    }

    /* Responsive */
    @media (max-width: 991.98px) {
        .section {
            padding: 60px 0;
        }

        .banner-title {
            font-size: 36px;
        }
        
        .banner-description {
            max-width: 100%;
        }
        
        .enquiry-form-wrapper {
            margin-top: 30px;
        }
        
        .section-title {
            font-size: 32px;
        }
        
        .cta-title {
            font-size: 28px;
            text-align: center;
        }
        
        .cta-description {
            text-align: center;
            margin-bottom: 20px;
        }
        
        .text-lg-end {
            text-align: center !important;
        }
    }

    @media (max-width: 767.98px) {
        .section {
            padding: 40px 0;
        }
        
        .banner-wrapper {
            padding: 30px 0;
        }
        
        .service-title {
            font-size: 20px;
        }
        
        .contact-form-wrapper {
            margin-top: 30px;
        }

        .back-gray {
		padding: 30px;
		
	}
    }

    /* Main css  */

    .hero-tier-one.managed-services-hero {
      background: #000 url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNjAwIiBoZWlnaHQ9IjcwMCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0iIzE4MTgxOCIvPjxwYXRoIGQ9Ik0wIDQwMEwxNjAwIDQwME0wIDUwMEwxNjAwIDUwME0wIDYwMEwxNjAwIDYwME0zMDAgMEwzMDAgNzAwTTYwMCAwTDYwMCA3MDBNOTAwIDBMOTAwIDcwME0xMjAwIDBMMTIwMCA3MDAiIHN0cm9rZT0iIzMzMyIgc3Ryb2tlLXdpZHRoPSIxIi8+PC9zdmc+') center/cover;
      color: #fff;
      padding: 3rem 0;
    }
    .hero-overlay .inner {
         max-width: 1200px;
         margin: 0 auto; 
         padding: 0 20px; 
         display: flex; 
         flex-wrap: wrap;
         align-items: center;
         gap: 3rem; 
        
        }


    .hero .copy { 
        flex: 1 1 45%;
     }
    .hero .copy h1 { 
        font-family: 'factoria', serif;
        font-weight: 600; 
        font-size: 3.8rem;
        line-height: 1.1; 
        margin-bottom: 1rem;
        
        }

    .hero .copy h2 {
        font-size: 2.2rem;
        font-weight: 400;
        margin: 1rem 0 1.5rem; 
    }

    .hero .copy p { 
        font-size: 1.2rem;
        opacity: 0.85; 
        max-width: 550px; }

    .needs-marquee {
         flex: 1 1 400px; 
         background: rgba(0,0,0,0.65); 
         backdrop-filter: blur(10px); 
         border-radius: 16px; 
         padding: 2.2rem; 
         border: 1px solid rgba(255,255,255,0.15); 
        }
    .needs-marquee h3 { 
        color: #f90; 
        font-size: 2rem; 
        font-weight: 500; 
        margin-bottom: 2rem; 
    }
    .needs-marquee ul { 
        list-style: none; 
    }
    .needs-marquee li {
         margin-bottom: 1.2rem;
         }
    .needs-marquee label {
         display: block; 
         font-size: 0.75rem; 
         text-transform: uppercase; 
         letter-spacing: 1px; 
         color: #aaa; 
         margin-bottom: 0.2rem; 
        }
    .needs-marquee input, .needs-marquee textarea {
         width: 100%; 
         background: rgba(20,20,20,0.9);
         border: 1px solid #3a3a3a; 
         color: #fff; 
         padding: 12px 15px; 
         border-radius: 6px; 
        }
    .needs-marquee input:focus { 
        border-color: #f90; 
        outline: none; 
    }
    .button-link.orange { 
        background: #f90; 
        color: #000; 
        font-weight: 700; 
        font-size: 1rem; 
        border: none; 
        padding: 14px 30px; 
        border-radius: 40px; 
        cursor: pointer; 
        width: 100%; 
        text-transform: uppercase; 
        letter-spacing: 1px; 
        transition: 0.2s; 
        margin-top: 10px; }

    .button-link.orange:hover { 
        background: #e07d00; 
    }

    /* dark challenges cards */
    .services-cols__int.dark {
         background: #000;
         }

    .services-section__header.dark {
         color: #fff; 
        }

    .services-section__header h3 {
        color: #f80;
         font-size: 3rem; 
         font-weight: 300; 
         font-family: 'Montserrat', serif; 
         margin-bottom: 0.5rem; 
        }

    .services-section__header .lead { 
        font-size: 1.3rem; 
        color: #fffdfd; 
        max-width: 700px; 
        margin: 0 auto; 
        margin-bottom: 18px;
    }

    .services-cols__int-item.dark { 
        color: #fff; 
        text-align: center; 
        margin-bottom: 2.5rem; 
    }

    .services-cols__int-icon { 
        width: 90px; 
        height: 90px; 
        margin: 0 auto 1.8rem; 
    }
    .services-cols__int-icon img { 
        width: 100%; 
        height: 100%; 
        /* object-fit: contain; 
        filter: brightness(0) invert(1);  */
    }
    .services-cols__int-item h3 { 
        font-size: 1.4rem; 
        font-weight: 600; 
        margin-bottom: 1rem; 
    }

    .services-cols__int-item p { 
        font-size: 1rem; 
        opacity: 0.75; 
        max-width: 280px; 
        margin: 0 auto; 
    }

    .services-arrow { 
        width: 95px; 
        margin: 0px auto; 
        display: block; 
    }

     /* main container */
        .infographic-center {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 100%;
            position: relative;
        }

        /* circle wrapper (desktop version) */
        .circle-wrapper {
            position: relative;
            width: 760px;
            height: 760px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
        }

        /* ----- the 500px circle core ----- */
        .circle-core {
            position: relative;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            overflow: hidden;
            box-shadow: 0 20px 35px rgba(0,0,0,0.5), 0 0 0 8px rgba(255,255,245,0.4);
            flex-shrink: 0;
            z-index: 5;
        }

        /* quadrants */
        .quadrant {
            position: absolute;
            width: 500px;
            height: 500px;
            box-shadow: inset 0px 0px 40px rgba(0,0,0,0.5);
        }

        .quadrant-1 {
            background-color: #900C3E;
            transform: rotate(0deg) translate(50%, -50%);
            top: 0%;
            left: 50%;
        }
        .quadrant-2 {
            background-color: #C70039;
            transform: rotate(90deg) translate(50%, -50%);
            top: 0%;
            left: 50%;
        }
        .quadrant-3 {
            background-color: #FF5733;
            transform: rotate(180deg) translate(50%, -50%);
            top: 0%;
            left: 50%;
        }
        .quadrant-4 {
            background-color: #ff9800;
            transform: rotate(270deg) translate(50%, -50%);
            top: 0%;
            left: 50%;
        }

        /* ----- TITLE CIRCLE (middle) ----- */
        .title-circle {
            position: absolute;
            width: 420px;
            height: 420px;
            background: #ffffff;
            border-radius: 50%;
            z-index: 30;
            box-shadow: 0 10px 25px rgba(0,0,0,0.45), inset 0 0 0 6px rgba(255,255,240,0.8);
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .title-circle .content {
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: white;
            border: 4px solid rgba(0,0,0,0.08);
            box-shadow: inset 0 0 20px rgba(0,0,0,0.2);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 10px;
            transition: all 0.2s;
        }

        .center-image {
            width: 400px;
            height: 400px;
            border-radius: 50%;
            object-fit: cover;
            /* border: 3px solid white; */
            box-shadow: 0 5px 12px rgba(0,0,0,0.25);
            display: none;
            /* margin-bottom: 6px; */
        }

        .title-circle.show-image .center-image {
            display: inline-block;
        }

        .center-title {
            font-size: 1.7rem;
            font-weight: 700;
            transition: color 0.15s;
            line-height: 1.3;
        }

        .center-subtitle {
            font-weight: 600;
            font-size: 0.85rem;
            color: #2c3e50;
        }

        .title-circle.show-image .center-title {
            /* font-size: 1.2rem; */
             display: none;
        }
        .title-circle.show-image .center-subtitle {
            /* font-size: 0.7rem; */
             display: none;
        }

        /* ----- NUMBERED CIRCLES - on outer edge (desktop) ----- */
        .number {
            position: absolute;
            width: 90px;
            height: 90px;
            background: #ffffff;
            border-radius: 50%;
            border: 5px solid;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 3rem;
            box-shadow: 0 12px 20px rgba(0,0,0,0.5);
            transform: translate(-50%, -50%);
            transition: transform 0.15s ease, filter 0.15s;
            cursor: pointer;
            z-index: 45;
            pointer-events: auto;
        }

        .number:hover {
            transform: translate(-50%, -50%) scale(1.2);
            filter: brightness(1.1);
        }

        /* desktop positions (on outer edge) */
        .number[data-num="1"] {
            left: 660px;
            top: 175px;
            border-color: #900C3E;
            color: #900C3E;
        }
        .number[data-num="2"] {
            left: 95px;
            top: 175px;
            border-color: #C70039;
            color: #C70039;
        }
        .number[data-num="3"] {
            left: 95px;
            top: 585px;
            border-color: #FF5733;
            color: #FF5733;
        }
        .number[data-num="4"] {
            left: 660px;
            top: 585px;
            border-color: #ff9800;
            color: #ff9800;
        }

        /* ----- FLOATING DETAIL BOXES (desktop) ----- */
        .detail-box {
            position: absolute;
            width: 350px;
            background: #1e2f3f;
            color: white;
            border-radius: 30px 12px 30px 12px;
            padding: 18px 18px;
            box-shadow: 0 20px 30px rgba(0,0,0,0.7), 0 0 0 3px rgba(255,215,0,0.3);
            border-left: 8px solid #ff9800;
            opacity: 0;
            transform: scale(0.8);
            transition: opacity 0.2s ease, transform 0.2s ease;
            pointer-events: none;
            z-index: 60;
            backdrop-filter: blur(2px);
        }

        .detail-box.visible {
            opacity: 1;
            transform: scale(1);
            pointer-events: none;
        }

        .detail-box h3 {
            font-size: 1.5rem;
            color: #ffd966;
            margin-bottom: 8px;
        }

        .detail-box p {
            font-size: 0.95rem;
            line-height: 1.5;
            margin-bottom: 10px;
        }

        .detail-box .tag {
            background: #ff9800;
            color: #1e2f3f;
            display: inline-block;
            padding: 4px 14px;
            border-radius: 30px;
            font-weight: bold;
        }

        /* desktop positions for detail boxes */
        #detailBox1 { left: 720px; top: 0px; }
        #detailBox2 { left: -300px; top: 180px; }
        #detailBox3 { left: -310px; top: 450px; }
        #detailBox4 { left: 720px; top: 450px; }

         @media (max-width: 1400px) {

          #detailBox2 { left: -250px; top: 180px; }
        #detailBox3 { left: -250px; top: 450px; }

             .detail-box {
            position: absolute;
            width: 300px;
            background: #1e2f3f;
            color: white;
            border-radius: 30px 12px 30px 12px;
            padding: 18px 18px;
            box-shadow: 0 20px 30px rgba(0,0,0,0.7), 0 0 0 3px rgba(255,215,0,0.3);
            border-left: 8px solid #ff9800;
            opacity: 0;
            transform: scale(0.8);
            transition: opacity 0.2s ease, transform 0.2s ease;
            pointer-events: none;
            z-index: 60;
            backdrop-filter: blur(2px);
        }

        .detail-box.visible {
            opacity: 1;
            transform: scale(0.9);
            pointer-events: none;
        }

        .detail-box h3 {
            font-size: 1rem;
            color: #ffd966;
            margin-bottom: 8px;
        }

        .detail-box p {
            font-size: 0.75rem;
            line-height: 1.5;
            margin-bottom: 10px;
        }

        .detail-box .tag {
            background: #ff9800;
            color: #1e2f3f;
            display: inline-block;
            padding: 4px 14px;
            border-radius: 30px;
            font-weight: bold;
        }

         }

        /* ----- MOBILE / SMALL SCREEN VERSION (≤ 800px) ----- */
        @media (max-width: 1244px) {
            /* remove fixed wrapper size, use auto height */
            .circle-wrapper {
                width: 100%;
                height: auto;
                min-height: auto;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                position: relative;
                transform: scale(1);
                margin: 0;
            }

            /* hide absolutely positioned desktop numbers and detail boxes on mobile */
            .number, .detail-box,.center-subtitle {
    
                display: none;
            }

            /* show mobile version numbers & details as a vertical list */
            .mobile-alternative {
                display: flex!important;
                flex-direction: column;
                width: 100%;
                max-width: 450px;
                margin-top: 25px;
                gap: 18px;
                padding: 10px;
            }

            .mobile-card {
                background: #1e2f3f;
                border-radius: 40px 15px 40px 15px;
                padding: 20px 20px;
                border-left: 10px solid;
                box-shadow: 0 12px 20px rgba(0,0,0,0.4);
                color: white;
                display: flex;
                align-items: center;
                gap: 18px;
                transition: transform 0.1s;
                cursor: pointer;
                -webkit-tap-highlight-color: transparent;
            }

            .mobile-card:active {
                transform: scale(0.98);
            }

            .mobile-number {
                width: 70px;
                height: 70px;
                background: white;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 2.5rem;
                font-weight: 700;
                flex-shrink: 0;
                box-shadow: 0 6px 12px rgba(0,0,0,0.3);
            }

            .mobile-content {
                flex: 1;
            }

            .mobile-content h4 {
                font-size: 1.8rem;
                color: #ffd966;
                margin-bottom: 5px;
            }

            .mobile-content p {
                font-size: 0.95rem;
                line-height: 1.4;
                margin-bottom: 6px;
            }

            .mobile-tag {
                display: inline-block;
                background: #ff9800;
                color: #1e2f3f;
                padding: 3px 15px;
                border-radius: 30px;
                font-weight: 600;
                font-size: 0.9rem;
            }

            /* adjust circle core for mobile (smaller) */
            .circle-core {
                width: 320px;
                height: 320px;
                box-shadow: 0 15px 25px rgba(0,0,0,0.5), 0 0 0 5px rgba(255,255,240,0.5);
            }

            .quadrant {
                width: 320px;
                height: 320px;
            }

            .title-circle {
                width: 160px;
                height: 160px;
            }

            .title-circle .content {
                width: 130px;
                height: 130px;
                padding: 8px;
            }

            .center-image {
                width: 65px;
                height: 65px;
                margin-bottom: 3px;
            }

            .center-title {
                font-size: 1.2rem;
            }
            .title-circle.show-image .center-title {
                font-size: 0.95rem;
            }
            .center-subtitle {
                font-size: 0.7rem;
            }
        }

        /* default: hide mobile alternative on desktop */
        .mobile-alternative {
            display: none;
        }

        .footer-note {
            margin-top: 30px;
            color: #13294b;
            font-weight: 600;
            background: rgba(255,255,240,0.7);
            padding: 12px 25px;
            border-radius: 60px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            text-align: center;
            max-width: 600px;
        }

        /* extra small adjustment */
        @media (max-width: 400px) {
            .circle-core {
                width: 280px;
                height: 280px;
            }
            .quadrant {
                width: 280px;
                height: 280px;
            }
            .title-circle {
                width: 140px;
                height: 140px;
            }
            .title-circle .content {
                width: 115px;
                height: 115px;
            }
        }

