.new-hero-section {
            font-family: 'Poppins', sans-serif;
            min-height: 70vh;
            background: radial-gradient(circle at center, #003d5c 0%, #001a29 100%);
            background-image: 
                linear-gradient(rgba(0, 104, 160, 0.2) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 104, 160, 0.2) 1px, transparent 1px),
                radial-gradient(circle at center, #003d5c 0%, #001a29 100%);
            background-size: 40px 40px, 40px 40px, auto;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 60px 20px;
            color: #ffffff;
            box-sizing: border-box;
        }

        .new-hero-section * {
            box-sizing: border-box;
        }

        .custom-hero-container {
            max-width: 1200px;
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
        }

        .custom-content-wrapper {
            flex: 1;
            min-width: 300px;
        }

        .custom-content-wrapper h1 {
            font-size: 42px;
            font-weight: 700;
            color: white;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .custom-content-wrapper p {
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .custom-hero-cta {
            display: inline-block;
            background: #ffffff;
            color: #001a29;
            padding: 15px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: 0.3s;
        }

        .custom-form-card {
            flex: 1;
            min-width: 300px;
            background: #ffffff;
            padding: 40px;
            border-radius: 15px;
            color: #333;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .custom-form-card h3 {
            margin-bottom: 25px;
            font-size: 22px;
            color: #001a29;
            font-weight: 700;
        }

        .custom-form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5px;
        }

        .custom-field-group {
            display: flex;
            flex-direction: column;
            margin-bottom: 15px;
        }

        .custom-field-full {
            grid-column: span 2;
        }

        .custom-field-group label {
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 5px;
            color: #001a29;
        }

        .custom-field-group label span {
            font-weight: 400;
            font-size: 11px;
            display: block;
            color: #666;
            font-style: italic;
        }

        .custom-field-group input, 
        .custom-field-group select, 
        .custom-field-group textarea {
            /* padding: 12px; */
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            width: 100%;
        }

        .custom-submit-btn {
            background-color: #0068a0;
            color: white;
            padding: 16px;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            transition: 0.3s;
            margin-top: 10px;
        }

        #submit-btn{
            background-color: #ffb100 !important;
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
        }

        #submit-btn:hover{
            background-color: #e6a000 !important;
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
        }

        .custom-submit-btn:hover {
            background-color: #a71c20;
        }

        @media (max-width: 992px) {
            .custom-content-wrapper h1 { font-size: 32px; }
            .custom-form-grid { grid-template-columns: 1fr; }
            .custom-field-full { grid-column: span 1; }
        }

        @media (max-width: 768px) {
            .custom-hero-container {
                flex-direction: column;
                text-align: center;
            }
            .custom-content-wrapper {
                order: 1;
            }
            .custom-form-card {
                order: 2;
                width: 100%;
                padding: 25px;
            }
            .custom-field-group {
                text-align: left;
            }
        }


        .modal {
	position: fixed;
	top: 10% !important;
	left: 0;
	z-index: 1050;
	display: none;
	width: 100%;
	height: 100%;
	overflow: hidden;
	outline: 0;
}


        .new-about {
            font-family: 'Poppins', sans-serif;
            padding: 80px 20px;
            text-align: center;
            background-color: #ffffff;
            color: #1a1a1a;
        }

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

        .new-about-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .new-about-top-heading {
            font-size: 32px;
            font-weight: 700;
            color: #002147;
            margin-bottom: 40px;
        }

        .new-about-badges-row {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 60px;
        }

        .new-about-badges-row img {
            max-height: 130px;
            width: auto;
            filter: grayscale(0);
            transition: transform 0.3s ease;
        }

        .new-about-badges-row img:hover {
            transform: scale(1.05);
        }

        .new-about-main-heading {
            font-size: 48px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 25px;
            background: linear-gradient(90deg, #d97e4a 0%, #a71c20 50%, #7d3ca1 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .new-about-description {
            font-size: 16px;
            line-height: 1.8;
            color: #444;
            max-width: 900px;
            margin: 0 auto;
        }

        @media (max-width: 768px) {
            .new-about {
                padding: 50px 15px;
            }
            .new-about-top-heading {
                font-size: 24px;
            }
            .new-about-main-heading {
                font-size: 30px;
            }
            .new-about-badges-row {
                gap: 20px;
            }
            .new-about-badges-row img {
                max-height: 60px;
            }
            .new-about-description {
                font-size: 15px;
            }
        }





        .new-services {
            font-family: 'Poppins', sans-serif;
            padding: 80px 20px;
            /* Update 'background-image' URL with your real image asset */
            background: linear-gradient(135deg, rgba(0, 104, 160, 0.92) 0%, rgba(0, 0, 0, 0.98) 100%), 
                        url('../../assets/images/service-section-background.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: var(--text-white);
            overflow: hidden;
        }

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

        .new-services-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .new-services-header span {
            text-transform: uppercase;
            letter-spacing: 3px;
            font-size: 14px;
            color: white;
            font-weight: 700;
            display: block;
            margin-bottom: 10px;
        }

        .new-services-header h2 {
            font-size: 42px;
            font-weight: 700;
            color: white;
        }

        /* 2. Horizontal Tab Buttons (One Row) */
        .new-services-tabs-wrapper {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            padding: 12px;
            border-radius: 50px;
            margin: 0 auto 60px auto;
            max-width: fit-content;
            overflow-x: auto;
            white-space: nowrap;
            display: flex;
            justify-content: flex-start;
            gap: 10px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            scrollbar-width: none; /* Hide scrollbar Firefox */
        }

        .new-services-tabs-wrapper::-webkit-scrollbar {
            display: none; /* Hide scrollbar Chrome/Safari */
        }

        .tab-btn {
            padding: 12px 28px;
            border: none;
            background: transparent;
            border-radius: 40px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.4s ease;
            color: #cccccc;
            flex-shrink: 0;
        }

        .tab-btn.active {
            background: white;
            color: #a71c20;
            box-shadow: 0 10px 20px rgba(255, 177, 0, 0.3);
        }

        /* 3. Content Area Layout */
        .service-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-content-box {
            display: none;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            animation: fadeIn 0.6s ease;
        }

        .service-content-box.active {
            display: grid;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .service-text h3 {
            font-size: 32px;
            margin-bottom: 20px;
            color: white;
        }

        .service-text p {
            line-height: 1.8;
            color: #e0e0e0;
            margin-bottom: 25px;
            font-size: 16px;
        }

        .service-features {
            list-style: none;
            margin-bottom: 35px;
        }

        .service-features li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 15px;
            font-size: 15px;
            color: #dddddd;
        }

        .service-features li::before {
            content: "■";
            position: absolute;
            left: 0;
            color: var(--primary-red);
            font-size: 18px;
        }

        .read-more-btn {
            background:white;
            color:#a71c20;
            padding: 14px 35px;
            border-radius: 5px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            font-weight: 600;
            transition: 0.3s;
        }

        .read-more-btn:hover {
            background: white;
            transform: translateY(-2px);
        }

        .service-image-box {
            border: 2px solid rgba(255,255,255,0.1);
            border-bottom: 5px solid var(--accent-orange);
            border-radius: 20px;
            padding: 15px;
            background: rgba(255, 255, 255, 0.03);
        }

        .service-image-box img {
            width: 100%;
            border-radius: 15px;
            display: block;
        }

        /* 4. Responsive Mobile Adjustments */
        @media (max-width: 992px) {
            .service-content-box {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .service-image-box {
                order: -1;
            }
            .service-features li {
                text-align: left;
            }

            .contact-form-wrapper{
    flex: 1;
    width: 100%;
    position: relative;
    z-index: 2;
}

            .new-services-tabs-wrapper {
                justify-content: flex-start;
                max-width: 100%;
                border-radius: 10px;
            }
            .new-services-header h2 {
                font-size: 30px;
            }
        }





        .steps-of-process {
            font-family: 'Poppins', sans-serif;
            padding: 80px 20px;
            background-color: white;
            overflow: hidden;
            text-align: center;
        }

        .steps-of-process-header {
            max-width: 900px;
            margin: 0 auto 50px;
        }

        .steps-of-process-header h4 {
            font-size: 24px;
            font-weight: 400;
            color: var(--primary-blue);
            margin-bottom: 10px;
        }

        .steps-of-process-header h2 {
            font-size: 42px;
            font-weight: 700;
            line-height: 1.2;
            color: var(--text-black);
        }

        /* Carousel Styles */
        .steps-of-process-slider-container {
            position: relative;
            max-width: 1240px;
            margin: 0 auto;
            padding-bottom: 40px; /* Space for dots */
        }

        .steps-of-process-track-container {
            overflow: hidden;
            padding: 20px 0; /* Prevents box-shadow clipping */
        }

        .steps-of-process-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
            cursor: grab;
        }

        .process-step-box {
            flex: 0 0 33.333%; /* Desktop Default: 3 */
            padding: 0 15px; /* Maintaining Gap between boxes */
            box-sizing: border-box;
            display: flex;
        }

        .process-step-inner {
            background-color: #acbfc691;
            padding: 40px 30px;
            border-radius: 15px; /* Requested Border Radius */
            text-align: left;
            display: flex;
            flex-direction: column;
            width: 100%;
            transition: transform 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }

        .process-step-inner:hover {
            transform: translateY(-5px);
        }

        .process-step-inner h3 {
            font-size: 20px;
            font-weight: 700;
            color:black;
            margin-bottom: 20px;
            line-height: 1.4;
            min-height: 56px; /* Keeps headings aligned */
        }

        .process-step-inner p {
            font-size: 14px;
            line-height: 1.8;
            color: #444;
            margin: 0;
        }

        /* Pagination Dots - Middle Bottom & Center Alignment */
        .steps-of-process-dots {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin-top: 30px;
            width: 100%;
        }

        .dot {
            width: 40px; /* Rectangle style like image */
            height: 5px;
            background-color: #09676d;
            border-radius: 2px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background-color: #a71c20;
            width: 50px;
        }

        /* Responsive Settings */
        @media (max-width: 1024px) {
            .process-step-box {
                flex: 0 0 50%; /* Tab: 2 */
            }
            .steps-of-process-header h2 { font-size: 32px; }
        }

        @media (max-width: 767px) {
            .process-step-box {
                flex: 0 0 100%; /* Mobile: 1 */
            }
            .steps-of-process-header h2 { font-size: 26px; }
            .process-step-inner { padding: 30px 20px; }
        }






        .industries-covered {
            font-family: 'Poppins', sans-serif;
            padding: 80px 20px;
            background-color: #f8fafc;
            color: #1a2b49;
        }

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

        .industries-container {
            max-width: 1100px;
            margin: 0 auto;
        }

        .industries-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .industries-header h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #002147;
            line-height: 1.2;
        }

        .industries-header p {
            font-size: 16px;
            line-height: 1.6;
            color: #4b5563;
            max-width: 900px;
            margin: 0 auto;
        }

        .industry-grid {
            display: flex;
            flex-direction: column;
            gap: 0; /* Gap is managed by sticky offsets */
            position: relative;
        }

        .industry-card {
            background: #ffffff;
            border-radius: 20px;
            overflow: hidden;
            display: flex;
            align-items: center;
            box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
            min-height: 450px;
            position: sticky; /* Fixed effect on scroll */
            top: 100px; /* How far from the top the box stops */
            margin-bottom: 50px;
            transition: transform 0.3s ease;
        }

        /* Logic for Desktop Stacking Effect */
        @media (min-width: 769px) {
            .industry-card:nth-child(1) { z-index: 1; }
            .industry-card:nth-child(2) { z-index: 2; }
            .industry-card:nth-child(3) { z-index: 3; }
            .industry-card:nth-child(4) { z-index: 4; }
            .industry-card:nth-child(5) { z-index: 5; }
            .industry-card:nth-child(6) { z-index: 6; }
            .industry-card:nth-child(7) { z-index: 7; }
            .industry-card:nth-child(8) { z-index: 8; }
            .industry-card:nth-child(9) { z-index: 9; }


            /* .industry-card:nth-child(even) {
                flex-direction: row-reverse;
            } */
        }

        .industry-image {
            flex: 1;
            height: 450px;
        }

        .industry-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .industry-info {
            flex: 1;
            padding: 40px 60px;
        }

        .industry-info h3 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #002147;
        }

        .industry-info p {
            font-size: 15px;
            line-height: 1.8;
            color: #4b5563;
        }

        /* Mobile View: No Stacking, No Sticky, Standard Vertical List */
        @media (max-width: 768px) {
            .industry-card {
                position: relative; /* Removes sticky for mobile */
                top: 0;
                flex-direction: column !important;
                min-height: auto;
                margin-bottom: 30px;
            }
            .industry-image {
                width: 100%;
                height: 250px;
            }
            .industry-info {
                width: 100%;
                padding: 30px 20px;
                text-align: center;
            }
            .industry-info h3 {
                font-size: 24px;
            }
        }






        .seo-tools {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, #0068a0 0%, #000000 100%);
            padding: 80px 20px;
            text-align: center;
            color: #ffffff;
            overflow: hidden;
        }

        .seo-tools-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .seo-tools-header {
            margin-bottom: 60px;
            position: relative;
            display: inline-block;
        }

        .seo-tools-header h2 {
            font-size: 42px;
            font-weight: 700;
            margin: 0;
            letter-spacing: 1px;
            color: #ffffff;
        }

        .seo-tools-header::after {
            content: '';
            display: block;
            width: 100%;
            height: 4px;
            background: #a71c20;
            margin: 15px auto 0;
            border-radius: 2px;
            box-shadow: 0 2px 10px rgba(167, 28, 32, 0.4);
        }

        .seo-tools-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            align-items: center;
            justify-items: center;
        }

        .seo-tool-item {
            width: 100%;
            padding: 30px;
            transition: all 0.4s ease;
            display: flex;
            justify-content: center;
            align-items: center;
            filter: brightness(0) invert(1) opacity(0.7);
            cursor: pointer;
        }

        .seo-tool-item img {
            max-width: 220px;
            height: auto;
            transition: transform 0.4s ease;
        }

        .seo-tool-item:hover {
            filter: brightness(0) invert(1) opacity(1);
            transform: translateY(-10px);
        }

        .seo-tool-item:hover img {
            transform: scale(1.1);
        }

        @media (max-width: 992px) {
            .seo-tools-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
            .seo-tools-header h2 {
                font-size: 32px;
            }
        }

        @media (max-width: 576px) {
            .seo-tools-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .seo-tools {
                padding: 50px 15px;
            }
            .seo-tool-item {
                padding: 15px;
            }
            .seo-tool-item img {
                max-width: 180px;
            }
        }






        .new-reviews {
            font-family: 'Poppins', sans-serif;
            background-color: #ffffff;
            padding: 80px 20px;
            color: #000000;
        }

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

        .new-reviews-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .new-reviews-badge {
            display: inline-block;
            background-color: #ececec;
            color: #0068a0;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
            margin-bottom: 20px;
        }

        .new-reviews-header h2 {
            font-size: 36px;
            font-weight: 700;
            color: #001a33;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .new-reviews-header p {
            color: #666;
            font-size: 16px;
            margin-bottom: 25px;
        }

        .new-reviews-rating {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-bottom: 50px;
        }

        .stars {
            color: #ffb100;
            font-size: 20px;
        }

        .rating-text {
            font-weight: 600;
            font-size: 16px;
        }

        .rating-subtext {
            color: #888;
            font-size: 14px;
        }

        .new-reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .review-card {
            background: #ffffff;
            border: 1px solid #f0f0f0;
            border-radius: 20px;
            padding: 30px;
            text-align: left;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            transition: transform 0.3s ease;
        }

        .review-card:hover {
            transform: translateY(-5px);
        }

        .review-card::before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            width: 80px;
            height: 80px;
            border-radius: 0 0 0 100%;
            opacity: 0.1;
        }

        .card-green::before { background-color: #0068a0; }
        .card-yellow::before { background-color: #a71c20; }
        .card-blue::before { background-color: #0068a0; }
        .card-purple::before { background-color: #a71c20; }

        .reviewer-info {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 16px;
        }

        .avatar-green { background-color: #0068a0; color:white; }
        .avatar-yellow { background-color: #fff8e6; color: #ffb100; }
        .avatar-blue { background-color: #e6f0f6; color: #0068a0; }
        .avatar-purple { background-color: #f6e6e7; color: #a71c20; }

        .reviewer-details h4 {
            font-size: 16px;
            font-weight: 700;
            color: #001a33;
        }

        .reviewer-details span {
            font-size: 13px;
            color: #777;
        }

        .review-stars {
            color: #ffb100;
            font-size: 14px;
            margin-bottom: 15px;
        }

        .review-text {
            font-size: 14px;
            line-height: 1.6;
            color: #444;
            margin-bottom: 20px;
            font-style: italic;
        }

        .review-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .tag {
            font-size: 11px;
            padding: 4px 10px;
            border-radius: 15px;
            font-weight: 600;
        }

        .tag-gray { background: #f5f5f5; color: #666; }
        .tag-green-light { background: #e6f7ef; color: #0068a0; }
        .tag-blue-light { background: #e6f0f6; color: #0068a0; }

        @media (max-width: 1024px) {
            .new-reviews-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 768px) {
            .new-reviews-grid { grid-template-columns: 1fr; }
            .new-reviews-header h2 { font-size: 28px; }
            .new-reviews { padding: 50px 20px; }
        }





        .clients-section {
            font-family: 'Poppins', sans-serif;
            background-color: #1a2b3c;
            padding: 80px 20px;
            text-align: center;
            color: #ffffff;
        }

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

        .clients-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .clients-section h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 20px;
            color: white;
        }

        .clients-section h2 span {
            color: #a71c20;
        }

        .clients-section p {
            font-size: 16px;
            line-height: 1.6;
            color: #d1d1d1;
            max-width: 900px;
            margin: 0 auto 50px;
        }

        .clients-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            justify-content: center;
        }

        .client-card {
            background: #ffffff;
            border-radius: 10px;
            padding: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 130px;
            transition: transform 0.3s ease;
        }

        .client-card:hover {
            transform: translateY(-5px);
        }

        .client-card img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(0);
        }

        .clients-grid .client-card:nth-child(5),
        .clients-grid .client-card:nth-child(6),
        .clients-grid .client-card:nth-child(7) {
            grid-column: span 1;
        }

        @media (min-width: 769px) {
            .clients-grid-row-2 {
                display: flex;
                justify-content: center;
                gap: 20px;
                grid-column: 1 / -1;
                margin-top: 20px;
            }
            .clients-grid-row-2 .client-card {
                width: calc(25% - 15px);
            }
        }

        @media (max-width: 992px) {
            .clients-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .clients-grid-row-2 {
                display: contents;
            }
        }

        @media (max-width: 768px) {
            .clients-section {
                padding: 50px 15px;
            }
            .clients-section h2 {
                font-size: 28px;
            }
            .clients-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
            .clients-grid-row-2 {
                display: contents;
            }
            .client-card {
                height: 120px;
                padding: 15px;
            }
        }






        .contact-section {
            font-family: 'Poppins', sans-serif;
            background-color: #ffffff;
            padding: 80px 20px;
            color: #000000;
        }

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

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            background: linear-gradient(135deg, #0068a0 0%, #a71c20 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            padding: 60px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .contact-container::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
            background-size: 30px 30px;
            pointer-events: none;
        }

        .contact-content {
            flex: 1;
            padding-right: 50px;
            position: relative;
            z-index: 2;
        }

        .contact-content h2 {
            font-size: 42px;
            font-weight: 700;
            color: #ffffff;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .contact-content p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
        }

        .contact-form-wrapper {
            flex: 1;
            position: relative;
            z-index: 2;
        }

        .contact-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .full-width {
            grid-column: span 2;
        }

        .contact-form input, 
        .contact-form textarea {
            width: 100%;
            padding: 15px 20px;
            border: none;
            border-radius: 5px;
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            background-color: #ffffff;
            color: #333;
            outline: none;
        }

        .contact-form textarea {
            height: 100px;
            resize: none;
        }

        .contact-form input::placeholder, 
        .contact-form textarea::placeholder {
            color: #999;
        }

        .submit-btn {
            grid-column: span 2;
            background-color: #ffb100;
            color: #000;
            border: none;
            padding: 15px;
            border-radius: 5px;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 5px;
        }

        .submit-btn:hover {
            background-color: #e6a000;
            transform: translateY(-2px);
        }

        @media (max-width: 992px) {
            .contact-container {
                flex-direction: column;
                padding: 40px;
            }
            .contact-content {
                padding-right: 0;
                margin-bottom: 40px;
                text-align: center;
            }
            .contact-content h2 {
                font-size: 32px;
            }
        }

        @media (max-width: 600px) {
            .contact-form {
                grid-template-columns: 1fr;
            }
            .full-width {
                grid-column: span 1;
            }
            .submit-btn {
                grid-column: span 1;
            }
            .contact-section {
                padding: 40px 15px;
            }
            .contact-container {
                padding: 30px 20px;
            }
        }


        .performance-tracker {
        width: 100%;
        padding: 40px 20px;
        background-color: rgba(206, 204, 204, 0.336);
        /* background: linear-gradient(135deg, #0068a0 0%, #000000 100%); */
        font-family: 'Poppins', sans-serif;
        box-sizing: border-box;
    }

    .performance-tracker * {
        box-sizing: border-box;
    }

    .pt-container {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        border: 1px solid #eee;
        border-radius: 8px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
        overflow: hidden;
        background: #fff;
    }

    .pt-top-bar {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 20px;
    }

    .pt-badge {
        background-color: #17a2b8;
        color: #fff;
        padding: 10px 25px;
        font-weight: 600;
        font-size: 14px;
        border-bottom-right-radius: 4px;
        text-transform: uppercase;
        display: inline-block;
    }

    .pt-flag {
        padding: 15px 20px;
    }

    .pt-flag img {
        width: 30px;
        height: auto;
        display: block;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .pt-content-grid {
        display: flex;
        padding: 0 40px 40px 40px;
        gap: 50px;
    }

    .pt-left-col {
        flex: 1;
        min-width: 0; 
    }

    .pt-right-col {
        flex: 0 0 45%; 
        display: flex;
        flex-direction: column;
    }

    .pt-project-pill {
        background-color: #ffe5e5;
        display: inline-block;
        padding: 8px 15px;
        border-radius: 4px;
        margin-bottom: 25px;
        font-size: 14px;
        font-weight: 500;
        color: #333;
    }

    .pt-project-pill strong {
        font-weight: 700;
        margin-right: 2px;
    }

    .pt-section-title {
        font-size: 18px;
        font-weight: 700;
        color: #222;
        margin-bottom: 12px;
        margin-top: 25px;
    }

    .pt-desc {
        color: #555;
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .pt-big-stat {
        font-size: 36px;
        font-weight: 700;
        color: #17a2b8;
        margin-bottom: 10px;
        line-height: 1.2;
    }

    .pt-sub-stat {
        color: #444;
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .pt-table-container {
        width: 100%;
        border-radius: 8px;
        overflow: hidden;
        background-color: #f9f9f9;
    }

    .pt-table {
        width: 100%;
        border-collapse: collapse;
        text-align: left;
    }

    .pt-table th, .pt-table td {
        padding: 15px 20px;
        font-size: 14px;
        color: #333;
        border-bottom: 1px solid #eee;
    }

    .pt-table th {
        background-color: #fff;
        font-weight: 700;
        border-bottom: 1px solid #e0e0e0;
    }

    .pt-table tr:last-child td {
        border-bottom: none;
    }

    .pt-table tr:nth-child(even) {
        background-color: #f1f1f1;
    }

    .pt-chart-title {
        font-size: 16px;
        font-weight: 700;
        color: #222;
        margin-bottom: 15px;
    }

    .pt-chart-wrapper {
        background-color: #fff;
        border: 1px solid #eee;
        border-radius: 8px;
        padding: 15px;
        margin-bottom: 20px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    }

    .pt-chart-image {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 4px;
    }

    .pt-view-case {
        color: #17a2b8;
        text-decoration: none;
        font-weight: 600;
        font-size: 15px;
        display: inline-block;
        margin-top: auto;
        border-bottom: 1px solid transparent;
        transition: border-color 0.3s;
    }

    .pt-view-case:hover {
        border-bottom-color: #17a2b8;
    }

    @media (max-width: 992px) {
        .pt-content-grid {
            flex-direction: column;
            padding: 0 25px 40px 25px;
            gap: 30px;
        }

        .pt-right-col {
            flex: auto;
        }

        .pt-big-stat {
            font-size: 32px;
        }
    }

    @media (max-width: 576px) {
        .pt-badge {
            font-size: 12px;
            padding: 8px 15px;
        }
        
        .pt-content-grid {
            padding: 0 15px 30px 15px;
        }

        .pt-big-stat {
            font-size: 28px;
        }
        
        .pt-project-pill {
            font-size: 13px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 100%;
        }
    }



    .new-faqs {
        padding: 80px 20px;
        background-color: #f8f9fa;
        font-family: 'Poppins', sans-serif;
        box-sizing: border-box;
        width: 100%;
    }

    .new-faqs * {
        box-sizing: border-box;
    }

    .nf-container {
        max-width: 900px;
        margin: 0 auto;
    }

    .nf-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .nf-title {
        font-size: 32px;
        font-weight: 700;
        color: #0b4a8b;
        margin: 0 0 15px 0;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        position: relative;
        display: inline-block;
    }

    .nf-title::after {
        content: '';
        display: block;
        width: 60px;
        height: 3px;
        background: #0b4a8b;
        margin: 10px auto 0;
        border-radius: 2px;
    }

    .nf-subtitle {
        font-size: 16px;
        color: #666;
        margin: 0;
    }

    .nf-item {
        background: #ffffff;
        margin-bottom: 15px;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
        overflow: hidden;
        transition: all 0.3s ease;
        border: 1px solid transparent;
    }

    .nf-item:hover {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
        transform: translateY(-2px);
    }

    .nf-item.active {
        border-color: #0b4a8b;
        box-shadow: 0 8px 25px rgba(11, 74, 139, 0.1);
    }

    .nf-question {
        width: 100%;
        text-align: left;
        padding: 20px 25px;
        background: none;
        border: none;
        outline: none;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 17px;
        font-weight: 600;
        color: #333;
        font-family: inherit;
        transition: color 0.3s ease;
    }

    .nf-item.active .nf-question {
        color: #0b4a8b;
    }

    .nf-icon {
        position: relative;
        width: 24px;
        height: 24px;
        flex-shrink: 0;
        margin-left: 15px;
    }

    .nf-icon::before,
    .nf-icon::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        background-color: #0b4a8b;
        transform: translate(-50%, -50%);
        transition: transform 0.3s ease;
        border-radius: 2px;
    }

    .nf-icon::before {
        width: 14px;
        height: 2px;
    }

    .nf-icon::after {
        width: 2px;
        height: 14px;
    }

    .nf-item.active .nf-icon::after {
        transform: translate(-50%, -50%) rotate(90deg);
    }
    
    .nf-item.active .nf-icon::before {
        opacity: 0; 
        /* To make it a pure minus/plus or rotate entire icon. 
           Here we rotate the icon wrapper for X effect or hide vertical for minus.
           Let's do a Minus transition: */
    }

    /* Better Animation Strategy for Icon: Rotate into 'X' or '-' */
    .nf-item.active .nf-icon {
        transform: rotate(45deg); 
        /* This makes the + turn into an X. If you prefer minus, remove this and use the opacity trick above */
    }


    .nf-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        background-color: #fff;
    }

    .nf-answer-inner {
        padding: 0 25px 25px 25px;
        font-size: 15px;
        line-height: 1.7;
        color: #555;
    }

    @media (max-width: 768px) {
        .new-faqs {
            padding: 60px 15px;
        }

        .nf-title {
            font-size: 26px;
        }

        .nf-question {
            font-size: 16px;
            padding: 15px 20px;
        }
        
        .nf-answer-inner {
            padding: 0 20px 20px 20px;
        }
    }