    <!-- =====================================================
         ABOUT PAGE IMPROVEMENT CSS
    ====================================================== -->

        /* =====================================================
           GENERAL SPACING
        ====================================================== */

        .about-section p,
        .about-intro-content p,
        .team-content p,
        .about-card p,
        .motivation-box p,
        .process-step p,
        .why-us-item p {
            line-height: 1.85;
            margin-bottom: 20px;
            color: #5f6368;
        }

        .about-section p:last-child,
        .about-intro-content p:last-child,
        .team-content p:last-child,
        .about-card p:last-child,
        .motivation-box p:last-child,
        .process-step p:last-child,
        .why-us-item p:last-child {
            margin-bottom: 0;
        }

        .about-section h2,
        .about-intro-content h2,
        .team-content h2 {
            line-height: 1.25;
            margin-bottom: 22px;
        }

        .about-section h3,
        .about-card h3,
        .motivation-box h3,
        .process-step h3,
        .why-us-item h3,
        .group-card h3 {
            line-height: 1.35;
        }


        /* =====================================================
           SECTION INTRO
        ====================================================== */

        .about-section .text-center > p {
            max-width: 780px;
            margin: 15px auto 0;
            line-height: 1.8;
            color: #666;
        }


        /* =====================================================
           ABOUT INTRO IMAGE
        ====================================================== */

        .about-intro-image {
            overflow: hidden;
            border-radius: 20px;
            background: #f3f4f6;
            box-shadow: 0 18px 50px rgba(0, 0, 0, 0.10);
        }

        .about-intro-image img {
            display: block;
            width: 100%;
            height: 520px;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .about-intro-image:hover img {
            transform: scale(1.04);
        }


        /* =====================================================
           HIGHLIGHT
        ====================================================== */

        .about-highlight {
            margin-top: 28px;
            padding: 20px 22px;
            border-left: 4px solid #111827;
            border-radius: 8px;
            background: #f7f8fa;
        }

        .about-highlight p {
            margin: 0 !important;
            font-weight: 600;
            line-height: 1.7;
            color: #222;
        }


        /* =====================================================
           ABOUT CARDS
        ====================================================== */

        .about-card {
            height: 100%;
            padding: 35px;
            border: 1px solid #e8eaed;
            border-radius: 18px;
            background: #fff;
            box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
            transition:
                transform 0.3s ease,
                box-shadow 0.3s ease,
                border-color 0.3s ease;
        }

        .about-card:hover {
            transform: translateY(-6px);
            border-color: rgba(17, 24, 39, 0.18);
            box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
        }

        .about-card-icon {
            width: 58px;
            height: 58px;
            margin-bottom: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 14px;
            background: #111827;
            color: #fff;
            font-size: 22px;
        }

        .about-card h3 {
            margin-bottom: 15px;
        }


        /* =====================================================
           MOTIVATION
        ====================================================== */

        .motivation-box {
            height: 100%;
            padding: 35px;
            border: 1px solid #e8eaed;
            border-radius: 18px;
            background: #fff;
            box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .motivation-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
        }

        .motivation-box > i {
            width: 55px;
            height: 55px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: #111827;
            color: #fff;
            font-size: 20px;
        }

        .motivation-box h3 {
            margin-bottom: 14px;
        }


        /* =====================================================
           STRENGTH
        ====================================================== */

        .strength-card {
            height: 100%;
            padding: 30px 22px;
            text-align: center;
            border: 1px solid #e8eaed;
            border-radius: 16px;
            background: #fff;
            transition: all 0.3s ease;
        }

        .strength-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
        }

        .strength-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 14px;
            background: #111827;
            color: #fff;
            font-size: 22px;
        }

        .strength-card h3 {
            margin: 0;
            font-size: 18px;
        }


        /* =====================================================
           PROCESS
        ====================================================== */

        .process-step {
            height: 100%;
            padding: 30px;
            border: 1px solid #e8eaed;
            border-radius: 16px;
            background: #fff;
            transition: all 0.3s ease;
        }

        .process-step:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
        }

        .process-number {
            width: 52px;
            height: 52px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: #111827;
            color: #fff;
            font-size: 15px;
            font-weight: 700;
        }


        /* =====================================================
           TEAM IMAGE
        ====================================================== */

        .team-image {
            overflow: hidden;
            border-radius: 20px;
            background: #f3f4f6;
            box-shadow: 0 18px 50px rgba(0, 0, 0, 0.10);
        }

        .team-image img {
            display: block;
            width: 100%;
            height: 460px;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .team-image:hover img {
            transform: scale(1.04);
        }


        /* =====================================================
           COUNTERS
        ====================================================== */

        .about-stats {
            margin-top: 38px;
            padding-top: 28px;
            border-top: 1px solid #e5e7eb;
        }

        .stat-box {
            position: relative;
            height: 100%;
            padding: 15px 8px;
            text-align: center;
        }

        .stat-number {
            display: block;
            min-height: 58px;
            color: #111827;
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 800;
            line-height: 1;
            letter-spacing: -1.5px;
        }

        .stat-label {
            display: block;
            margin-top: 12px;
            color: #737373;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
        }


        /* =====================================================
           WHY US
        ====================================================== */

        .why-us-item {
            padding-bottom: 26px;
            margin-bottom: 26px;
            border-bottom: 1px solid #e5e7eb;
        }

        .why-us-item:last-child {
            margin-bottom: 0;
            border-bottom: 0;
        }

        .why-us-item h3 {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 12px;
            font-size: 21px;
        }

        .why-us-number {
            flex: 0 0 auto;
            color: #111827;
            font-size: 14px;
            font-weight: 800;
        }


        /* =====================================================
           SERVICE LIST
        ====================================================== */

        .service-list {
            margin: 22px 0 0;
            padding: 0;
            list-style: none;
        }

        .service-list li {
            position: relative;
            padding: 8px 0 8px 25px;
            color: #555;
            line-height: 1.6;
        }

        .service-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 8px;
            color: #111827;
            font-weight: 800;
        }


        /* =====================================================
           GROUP COMPANIES
        ====================================================== */

        .group-card {
            height: 100%;
            padding: 25px;
            text-align: center;
            border: 1px solid #e8eaed;
            border-radius: 18px;
            background: #fff;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .group-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
        }

        .group-card img {
            display: block;
            width: 100%;
            height: 180px;
            margin-bottom: 18px;
            padding: 20px;
            object-fit: contain;
            border-radius: 12px;
            background: #111827;
        }

        .group-card h3 {
            margin-bottom: 15px;
            font-size: 20px;
        }

        .group-card a {
            font-weight: 600;
            text-decoration: none;
        }


        /* =====================================================
           CTA
        ====================================================== */

        .about-cta {
            padding: 80px 0;
            background: #111827;
            color: #fff;
        }

        .about-cta h2 {
            margin-bottom: 18px;
        }

        .about-cta p {
            margin-bottom: 0;
            color: rgba(255, 255, 255, 0.78);
            line-height: 1.8;
        }

        .about-cta .btn {
            min-width: 175px;
            margin: 5px 0;
        }


        /* =====================================================
           MOBILE
        ====================================================== */

        @media (max-width: 991px) {

            .about-section,
            .about-intro,
            .team-section {
                padding-top: 60px;
                padding-bottom: 60px;
            }

            .about-intro-image {
                margin-bottom: 35px;
            }

            .about-intro-image img {
                height: 400px;
            }

            .team-image {
                margin-bottom: 35px;
            }

            .team-image img {
                height: 400px;
            }

            .about-cta {
                padding: 60px 0;
            }

        }


        @media (max-width: 575px) {

            .about-section,
            .about-intro,
            .team-section {
                padding-top: 45px;
                padding-bottom: 45px;
            }

            .about-intro-image img,
            .team-image img {
                height: 280px;
            }

            .about-card,
            .motivation-box,
            .process-step {
                padding: 25px 20px;
            }

            .about-stats {
                margin-top: 25px;
                padding-top: 20px;
            }

            .stat-box {
                padding: 15px 5px;
            }

            .stat-number {
                font-size: 34px;
            }

            .stat-label {
                font-size: 10px;
                letter-spacing: 0.6px;
            }

            .about-cta {
                padding: 45px 0;
            }

            .about-cta .text-lg-right {
                margin-top: 25px;
                text-align: left !important;
            }

        }

<!-- =====================================================
         FAQ PAGE STYLES
    ====================================================== -->

        :root {
            --ardt-blue: #007bff;
            --ardt-dark: #111827;
            --ardt-text: #1f2937;
            --ardt-muted: #6b7280;
            --ardt-light: #f7f9fc;
            --ardt-border: #e7ebf0;
            --ardt-green: #25D366;
        }


        /* =====================================================
           TOP BAR
        ====================================================== */

        .top-bar {
            background: #111827;
        }

        .top-bar .contact-details ul {
            margin: 0;
            padding: 0;
            display: flex;
            align-items: center;
            gap: 10px;
            list-style: none;
        }

        .top-bar .contact-details li {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .top-bar .contact-details a {
            color: #fff;
            text-decoration: none;
            font-size: 13px;
        }

        .top-bar .contact-details i {
            color: #60a5fa;
        }

        .top-bar .social-media {
            text-align: right;
        }

        .top-bar .social-media a {
            text-decoration: none;
            color: #fff;
            margin-left: 5px;
        }


        /* =====================================================
           NAVIGATION
        ====================================================== */

        .top-nav {
            background: #fff !important;
            border-bottom: 1px solid #edf0f4;
            padding: 8px 0;
        }

        .top-nav .navbar-brand img {
            max-height: 62px;
            width: auto;
        }

        .top-nav .nav-link {
            color: #20242a !important;
            font-weight: 500;
            padding: 16px 11px !important;
            transition: all .2s ease;
        }

        .top-nav .nav-link:hover,
        .top-nav .nav-link.active {
            color: var(--ardt-blue) !important;
        }

        .navbar-nav .nav-item.dropdown .nav-link {
            display: flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
        }

        .navbar-nav .nav-link .fa-sort-down {
            display: inline-block;
            margin: 0;
            line-height: 1;
            position: relative;
            top: -1px;
        }

        .dropdown-menu {
            border: 0;
            box-shadow: 0 15px 45px rgba(15, 23, 42, .12);
            border-radius: 10px;
            padding: 10px;
        }

        .dropdown-item {
            padding: 9px 13px;
            border-radius: 6px;
            font-size: 14px;
        }

        .dropdown-item:hover {
            background: #f1f6ff;
            color: var(--ardt-blue);
        }

        .nav-project-cta {
            background: var(--ardt-blue);
            color: #fff !important;
            border-radius: 7px;
            padding: 11px 17px !important;
            margin-top: 5px;
            margin-right: 5px;
        }

        .nav-project-cta:hover {
            background: #005fcc;
            color: #fff !important;
        }

        .cta-arrow {
            margin-left: 7px;
        }


        /* =====================================================
           FAQ HERO
        ====================================================== */

        .faq-hero {
            position: relative;
            overflow: hidden;
            background:
                radial-gradient(circle at 85% 20%, rgba(37, 123, 255, .20), transparent 28%),
                radial-gradient(circle at 10% 80%, rgba(37, 211, 102, .08), transparent 25%),
                linear-gradient(135deg, #0f172a 0%, #111827 55%, #172554 100%);
            padding: 30px 0 30px;
            color: #fff;
        }

        .faq-hero:before {
            content: "";
            position: absolute;
            width: 450px;
            height: 450px;
            border: 1px solid rgba(255,255,255,.07);
            border-radius: 50%;
            right: -150px;
            top: -180px;
        }

        .faq-hero:after {
            content: "";
            position: absolute;
            width: 280px;
            height: 280px;
            border: 1px solid rgba(255,255,255,.06);
            border-radius: 50%;
            right: 60px;
            bottom: -190px;
        }

        .faq-hero-content {
            position: relative;
            z-index: 2;
            max-width: 100%;
        }

        .faq-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #60a5fa;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 1.8px;
            text-transform: uppercase;
            margin-bottom: 18px;
        }

        .faq-eyebrow:before {
            content: "";
            width: 28px;
            height: 2px;
            background: #60a5fa;
        }

        .faq-hero h1 {
            font-size: clamp(38px, 5vw, 68px);
            line-height: 1.05;
            font-weight: 800;
            letter-spacing: -2px;
            margin-bottom: 25px;
        }

        .faq-hero h1 span {
            color: #60a5fa;
        }

        .faq-hero p {
            max-width: 100%;
            color: #cbd5e1;
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .faq-hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 9px;
        }

        .faq-hero-tags span {
            border: 1px solid rgba(255,255,255,.15);
            background: #fff;
            color: #000;
            padding: 8px 13px;
            border-radius: 30px;
            font-size: 13px;
        }


        /* =====================================================
           BREADCRUMB
        ====================================================== */

        .faq-breadcrumb {
            padding: 15px 0;
            background: #fff;
            border-bottom: 1px solid #edf0f4;
        }

        .faq-breadcrumb .breadcrumb {
            margin: 0;
            padding: 0;
            background: transparent;
        }

        .faq-breadcrumb a {
            color: var(--ardt-blue);
        }


        /* =====================================================
           MAIN FAQ
        ====================================================== */

        .faq-section {
            background: #f8fafc;
            padding: 40px 0 40px;
        }

        .faq-heading {
            text-align: center;
            max-width: 100%;
            margin: 0 auto 55px;
        }

        .section-eyebrow {
            color: var(--ardt-blue);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 1.8px;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .faq-heading h2 {
            color: var(--ardt-dark);
            font-size: clamp(30px, 4vw, 46px);
            line-height: 1.15;
            font-weight: 750;
            margin-bottom: 16px;
        }

        .faq-heading p {
            color: var(--ardt-muted);
            line-height: 1.8;
            font-size: 16px;
        }


        /* =====================================================
           CATEGORY
        ====================================================== */

        .faq-category {
            display: flex;
            align-items: center;
            gap: 18px;
            margin: 58px 0 22px;
        }

        .faq-category:first-child {
            margin-top: 0;
        }

        .faq-category-icon {
            width: 48px;
            height: 48px;
            min-width: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #eaf3ff;
            color: var(--ardt-blue);
            border-radius: 12px;
            font-size: 19px;
        }

        .faq-category h2 {
            color: var(--ardt-dark);
            font-size: 24px;
            font-weight: 750;
            margin: 0 0 4px;
        }

        .faq-category p {
            color: var(--ardt-muted);
            margin: 0;
            font-size: 14px;
        }


        /* =====================================================
           ACCORDION
        ====================================================== */

        .faq-list {
            margin-bottom: 12px;
        }

        .faq-item {
            background: #fff;
            border: 1px solid var(--ardt-border);
            border-radius: 12px;
            margin-bottom: 12px;
            overflow: hidden;
            box-shadow: 0 3px 15px rgba(15, 23, 42, .025);
            transition: all .25s ease;
        }

        .faq-item:hover {
            border-color: #cfe0fa;
            box-shadow: 0 10px 30px rgba(15, 23, 42, .07);
            transform: translateY(-1px);
        }


        /* FAQ QUESTION */

        .faq-question {
            width: 100%;
            border: 0;
            background:#d7d7d7;
            padding: 21px 24px;
            text-align: left;
            display: flex;
            align-items: center;
            gap: 15px;
            color: var(--ardt-text);
            font-size: 16px;
            font-weight: 650;
            cursor: pointer;
            transition: color .2s ease, background .2s ease;
        }

        .faq-question:hover {
            color: var(--ardt-blue);
            background: #fbfdff;
        }

        .faq-question:focus {
            outline: 3px solid rgba(0,123,255,.15);
            outline-offset: -3px;
        }


        /* =====================================================
           FAQ ARROW
        ====================================================== */

        .faq-arrow {
            width: 32px;
            min-width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--ardt-blue);
            font-size: 14px;
            transition: all .25s ease;
        }

        .faq-arrow i {
            transition: transform .25s ease;
        }

        /* Closed FAQ */

        .faq-question .faq-arrow i {
            transform: translateX(0);
        }

        /* Hover */

        .faq-question:hover .faq-arrow i {
            transform: translateX(4px);
        }

        /* Open FAQ */

        .faq-question[aria-expanded="true"] .faq-arrow i {
            transform: rotate(90deg);
        }

        /* Open + Hover */

        .faq-question[aria-expanded="true"]:hover .faq-arrow i {
            transform: rotate(90deg);
        }


        /* =====================================================
           FAQ QUESTION TEXT
        ====================================================== */

        .faq-question-text {
            flex: 1;
        }


        /* =====================================================
           PLUS / MINUS ICON
        ====================================================== */

        .faq-plus {
            position: relative;
            width: 26px;
            height: 26px;
            min-width: 26px;
            border-radius: 50%;
            background: #f0800c;
            transition: .25s ease;
        }

        .faq-plus:before,
        .faq-plus:after {
            content: "";
            position: absolute;
            background: var(--ardt-blue);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .faq-plus:before {
            width: 10px;
            height: 2px;
        }

        .faq-plus:after {
            width: 2px;
            height: 10px;
            transition: transform .25s ease;
        }

        .faq-question[aria-expanded="true"] .faq-plus {
            background:#000;
        }

        .faq-question[aria-expanded="true"] .faq-plus:before,
        .faq-question[aria-expanded="true"] .faq-plus:after {
            background: #fff;
        }

        .faq-question[aria-expanded="true"] .faq-plus:after {
            transform: translate(-50%, -50%) rotate(90deg);
        }


        /* =====================================================
           FAQ ANSWER
        ====================================================== */

        .faq-answer {
            padding: 0 24px 24px 71px;
            color: #596273;
            font-size: 15px;
            line-height: 1.85;
        }

        .faq-answer p {
            margin-bottom: 12px;
        }

        .faq-answer p:last-child {
            margin-bottom: 0;
        }

        .faq-answer ul {
            padding-left: 20px;
            margin: 12px 0;
        }

        .faq-answer li {
            margin-bottom: 7px;
        }

        .faq-answer a {
            color: var(--ardt-blue);
            font-weight: 600;
        }


        /* =====================================================
           CTA
        ====================================================== */

        .faq-cta {
            position: relative;
            overflow: hidden;
            margin-top: 75px;
            padding: 40px 40px;
            border-radius: 20px;
            background:
                radial-gradient(circle at 90% 20%, rgba(96,165,250,.25), transparent 25%),
                linear-gradient(135deg, #111827, #172554);
            color: #fff;
        }

        .faq-cta h2 {
            font-size: 32px;
            font-weight: 750;
            margin-bottom: 12px;
        }

        .faq-cta p {
            color: #cbd5e1;
            max-width: 650px;
            line-height: 1.7;
            margin-bottom: 25px;
        }

        .faq-cta-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .faq-cta .btn-primary {
            background: #007bff;
            border: 0;
            padding: 20px 22px;
        }

        .faq-cta .btn-success {
            background: #25D366;
            border: 0;
            padding: 12px 22px;
        }


        /* =====================================================
           MOBILE
        ====================================================== */

        @media (max-width: 991px) {

            .top-bar .contact-details {
                display: none;
            }

            .top-bar .social-media {
                text-align: center;
            }

            .top-nav .nav-link {
                padding: 11px 8px !important;
            }

            .nav-project-cta {
                display: inline-flex;
                width: fit-content;
            }

            .faq-hero {
                padding: 65px 0 75px;
            }

            .faq-hero h1 {
                letter-spacing: -1px;
            }

            .faq-section {
                padding: 60px 0 70px;
            }

            .faq-answer {
                padding-left: 24px;
            }

            .faq-cta {
                padding: 40px 25px;
            }

        }


        @media (max-width: 575px) {

            .faq-hero p {
                font-size: 16px;
            }

            .faq-category {
                align-items: flex-start;
            }

            .faq-category-icon {
                width: 42px;
                min-width: 42px;
                height: 42px;
            }

            .faq-category h2 {
                font-size: 21px;
            }

            .faq-question {
                padding: 18px 16px;
                gap: 10px;
            }

            .faq-answer {
                padding: 0 16px 20px 58px;
            }

            .faq-arrow {
                width: 28px;
                min-width: 28px;
                height: 28px;
                font-size: 13px;
            }

            .faq-plus {
                width: 24px;
                min-width: 24px;
                height: 24px;
            }

            .faq-cta h2 {
                font-size: 27px;
            }

        }

  /* ==============================
           SOCIAL ICONS
        ============================== */

        .fa {
            padding: 7px;
            text-align: center;
            margin: 5px 2px;
            font-size: 15px;
            width: 30px;
        }

        .fa-whatsapp {
            background: #25D366;
            color: white;
        }

        .fa-linkedin {
            background: #2867B2;
            color: white;
        }

        .fa-twitter {
            background: #1DA1F2;
            color: white;
        }

        .fa-facebook {
            background: #4267B2;
            color: white;
        }

        .fa-instagram {
            background: radial-gradient(
                circle at 30% 107%,
                #fdf497 0%,
                #fdf497 5%,
                #fd5949 45%,
                #d6249f 60%,
                #285AEB 90%
            );
            color: white;
        }

        .fa-youtube {
            background: #FF0000;
            color: white;
        }

        .fa:hover {
            opacity: 0.9;
        }

<!-- =========================================================
     PREMIUM NAVIGATION STYLING
========================================================= -->

    /* Main navigation spacing */
    .top-nav .navbar-nav {
        align-items: center;
    }

    .top-nav .navbar-nav .nav-link {
        font-weight: 500;
        letter-spacing: 0.1px;
        padding-left: 13px;
        padding-right: 13px;
        white-space: nowrap;
    }


    /* Dropdown arrows */
    .top-nav .nav-link .fa-sort-down {
        font-size: 11px;
        margin-left: 5px;
        position: relative;
        top: -1px;
    }


    /* Dropdown menu */
    .top-nav .dropdown-menu {
        min-width: 245px;
        padding: 10px 0;
        border: 0;
        border-radius: 8px;
        box-shadow: 0 10px 35px rgba(0,0,0,0.12);
    }

    .top-nav .dropdown-item {
        padding: 9px 20px;
        font-size: 14px;
        line-height: 1.5;
    }

    .top-nav .dropdown-item:hover,
    .top-nav .dropdown-item:focus {
        background-color: #f5f7fa;
    }

    .top-nav .dropdown-header {
        padding: 8px 20px 5px;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
    }


    /* Start a Project CTA */
    .top-nav .nav-project-cta {
        background:#d7d7d7;
        color: #fff !important;
        border-radius: 5px;
        padding: 9px 16px !important;
        margin-left: 5px;
        font-weight: 600 !important;
        transition: all 0.25s ease;
    }

    .top-nav .nav-project-cta:hover {
        background: #0056b3;
        color: #fff !important;
        transform: translateY(-1px);
    }

    .top-nav .cta-arrow {
        margin-left: 5px;
        font-size: 15px;
    }


    /* Mobile */
    @media (max-width: 991px) {

        .top-nav .navbar-nav {
            align-items: stretch;
            padding-top: 10px;
        }

        .top-nav .navbar-nav .nav-link {
            padding: 10px 5px;
        }

        .top-nav .nav-project-cta {
            display: inline-block;
            margin: 8px 0;
            text-align: center;
        }

        .top-nav .dropdown-menu {
            box-shadow: none;
            border-radius: 0;
            padding-left: 10px;
        }

    }

        /* =========================================================
           GLOBAL CONTACT PAGE
        ========================================================== */

        body {
            color: #1f2937;
            background: #ffffff;
        }

        a {
            transition: all .25s ease;
        }

        .contact-page {
            overflow: hidden;
        }


        /* =========================================================
           TOP BAR
        ========================================================== */

        .top-bar {
            background: #111827;
        }

        .top-bar .contact-details ul {
            padding: 0;
            margin: 0;
            list-style: none;
        }

        .top-bar .contact-details li {
            display: inline-block;
            margin-right: 5px;
        }

        .top-bar .contact-details span {
            color: #fff;
            margin-right: 5px;
        }

        .top-bar a {
            color: #ffffff !important;
            text-decoration: none;
        }

        .top-bar a:hover {
            opacity: .8;
        }

        .social-media {
            text-align: right;
        }

        .social-media a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            height: 30px;
            margin-left: 4px;
            color: #fff !important;
            border-radius: 50%;
            text-decoration: none;
        }

        .social-media .fa-facebook {
            background: #4267B2;
        }

        .social-media .fa-instagram {
            background: #d6249f;
        }

        .social-media .fa-youtube {
            background: #FF0000;
        }

        .social-media .fa-whatsapp {
            background: #25D366;
        }


        /* =========================================================
           NAVIGATION
        ========================================================== */

        .top-nav {
            background: #ffffff !important;
            border-bottom: 1px solid #eeeeee;
        }

        .top-nav .navbar-brand img {
            max-height: 58px;
            width: auto;
        }

        .top-nav .nav-link {
            color: #1f2937 !important;
            font-weight: 500;
        }

        .top-nav .nav-link:hover,
        .top-nav .nav-link.active {
            color: #007bff !important;
        }

        .navbar-nav .nav-item.dropdown .nav-link {
            display: flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
        }

        .navbar-nav .nav-link .fa-sort-down {
            display: inline-block;
            margin: 0;
            line-height: 1;
            position: relative;
            top: -2px;
        }


        /* =========================================================
           HERO
        ========================================================== */

        .contact-hero {
            position: relative;
            padding: 90px 0 85px;
            background:
                linear-gradient(135deg, #f7f9fc 0%, #eef4fb 100%);
        }

        .contact-hero .breadcrumb {
            background: transparent;
            padding: 0;
            margin-bottom: 25px;
        }

        .contact-hero .breadcrumb-item a {
            color: #6b7280;
            text-decoration: none;
        }

        .contact-hero .breadcrumb-item.active {
            color: #111827;
        }

        .contact-eyebrow {
            display: inline-block;
            margin-bottom: 18px;
            padding: 7px 14px;
            border: 1px solid #dbe4ef;
            border-radius: 50px;
            background: #ffffff;
            color: #2563eb;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: .08em;
            text-transform: uppercase;
        }

        .contact-hero h1 {
            max-width: 100%;
            margin-bottom: 22px;
            color: #111827;
            font-size: 52px;
            line-height: 1.08;
            font-weight: 800;
        }

        .contact-hero h1 span {
            color: #007bff;
        }

        .contact-hero .hero-description {
            max-width: 100%;
            margin-bottom: 30px;
            color: #4b5563;
            font-size: 19px;
            line-height: 1.7;
        }

        .hero-services {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .hero-services span {
            display: inline-block;
            padding: 8px 14px;
            background: #ffffff;
            border: 1px solid #e1e7ef;
            border-radius: 30px;
            color: #374151;
            font-size: 14px;
            font-weight: 600;
        }


        /* =========================================================
           MAIN CONTACT SECTION
        ========================================================== */

        .contact-main {
            padding: 30px 0;
            background: #ffffff;
        }

        .section-eyebrow {
            margin-bottom: 10px;
            color: #007bff;
            font-size: 16px;
            font-weight: 700;
            letter-spacing: .1em;
            text-transform: uppercase;
        }

        .section-title {
            margin-bottom: 15px;
            color: #111827;
            font-size: 36px;
            line-height: 1.2;
            font-weight: 800;
        }

        .section-description {
            color: #6b7280;
            line-height: 1.7;
        }


        /* =========================================================
           FORM CARD
        ========================================================== */

        .contact-form-card {
            padding: 42px;
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 18px;
            box-shadow: 0 15px 45px rgba(17, 24, 39, .08);
        }

        .contact-form-card h2 {
            margin-bottom: 8px;
            color: #111827;
            font-size: 28px;
            font-weight: 800;
        }

        .form-intro {
            margin-bottom: 30px;
            color: #6b7280;
        }

        .form-label {
            display: block;
            margin-bottom: 7px;
            color: #374151;
            font-size: 14px;
            font-weight: 700;
        }

        .form-control,
        .form-select {
            width: 100%;
            min-height: 50px;
            padding: 12px 15px;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            background: #ffffff;
            color: #1f2937;
            box-shadow: none;
        }

        textarea.form-control {
            min-height: 130px;
            resize: vertical;
        }

        .form-control:focus,
        .form-select:focus {
            border-color: #007bff;
            box-shadow: 0 0 0 3px rgba(0,123,255,.1);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .required {
            color: #dc3545;
        }

        .budget-options,
        .timeline-options {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .budget-options label,
        .timeline-options label {
            margin: 0;
            cursor: pointer;
        }

        .budget-options input,
        .timeline-options input {
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }

        .budget-options span,
        .timeline-options span {
            display: block;
            padding: 9px 13px;
            border: 1px solid #d1d5db;
            border-radius: 7px;
            background: #fff;
            color: #4b5563;
            font-size: 13px;
            transition: all .2s ease;
        }

        .budget-options input:checked + span,
        .timeline-options input:checked + span {
            border-color: #007bff;
            background: #007bff;
            color: #fff;
        }

        .form-note {
            margin-top: 12px;
            color: #6b7280;
            font-size: 12px;
            line-height: 1.6;
        }

        .btn-start-project {
            width: 100%;
            padding: 14px 25px;
            border: none;
            border-radius: 8px;
            background: #007bff;
            color: #ffffff;
            font-size: 16px;
            font-weight: 700;
            transition: all .25s ease;
        }

        .btn-start-project:hover {
            background: #005fc7;
            transform: translateY(-1px);
        }


        /* =========================================================
           DIRECT CONTACT
        ========================================================== */

        .direct-contact {
            padding: 30px;
            background: #111827;
            border-radius: 18px;
            color: #ffffff;
        }

        .direct-contact h3 {
            margin-bottom: 12px;
            color: #ffffff;
            font-size: 27px;
            font-weight: 800;
        }

        .direct-contact > p {
            color: #d1d5db;
            line-height: 1.7;
        }

        .contact-option {
            display: flex;
            align-items: flex-start;
            margin-top: 25px;
        }

        .contact-option-icon {
            flex: 0 0 44px;
            width: 44px;
            height: 44px;
            margin-right: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            background: rgba(255,255,255,.1);
            color: #ffffff;
        }

        .contact-option h4 {
            margin-bottom: 3px;
            color: #ffffff;
            font-size: 15px;
            font-weight: 700;
        }

        .contact-option p {
            margin: 0;
            color: #d1d5db;
            font-size: 14px;
            line-height: 1.6;
        }

        .contact-option a {
            color: #ffffff;
            text-decoration: none;
        }

        .contact-option a:hover {
            color: #93c5fd;
        }

        .whatsapp-direct {
            display: inline-block;
            margin-top: 25px;
            padding: 11px 18px;
            border-radius: 7px;
            background: #25D366;
            color: #ffffff !important;
            font-weight: 700;
            text-decoration: none;
        }

        .whatsapp-direct:hover {
            background: #1db954;
        }


        /* =========================================================
           NEXT STEPS
        ========================================================== */

        .next-steps {
            padding: 30px 0;
            background: #f8fafc;
        }

        .step-card {
            height: 100%;
            padding: 30px;
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 14px;
        }

        .step-number {
            margin-bottom: 15px;
            color: #007bff;
            font-size: 14px;
            font-weight: 800;
        }

        .step-card h3 {
            margin-bottom: 10px;
            color: #111827;
            font-size: 20px;
            font-weight: 750;
        }

        .step-card p {
            margin: 0;
            color: #6b7280;
            line-height: 1.7;
        }


        /* =========================================================
           GLOBAL PRESENCE
        ========================================================== */

        .global-presence {
            padding: 30px 0;
            background: #ffffff;
        }

        .location-card {
            height: 100%;
            padding: 32px;
            border: 1px solid #e5e7eb;
            border-radius: 15px;
            background: #ffffff;
        }

        .location-card h3 {
            margin-bottom: 12px;
            color: #111827;
            font-size: 22px;
            font-weight: 800;
        }

        .location-card p {
            margin-bottom: 8px;
            color: #6b7280;
            line-height: 1.7;
        }

        .location-card i {
            width: 22px;
            color: #007bff;
        }


        /* =========================================================
           MAP
        ========================================================== */

        .map-main iframe {
            display: block;
            width: 100%;
            min-height: 420px;
            border: 0;
        }


        /* =========================================================
           FINAL CTA
        ========================================================== */

        .contact-final-cta {
            padding: 50px 50px;
            background: #111827;
            text-align: center;
        }

        .contact-final-cta h2 {
            margin-bottom: 15px;
            color: #ffffff;
            font-size: 42px;
            font-weight: 800;
        }

        .contact-final-cta p {
            max-width: 700px;
            margin: 0 auto 28px;
            color: #d1d5db;
            font-size: 18px;
            line-height: 1.7;
        }

        .final-cta-button {
            display: inline-block;
            padding: 14px 28px;
            border-radius: 8px;
            background: #007bff;
            color: #ffffff !important;
            font-weight: 700;
            text-decoration: none;
        }

        .final-cta-button:hover {
            background: #005fc7;
        }


        /* =========================================================
           FOOTER
        ========================================================== */

        .footer {
            background: #d7d7d7;
        }

        .footer a {
            text-decoration: none;
        }


        /* =========================================================
           FLOATING WHATSAPP
        ========================================================== */

        .floating-whatsapp {
            position: fixed;
            width: 50px;
            height: 50px;
            left: 25px;
            bottom: 25px;
            z-index: 9999;
            border-radius: 50%;
            box-shadow: 0 4px 15px rgba(0,0,0,.25);
        }

        .floating-whatsapp img {
            width: 50px;
            height: 50px;
        }


        /* =========================================================
           RESPONSIVE
        ========================================================== */

        @media (max-width: 991px) {

            .top-bar .contact-details,
            .social-media {
                text-align: center;
            }

            .contact-hero {
                padding: 60px 0;
            }

            .contact-hero h1 {
                font-size: 42px;
            }

            .contact-main {
                padding: 60px 0;
            }

            .contact-form-card {
                padding: 28px;
            }

            .direct-contact {
                margin-top: 30px;
            }
        }

        @media (max-width: 767px) {

            .top-bar {
                display: none;
            }

            .contact-hero {
                padding: 45px 0;
            }

            .contact-hero h1 {
                font-size: 34px;
            }

            .contact-hero .hero-description {
                font-size: 16px;
            }

            .section-title {
                font-size: 30px;
            }

            .contact-form-card {
                padding: 22px;
            }

            .contact-final-cta h2 {
                font-size: 32px;
            }

            .floating-whatsapp {
                right: 18px;
                bottom: 18px;
            }
        }


