
        :root {
            --primary-blue: #2F87B6;
            --primary-orange: #EF7336;
            --accent-red: #9D3227;
            --dark-navy: #1B3664;
            --white: #ffffff;
            --light-grey: #f8f9fa;
            --text-dark: #1a1a1a;
            --text-medium: #4a4a4a;
            --text-light: #6a6a6a;
            --border-grey: #e5e7eb;

            /* Typography scale & spacing (default: desktop) */
            --font-size-base: 15px;
            /* body (desktop) */
            --line-height-base: 1.45;
            --h1: 2.25rem;
            /* ~36px */
            --h2: 1.75rem;
            /* ~28px */
            --h3: 1rem;
            /* ~20px */
            --h4: 1.05rem;
            /* ~17px */
            --h5: 0.95rem;
            /* ~15px */
            --h6: 0.85rem;
            /* ~13.6px */

            --section-pad-lg: 40px;
            --section-pad-md: 60px;
            --section-pad-sm: 20px;
        }

        /* Device-specific variable overrides */
        /* Tablet (<= 991px) - slightly smaller, more compact */
        @media (max-width: 991px) {
            :root {
                --font-size-base: 14px;
                --line-height-base: 1.42;
                --h1: 1.95rem;
                --h2: 1.5rem;
                --h3: 1rem;
                --h4: 1rem;
                --h5: 0.9rem;
                --h6: 0.8rem;

                --section-pad-lg: 40px;
                --section-pad-md: 60px;
                --section-pad-sm: 20px;
            }
           
        }

        /* Mobile (<= 575px) - compact and readable */
        @media (max-width: 575px) {
            :root {
                --font-size-base: 13px;
                --line-height-base: 1.38;
                --h1: 1.55rem;
                --h2: 1.25rem;
                --h3: 1rem;
                --h4: 0.95rem;
                --h5: 0.85rem;
                --h6: 0.75rem;

                --section-pad-lg: 40px;
                --section-pad-md: 36px;
                --section-pad-sm: 24px;
            }
        }

        /* Large desktop adjustments (>= 1200px) - slightly more generous scale */
        @media (min-width: 1200px) {
            :root {
                --font-size-base: 16px;
                --line-height-base: 1.5;
                --h1: 2.25rem;
                --h2: 1.7rem;
                --h3: 1.1rem;
            }
        }

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

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            overflow-x: hidden;
            font-size: var(--font-size-base);
            line-height: var(--line-height-base);
            font-weight: 400;
            letter-spacing: 0.01em;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* Lists & textual elements */
        ul,
        ol {
            margin: 0 0 1rem 1.25rem;
            padding: 0;
        }

        ul li,
        ol li {
            font-size: 0.95rem;
            color: var(--text-medium);
        }

        strong,
        b {
            font-weight: 600;
        }

        /* Headings: compact, consistent scale */
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Poppins', sans-serif;
            color: var(--dark-navy);
            margin-top: 0;
            margin-bottom: 0.6rem;
            line-height: 1.15;
            font-weight: 700;
        }

        h1 {
            font-size: var(--h1);
        }

        h2 {
            font-size: var(--h2);
        }

        h3 {
            font-size: var(--h3);
        }

        h4 {
            font-size: var(--h4);
        }

        h5 {
            font-size: var(--h5);
        }

        h6 {
            font-size: var(--h6);
        }

        p {
            font-size: 0.9rem;
            color: var(--text-medium);
            margin-bottom: 0.9rem;
            line-height: 1.6;
        }

        /* Responsive paragraph sizing */
        @media (max-width: 991px) {
            p {
                font-size: 0.9rem;
                line-height: 1.55;
            }
        }

        @media (max-width: 767px) {
            p {
                font-size: 0.9rem;
                line-height: 1.55;
            }
        }

        @media (max-width: 575px) {
            p {
                font-size: 0.9rem;
                line-height: 1.5;
            }
        }

        small {
            font-size: 0.82rem;
            color: var(--text-light);
        }

        a {
            text-decoration: none;
        }

        .section-header {
            margin-bottom: 24px;
        }

        /* Navbar Styles */
        .navbar {
            background: var(--white);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            padding: 0;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
            z-index: 1030;
        }

        .navbar.scrolled {
            box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
            border-bottom-color: rgba(0, 0, 0, 0.08);
        }

        .navbar .container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding-top: 0.6rem;
            padding-bottom: 0.6rem;
            transition: padding 0.22s ease;
        }

        .nav-link {
            color: var(--text-dark) !important;
            font-size: 0.88rem;
            font-weight: 600;
            padding: 0.45rem 0.85rem !important;
            transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 6px;
            position: relative;
            letter-spacing: 0.01em;
        }

        .navbar.scrolled .container {
            padding-top: 0.6rem;
            padding-bottom: 0.6rem;
        }

        .navbar-brand {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--dark-navy) !important;
            transition: opacity 0.22s ease;
            padding: 0;
            margin-right: 32px;
        }

        .nav-link {
            line-height: 1.2;
        }

        .navbar-brand:hover {
            opacity: 0.85;
        }

        .logo-upload-wrapper {
            display: flex;
            align-items: center;
        }

        .logo-upload-wrapper img {
            max-width: 140px;
            max-height: 44px;
            width: auto;
            height: auto;
            object-fit: contain;
            transition: opacity 0.22s ease;
        }

        .logo-upload-wrapper img:hover {
            opacity: 0.85;
        }

        /* Navigation Links */
        .navbar-nav {
            align-items: center;
            gap: 4px;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            color: var(--text-dark) !important;
            font-size: 0.88rem;
            font-weight: 600;
            padding: 0.45rem 0.85rem !important;
            transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 6px;
            position: relative;
            letter-spacing: 0.01em;
        }

        .nav-link:hover {
            color: var(--primary-blue) !important;
            background: rgba(47, 135, 182, 0.06);
        }

        .nav-link.active {
            color: var(--primary-blue) !important;
            font-weight: 600;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--primary-blue);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 70%;
        }

        /* Dropdown Styles */
        /* Hide old pseudo-element caret (in case FA version mismatch) */
        .dropdown-toggle::after {
            display: none;
        }

        /* Explicit caret icon inside dropdown toggle (reliable across FA versions) */
        .dropdown-caret {
            font-size: 0.75rem;
            margin-left: 0.4rem;
            transition: transform 0.3s ease, color 0.2s ease;
            vertical-align: middle;
            color: var(--text-light);
        }

        .nav-item.dropdown:hover .dropdown-caret {
            color: var(--primary-blue);
        }

        /* Desktop: Show dropdown on hover and keep visible while hovering the menu */
        @media (min-width: 992px) {

            .nav-item.dropdown:hover .dropdown-menu,
            .nav-item.dropdown .dropdown-menu:hover {
                display: block;
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
                pointer-events: auto;
            }

            .nav-item.dropdown:hover .dropdown-caret,
            .nav-item.dropdown .dropdown-toggle[aria-expanded="true"] .dropdown-caret {
                transform: rotate(180deg);
            }
        }

        /* When Bootstrap opens the dropdown (aria-expanded="true") rotate the caret */
        .dropdown-toggle[aria-expanded="true"] .dropdown-caret {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            border: 1px solid rgba(0, 0, 0, 0.08);
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
            padding: 0.75rem 0;
            min-width: 240px;
            animation: dropdownFadeIn 0.3s ease;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
            z-index: 1060;
            /* ensure above other content */
            position: absolute;
            top: 100%;
            /* align directly under the toggle to remove any gap */
            left: 0;
            transform: translateY(-6px);
            /* slight upward offset when hidden to make appearing smooth */
            pointer-events: none;
            /* prevent accidental hover while hidden */
        }

        .dropdown-menu.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            pointer-events: auto;
        }

        @keyframes dropdownFadeIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .dropdown-item {
            color: var(--text-dark);
            font-size: 0.9rem;
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: all 0.18s ease;
            border-left: 3px solid transparent;
        }

        .dropdown-item:hover {
            background: rgba(47, 135, 182, 0.06);
            color: var(--primary-blue);
            border-left-color: var(--primary-blue);
            padding-left: 1.4rem;
        }

        .dropdown-item i {
            margin-right: 10px;
            width: 18px;
            text-align: center;
            font-size: 0.85rem;
            color: var(--text-light);
            transition: color 0.2s ease;
        }

        .dropdown-item:hover i {
            color: var(--primary-blue);
        }

        /* CTA Button in Navbar */
        .navbar .btn-contact {
            background: var(--primary-blue);
            color: var(--white);
            border-radius: 6px;
            font-weight: 600;
            font-size: 0.8rem;
            border: none;
            margin-left: 12px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .navbar .btn-contact:hover {
            background: var(--dark-navy);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(47, 135, 182, 0.3);
        }

        /* Mobile Menu Toggle */
        .navbar-toggler {
            border: none;
            padding: 0.4rem 0.6rem;
            border-radius: 6px;
            transition: background 0.3s ease;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        .navbar-toggler:hover {
            background: rgba(47, 135, 182, 0.08);
        }

        .navbar-toggler-icon {
            width: 24px;
            height: 20px;
            position: relative;
            transition: all 0.3s ease;
        }

        /* Mobile Responsive */
        @media (max-width: 991px) {

            /* Reduce navbar vertical padding for compact mobile header */
            .navbar .container {
                padding-top: 0.45rem;
                padding-bottom: 0.45rem;
            }

            .navbar-brand {
                margin-right: 0;
                font-size: 1.15rem;
            }

            .navbar-collapse {
                margin-top: 0.5rem;
                padding: 0.5rem 0;
                border-top: 1px solid rgba(0, 0, 0, 0.04);
            }

            .navbar-nav {
                gap: 0;
                width: 100%;
            }

            .nav-item {
                width: 100%;
            }

            /* Make each nav-link a flex row so label and caret align nicely */
            .nav-link {
                padding: 0.45rem 0.45rem !important;
                border-radius: 0;
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: space-between;
                font-size: 0.9rem;
            }

            .nav-link::after {
                display: none;
            }

            .nav-link .dropdown-caret {
                margin-left: 0.6rem;
                line-height: 1;
                font-size: 0.78rem;
            }

            .dropdown-menu {
                border: none;
                box-shadow: none;
                padding: 0.4rem 0;
                margin-top: 0;
                background: rgba(47, 135, 182, 0.03);
                border-radius: 0;
                position: static !important;
                transform: none !important;
                width: 100%;
                opacity: 1 !important;
                visibility: visible !important;
            }

            .dropdown-item {
                padding: 0.5rem 0.75rem;
                white-space: normal;
                display: flex;
                align-items: center;
                gap: 10px;
            }

            .navbar .btn-contact {
                margin-left: 0;
                margin-top: 0.75rem;
                width: 100%;
                text-align: center;
                justify-content: center;
                padding: 0.55rem;
                font-size: 0.95rem;
            }

            /* Smaller toggler to reduce header height */
            .navbar-toggler {
                padding: 0.25rem 0.4rem;
            }

            .navbar-toggler-icon {
                width: 18px;
                height: 14px;
            }
        }

        @media (max-width: 575px) {
            .logo-upload-wrapper img {
                max-width: 110px;
                max-height: 36px;
            }

            .navbar .container {
                padding-top: 0.35rem;
                padding-bottom: 0.35rem;
            }

            .navbar-brand {
                font-size: 1rem;
            }

            .nav-link {
                padding: 0.45rem 0.5rem !important;
                font-size: 0.88rem;
            }

            .dropdown-caret {
                font-size: 0.72rem;
                margin-left: 0.6rem;
            }

            .navbar-toggler-icon {
                width: 16px;
                height: 12px;
            }
        }

        /* Hero Section */
        .hero-section {

            display: flex;
            align-items: center;
            position: relative;
            background: var(--white);
            overflow: hidden;
            padding: var(--section-pad-md) 0 40px;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(circle at 20% 50%, rgba(47, 135, 182, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(239, 115, 54, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(47, 135, 182, 0.08);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--primary-blue);
            border: 1px solid rgba(47, 135, 182, 0.15);
            margin-bottom: 20px;
            animation: slideInDown 0.6s ease-out;
        }

        .hero-badge i {
            color: var(--primary-orange);
            font-size: 0.85rem;
        }

        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-title {
            font-family: 'Poppins', sans-serif;
            font-size: var(--h1);
            font-weight: 700;
            line-height: 1.12;
            margin-bottom: 12px;
            color: var(--dark-navy);
            letter-spacing: -0.02em;
            animation: slideInUp 0.48s ease-out 0.1s both;
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-title .gradient-text {
            background: linear-gradient(120deg, var(--primary-blue) 0%, var(--primary-orange) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
        }

        .hero-subtitle {

            color: var(--text-medium);
            margin-bottom: 28px;
            line-height: 1.65;
            max-width: 550px;
            animation: slideInUp 0.6s ease-out 0.2s both;
        }

        .hero-cta {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 24px;
            animation: slideInUp 0.48s ease-out 0.3s both;
        }

        .btn-primary-custom {
            background: var(--primary-blue);
            color: var(--white);

            border-radius: 8px;
            font-weight: 500;
            font-size: 0.92rem;
            border: none;
            box-shadow: 0 4px 10px rgba(47, 135, 182, 0.18);
            transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .btn-primary-custom:hover {
            background: var(--primary-orange);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(27, 54, 100, 0.3);
        }

        .btn-secondary-custom {
            background: transparent;
            color: var(--text-dark);

            border-radius: 8px;
            font-weight: 500;
            font-size: 0.92rem;
            border: 2px solid var(--border-grey);
            transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .btn-secondary-custom:hover {
            border-color: var(--primary-blue);
            color: var(--primary-blue);
            background: rgba(47, 135, 182, 0.05);
        }

        /* Trust Indicators */
        .trust-indicators {
            display: flex;
            gap: 32px;

            align-items: center;
            animation: fadeIn 0.6s ease-out 0.4s both;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 12px;
            min-width: 0;
            /* helps with text-overflow */
        }

        .trust-icon {
            width: 48px;
            height: 48px;
            background: rgba(47, 135, 182, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-blue);
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .trust-text h4 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark-navy);
            margin-bottom: 0;
            line-height: 1;
        }

        .trust-text p {
            font-size: 0.8rem;
            color: var(--text-light);
            margin-bottom: 0;
            margin-top: 3px;
            white-space: nowrap;
        }

        /* Hero Visual */
        .hero-visual {
            position: relative;
            animation: fadeInRight 0.6s ease-out 0.2s both;
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(20px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero-image-wrapper {
            position: relative;
        }

        .main-hero-graphic {
            width: 100%;
            aspect-ratio: 1;
            max-width: 420px;
            margin: 0 auto;
            background: linear-gradient(135deg, rgba(47, 135, 182, 0.08) 0%, rgba(239, 115, 54, 0.08) 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: visible;
            border: 1px solid rgba(47, 135, 182, 0.1);
        }

        .center-content {
            position: relative;
            z-index: 10;
            text-align: center;
            background: var(--white);
            padding: 28px 24px;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            max-width: 170px;
            margin: 0 auto;
        }

        .center-content i {
            font-size: 3rem;
            color: var(--primary-blue);
            margin-bottom: 10px;
            display: block;
        }

        .center-content h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--dark-navy);
            margin-bottom: 5px;
            line-height: 1.2;
        }

        .center-content p {
            font-size: 0.75rem;
            color: var(--text-light);
            margin: 0;
            line-height: 1.3;
        }

        .service-icons {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
        }

        .service-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 75px;
            height: 75px;
            background: var(--white);
            border-radius: 14px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
            gap: 5px;
            border: 1px solid rgba(0, 0, 0, 0.05);
            transform: translate(-50%, -50%) rotate(0deg) translateX(160px) rotate(0deg);
            transform-origin: center center;
            animation: orbit 25s infinite linear;
            z-index: 12;
            /* above center card to remain visible on small screens */
        }

        @keyframes orbit {
            from {
                transform: translate(-50%, -50%) rotate(0deg) translateX(160px) rotate(0deg);
            }

            to {
                transform: translate(-50%, -50%) rotate(360deg) translateX(160px) rotate(-360deg);
            }
        }

        .service-icon i {
            font-size: 1.75rem;
        }

        .service-icon span {
            font-size: 0.65rem;
            font-weight: 600;
            color: var(--text-dark);
            text-align: center;
            line-height: 1.2;
        }

        .service-icon:nth-child(1) {
            animation-delay: 0s;
        }

        .service-icon:nth-child(1) i {
            color: var(--primary-blue);
        }

        .service-icon:nth-child(2) {
            animation-delay: -6.25s;
        }

        .service-icon:nth-child(2) i {
            color: var(--primary-orange);
        }

        .service-icon:nth-child(3) {
            animation-delay: -12.5s;
        }

        .service-icon:nth-child(3) i {
            color: var(--accent-red);
        }

        .service-icon:nth-child(4) {
            animation-delay: -18.75s;
        }

        .service-icon:nth-child(4) i {
            color: var(--dark-navy);
        }

        .service-icon:nth-child(5) {
            animation-delay: -3.125s;
        }

        .service-icon:nth-child(5) i {
            color: #4CAF50;
        }

        .service-icon:nth-child(6) {
            animation-delay: -9.375s;
        }

        .service-icon:nth-child(6) i {
            color: #9C27B0;
        }

        /* Added icons: 7 - Medical, 8 - Billing Software */
        .service-icon:nth-child(7) {
            animation-delay: -15.625s;
        }

        .service-icon:nth-child(7) i {
            color: #D32F2F;
        }

        .service-icon:nth-child(8) {
            animation-delay: -21.875s;
        }

        .service-icon:nth-child(8) i {
            color: #FFB300;
        }

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

            .trust-indicators {
                gap: 28px;
            }

            .hero-visual {
                margin-top: 34px;
            }
        }

        @media (max-width: 767px) {

            /* slightly smaller base font on mobile for compactness */
            body {
                font-size: 14px;
            }

            .hero-section {
                padding: 60px 0 30px;
                min-height: auto;
            }

            .navbar {
                padding: 0.2rem 0;
            }

            .logo-upload-wrapper img {
                max-width: 120px;
                max-height: 40px;
            }

            /* scale headings down for mobile */
            h1 {
                font-size: 1.75rem;
            }

            h2 {
                font-size: 1.45rem;
            }

            h3 {
                font-size: 1.05rem;
            }
        }

        .hero-badge {
            font-size: 0.75rem;
            padding: 6px 14px;
        }

        .btn-primary-custom,
        .btn-secondary-custom {
            padding: 9px 24px;
            font-size: 0.9rem;

        }

        .hero-cta {
            gap: 10px;
            margin-bottom: 32px;
        }

        .trust-indicators {
            gap: 24px;
            margin-top: 6px;
        }

        .trust-icon {
            width: 30px;
            height: 30px;
            font-size: 1.1rem;
        }

        .trust-text h4 {
            font-size: 1.3rem;
        }

        .trust-text p {
            font-size: 0.75rem;
        }

        .main-hero-graphic {
            max-width: 100%;
        }

        .center-content {
            padding: 24px 20px;
            max-width: 150px;
        }

        .center-content i {
            font-size: 2.5rem;
        }

        .center-content h3 {
            font-size: 1.05rem;
        }

        .center-content p {
            font-size: 0.7rem;
        }

        .service-icon {
            width: 68px;
            height: 68px;
            z-index: 12;
            /* ensure visible above center */
        }

        .service-icon i {
            font-size: 1.6rem;
        }

        .service-icon span {
            font-size: 0.6rem;
        }

        @keyframes orbit {
            from {
                transform: translate(-50%, -50%) rotate(0deg) translateX(145px) rotate(0deg);
            }

            to {
                transform: translate(-50%, -50%) rotate(360deg) translateX(145px) rotate(-360deg);
            }
        }
        }

        @media (max-width: 575px) {

            /* compact base on small phones */
            body {
                font-size: 13px;
            }

            .hero-section {
                padding: 50px 0 28px;
            }

            .logo-upload-wrapper img {
                max-width: 100px;
                max-height: 34px;
            }

            .hero-badge {
                font-size: 0.68rem;
                padding: 5px 10px;
            }

            .main-hero-graphic {
                max-width: 320px;
            }

            .center-content {
                padding: 18px 12px;
                max-width: 110px;
            }

            .center-content i {
                font-size: 1.9rem;
                margin-bottom: 6px;
            }

            .center-content h3 {
                font-size: 0.95rem;
                margin-bottom: 3px;
            }

            .center-content p {
                font-size: 0.64rem;
            }

            .service-icon {
                width: 58px;
                height: 58px;
                z-index: 14;
            }

            .service-icon i {
                font-size: 1.35rem;
            }

            .service-icon span {
                font-size: 0.55rem;
            }

            /* scale headings for very small screens */
            h1 {
                font-size: 1.45rem;
            }

            h2 {
                font-size: 1.1rem;
            }

            h3 {
                font-size: 1rem;
            }

            @keyframes orbit {
                from {
                    transform: translate(-50%, -50%) rotate(0deg) translateX(120px) rotate(0deg);
                }

                to {
                    transform: translate(-50%, -50%) rotate(360deg) translateX(120px) rotate(-360deg);
                }
            }

            /* show all icons on small screens; removed the rule that hid icons */
        }

        /* Services Section */
        .services-section {
            padding: var(--section-pad-lg) 0;
            background: var(--light-grey);
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 24px;
        }

        .section-subtitle {
            color: var(--primary-blue);
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .section-title {
            font-family: 'Poppins', sans-serif;
            font-size: var(--h2);
            font-weight: 700;
            color: var(--dark-navy);
            margin-bottom: 12px;
            line-height: 1.2;
        }

        .section-description {
            font-size: 0.95rem;
            color: var(--text-medium);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin-top: 40px;
        }

        .service-card {
            background: var(--white);
            border-radius: 12px;
            padding: 20px 18px;
            transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(0, 0, 0, 0.06);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-blue), var(--primary-orange));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
            border-color: rgba(47, 135, 182, 0.12);
        }

        .service-icon-wrapper {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 18px;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon-wrapper {
            transform: scale(1.1);
        }

        .service-icon-wrapper i {
            font-size: 1.85rem;
        }

        .service-card:nth-child(1) .service-icon-wrapper {
            background: rgba(47, 135, 182, 0.1);
            color: var(--primary-blue);
        }

        .service-card:nth-child(2) .service-icon-wrapper {
            background: rgba(239, 115, 54, 0.1);
            color: var(--primary-orange);
        }

        .service-card:nth-child(3) .service-icon-wrapper {
            background: rgba(157, 50, 39, 0.1);
            color: var(--accent-red);
        }

        .service-card:nth-child(4) .service-icon-wrapper {
            background: rgba(27, 54, 100, 0.1);
            color: var(--dark-navy);
        }

        .service-card:nth-child(5) .service-icon-wrapper {
            background: rgba(76, 175, 80, 0.1);
            color: #4CAF50;
        }

        .service-card:nth-child(6) .service-icon-wrapper {
            background: rgba(156, 39, 176, 0.1);
            color: #9C27B0;
        }

        .service-card:nth-child(7) .service-icon-wrapper {
            background: rgba(211, 47, 47, 0.08);
            color: #D32F2F;
        }

        .service-card:nth-child(8) .service-icon-wrapper {
            background: rgba(255, 179, 0, 0.08);
            color: #FFB300;
        }

        .service-card h3 {
            font-size: var(--h3);
            font-weight: 600;
            color: var(--dark-navy);
            margin-bottom: 8px;
            line-height: 1.25;
        }

        .service-card p {
            font-size: 0.875rem;
            color: var(--text-medium);
            line-height: 1.6;
            margin-bottom: 16px;
        }

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

        .service-features li {
            font-size: 0.9rem;
            color: var(--text-medium);
            padding: 4px 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .service-features li i {
            color: var(--primary-blue);
            font-size: 0.7rem;
        }

        /* Services Responsive */
        @media (max-width: 991px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
        }

        @media (max-width: 767px) {
            .services-section {
                padding: 50px 0;
            }

            .section-header {
                margin-bottom: 32px;
            }

            .section-subtitle {
                font-size: 0.8rem;
            }

            .section-description {
                font-size: 0.9rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 16px;
                margin-top: 32px;
            }

            .service-card {
                padding: 24px 20px;
            }

            .service-icon-wrapper {
                width: 52px;
                height: 52px;
            }

            .service-icon-wrapper i {
                font-size: 1.6rem;
            }

            .service-card h3 {
                font-size: 0.95rem;
            }

            .service-card p {
                font-size: 0.85rem;
                margin-bottom: 14px;
            }

            .service-features li {
                font-size: 0.78rem;
                padding: 5px 0;
            }
        }

        @media (max-width: 575px) {
            .services-section {
                padding: 45px 0;
            }

            .service-card {
                padding: 22px 18px;
            }
        }

        /* Clients Section Styles */
        .clients-section {
            background: linear-gradient(180deg, var(--white) 0%, var(--light-grey) 100%);

            padding: var(--section-pad-lg) 0;
            position: relative;
            overflow: hidden;
        }

        .clients-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--border-grey) 20%, var(--border-grey) 80%, transparent);
        }

        .clients-section::after {
            content: '';
            position: absolute;
            top: 20%;
            right: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(47, 135, 182, 0.06) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .clients-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 40px;
            position: relative;
            z-index: 2;
        }

        .clients-header .section-subtitle {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--primary-blue);
            margin-bottom: 16px;
            padding: 6px 18px;
            background: linear-gradient(135deg, rgba(47, 135, 182, 0.1), rgba(239, 115, 54, 0.08));
            border-radius: 20px;
            border: 1px solid rgba(47, 135, 182, 0.15);
        }

        .clients-header .section-title {
            font-family: 'Poppins', sans-serif;
            font-size: var(--h2);
            font-weight: 700;
            color: var(--dark-navy);
            margin-bottom: 14px;
            line-height: 1.25;
        }

        .clients-header .section-description {
            font-size: 1.05rem;
            color: var(--text-medium);
            line-height: 1.7;
            max-width: 680px;
            margin: 0 auto;
        }

        .clients-logos-container {
            margin-bottom: 56px;
            position: relative;
            z-index: 2;
        }

        .clients-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 24px;

            margin: 0 auto;
            justify-items: center;
            align-items: center;
            grid-auto-rows: 84px;
            /* ensure equal height cards for good alignment */
        }

        .client-logo-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 28px 24px;
            background: var(--white);
            border: 2px solid transparent;
            border-radius: 16px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: move;
            user-select: none;
            position: relative;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            overflow: hidden;
            min-height: 72px;
            /* consistent height for grid alignment */
            height: 100%;
        }

        .client-logo-wrapper::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 16px;
            padding: 2px;
            background: linear-gradient(135deg, rgba(47, 135, 182, 0.15), rgba(239, 115, 54, 0.15));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .client-logo-wrapper:hover {
            transform: translateY(-6px) scale(1.02);
            box-shadow: 0 10px 24px rgba(47, 135, 182, 0.12);
        }

        .client-logo-wrapper:hover::before {
            opacity: 1;
        }

        .client-logo-wrapper.dragging {
            opacity: 0.4;
            transform: scale(0.95);
        }

        .client-logo-wrapper.drag-over {
            border-color: var(--primary-blue);
            background: rgba(47, 135, 182, 0.03);
        }

        .client-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;

            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .client-logo img {
            max-width: 100%;
            height: auto;
            max-height: 60px;
            object-fit: contain;
        }

        .client-logo-wrapper:hover .client-logo {
            filter: grayscale(0%) opacity(1);
            transform: scale(1.05);
        }

        /* Trust elements removed as per request */

        .clients-stats {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 36px;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark-navy);
            line-height: 1;
            margin-bottom: 8px;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            font-size: 0.95rem;
            color: var(--text-medium);
            font-weight: 500;
            letter-spacing: 0.3px;
        }

        .stat-divider {
            width: 1px;
            height: 60px;
            background: var(--border-grey);
        }

        /* Clients Section Responsive */
        @media (max-width: 991px) {


            .clients-header {
                margin-bottom: 48px;
            }



            .clients-header .section-description {
                font-size: 1rem;
            }

            .clients-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 24px;
            }

            .client-logo-wrapper {
                padding: 24px 20px;
            }

            .logo-text {
                font-size: 1.2rem;
            }



            .clients-stats {
                gap: 48px;
            }



            .stat-label {
                font-size: 0.9rem;
            }

            .stat-divider {
                height: 50px;
            }
        }

        @media (max-width: 767px) {


            .clients-header {
                margin-bottom: 40px;
            }

            .clients-header .section-subtitle {
                font-size: 0.7rem;
                padding: 5px 14px;
            }

            .clients-header .section-title {

                margin-bottom: 16px;
            }

            .clients-header .section-description {
                font-size: 0.95rem;
            }

            .clients-logos-container {
                margin-bottom: 40px;
            }

            .clients-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 12px;
                grid-auto-rows: 72px;
                justify-items: center;
                align-items: center;
            }

            .client-logo-wrapper {
                padding: 18px 12px;
                min-height: 72px;
                height: 100%;
            }

            .client-logo img {
                max-height: 45px;
            }

            /* Disable large hover scale on touch devices to prevent layout shift */
            .client-logo-wrapper:hover {
                transform: none;
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
            }



            .clients-stats {

                gap: 15px;
            }

            .stat-divider {
                display: none;
            }



            .stat-label {
                font-size: 0.85rem;
            }
        }

        @media (max-width: 575px) {


            .clients-header {
                margin-bottom: 36px;
            }



            .clients-header .section-description {
                font-size: 0.9rem;
            }

            .clients-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 10px;
                grid-auto-rows: 64px;
            }

            .client-logo-wrapper {
                padding: 16px 10px;
                min-height: 64px;
                height: 100%;
            }

            .client-logo img {
                max-height: 38px;
            }

            .client-logo-wrapper:hover {
                transform: none;
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
            }



            .stat-label {
                font-size: 0.7rem;
            }
        }

        /* Very small phones: fallback to 2 columns for better spacing */
        @media (max-width: 360px) {
            .clients-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
                grid-auto-rows: 64px;
            }

            .client-logo img {
                max-height: 34px;
            }


        }

        /* How We Work Section */
        .how-we-work-section {
            padding: var(--section-pad-md) 0;
            background: var(--white);
            position: relative;
            overflow: hidden;
        }

        .how-we-work-section::before {
            content: '';
            position: absolute;
            top: -20%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(239, 115, 54, 0.04) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            margin-top: 40px;
            position: relative;
            z-index: 2;
        }

        .process-step {
            background: var(--white);
            border: 1px solid var(--border-grey);
            border-radius: 12px;
            padding: 28px 24px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .process-step::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-blue), var(--primary-orange));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .process-step:hover::before {
            transform: scaleX(1);
        }

        .process-step:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
            border-color: rgba(47, 135, 182, 0.3);
        }

        .step-number {
            width: 56px;
            height: 56px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 16px;
            position: relative;
            transition: transform 0.3s ease;
        }

        .process-step:hover .step-number {
            transform: scale(1.1);
        }

        .process-step:nth-child(1) .step-number {
            background: linear-gradient(135deg, rgba(47, 135, 182, 0.15), rgba(47, 135, 182, 0.08));
            color: var(--primary-blue);
        }

        .process-step:nth-child(2) .step-number {
            background: linear-gradient(135deg, rgba(239, 115, 54, 0.15), rgba(239, 115, 54, 0.08));
            color: var(--primary-orange);
        }

        .process-step:nth-child(3) .step-number {
            background: linear-gradient(135deg, rgba(157, 50, 39, 0.15), rgba(157, 50, 39, 0.08));
            color: var(--accent-red);
        }

        .process-step:nth-child(4) .step-number {
            background: linear-gradient(135deg, rgba(27, 54, 100, 0.15), rgba(27, 54, 100, 0.08));
            color: var(--dark-navy);
        }

        .process-step:nth-child(5) .step-number {
            background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(76, 175, 80, 0.08));
            color: #4CAF50;
        }

        .process-step:nth-child(6) .step-number {
            background: linear-gradient(135deg, rgba(156, 39, 176, 0.15), rgba(156, 39, 176, 0.08));
            color: #9C27B0;
        }

        .step-icon {
            position: absolute;
            top: 8px;
            right: 8px;
            font-size: 0.9rem;
            opacity: 0.3;
            transition: all 0.3s ease;
        }

        .process-step:hover .step-icon {
            opacity: 0.6;
            transform: scale(1.1);
        }

        .process-step:nth-child(1) .step-icon {
            color: var(--primary-blue);
        }

        .process-step:nth-child(2) .step-icon {
            color: var(--primary-orange);
        }

        .process-step:nth-child(3) .step-icon {
            color: var(--accent-red);
        }

        .process-step:nth-child(4) .step-icon {
            color: var(--dark-navy);
        }

        .process-step:nth-child(5) .step-icon {
            color: #4CAF50;
        }

        .process-step:nth-child(6) .step-icon {
            color: #9C27B0;
        }

        .step-title {
            font-family: 'Poppins', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--dark-navy);
            margin-bottom: 10px;
            line-height: 1.3;
        }

        .step-description {
            font-size: 0.875rem;
            color: var(--text-medium);
            line-height: 1.6;
            margin-bottom: 0;
        }

        /* How We Work Responsive */
        @media (max-width: 991px) {
            .how-we-work-section {
                padding: var(--section-pad-md) 0;
            }

            .process-steps {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
                margin-top: 36px;
            }

            .process-step {
                padding: 24px 20px;
            }

            .step-number {
                width: 50px;
                height: 50px;
                font-size: 1.35rem;
                margin-bottom: 14px;
            }

            .step-title {
                font-size: 1.05rem;
            }

            .step-description {
                font-size: 0.8125rem;
            }
        }

        @media (max-width: 767px) {
            .how-we-work-section {
                padding: var(--section-pad-sm) 0;
            }

            .process-steps {
                grid-template-columns: 1fr;
                gap: 16px;
                margin-top: 32px;
            }

            .process-step {
                padding: 22px 18px;
            }

            .step-number {
                width: 46px;
                height: 46px;
                font-size: 1.25rem;
                margin-bottom: 12px;
            }

            .step-icon {
                font-size: 0.85rem;
                top: 6px;
                right: 6px;
            }

            .step-title {
                font-size: 1rem;
                margin-bottom: 8px;
            }

            .step-description {
                font-size: 0.8125rem;
            }
        }

        @media (max-width: 575px) {
            .process-step {
                padding: 20px 16px;
            }

            .step-number {
                width: 42px;
                height: 42px;
                font-size: 1.15rem;
                margin-bottom: 10px;
            }

            .step-title {
                font-size: 0.95rem;
            }

            .step-description {
                font-size: 0.85rem;
            }
        }

        /* Contact Section */
        .contact-section {
            padding: var(--section-pad-lg) 0;
            background: linear-gradient(180deg, var(--light-grey) 0%, var(--white) 100%);
            position: relative;
            overflow: hidden;
        }

        .contact-section::before {
            content: '';
            position: absolute;
            bottom: -15%;
            right: -8%;
            width: 450px;
            height: 450px;
            background: radial-gradient(circle, rgba(47, 135, 182, 0.05) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 40px;
            margin-top: 40px;
            position: relative;
            z-index: 2;
        }

        /* Contact Info Card */
        .contact-info-card {
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-navy));
            border-radius: 16px;
            padding: 40px 32px;
            color: var(--white);
            position: relative;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(47, 135, 182, 0.25);
        }

        .contact-info-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -30%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .contact-info-card h3 {
            font-family: 'Poppins', sans-serif;

            font-weight: 700;
            color: var(--white);
            margin-bottom: 12px;
            position: relative;
        }

        .contact-info-card p {

            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 32px;
            line-height: 1.6;
            position: relative;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 24px;
            margin-bottom: 32px;
            position: relative;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            transition: transform 0.3s ease;
        }

        .contact-item:hover {
            transform: translateX(5px);
        }

        .contact-icon {
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .contact-item:hover .contact-icon {
            background: var(--primary-orange);
            transform: scale(1.1);
        }

        .contact-icon i {
            font-size: 1.1rem;
            color: var(--white);
        }

        .contact-text h4 {
            font-size: 0.8rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 4px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .contact-text p {
          
            color: var(--white);
            margin-bottom: 0;
            font-weight: 500;
        }

        .contact-text a {
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-text a:hover {
            color: var(--primary-orange);
        }

        .social-links {
            display: flex;
            gap: 12px;
            margin-top: 32px;
            position: relative;
        }

        .social-link {
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .social-link:hover {
            background: var(--primary-orange);
            transform: translateY(-3px);
            color: var(--white);
        }

        .social-link i {
            font-size: 1.1rem;
        }

        /* Contact Form */
        .contact-form-wrapper {
            background: var(--white);
            border-radius: 16px;
            padding: 40px 36px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            border: 1px solid var(--border-grey);
        }

        .contact-form-wrapper h3 {
            font-family: 'Poppins', sans-serif;

            font-weight: 700;
            color: var(--dark-navy);
            margin-bottom: 8px;
        }

        .contact-form-wrapper>p {

            color: var(--text-medium);
            margin-bottom: 28px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        /* Themed alerts used for form feedback */
        .theme-alert {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            padding: 12px 14px;
            border-radius: 10px;
            box-shadow: 0 6px 18px rgba(19, 35, 47, 0.06);
            border-left: 6px solid var(--primary-blue);
            background: linear-gradient(180deg, rgba(47,135,182,0.03), rgba(255,255,255,0));
            color: var(--text-dark);
            font-size: 0.95rem;
        }

        .theme-alert .alert-icon {
            font-size: 1.25rem;
            line-height: 1;
            margin-top: 2px;
            color: var(--primary-blue);
            min-width: 28px;
            text-align: center;
        }

        .theme-alert .alert-body {
            flex: 1 1 auto;
        }

        .theme-alert .alert-title {
            font-weight: 700;
            display: block;
            margin-bottom: 4px;
            color: var(--dark-navy);
        }

        .theme-alert .alert-message {
            color: var(--text-medium);
            font-size: 0.95rem;
        }

        .theme-alert-success {
            border-left-color: var(--primary-blue);
        }

        .theme-alert-danger {
            border-left-color: var(--accent-red);
        }

        .theme-alert-warning {
            border-left-color: #f0ad4e;
        }

        /* Small screens: more compact */
        @media (max-width: 575px) {
            .theme-alert {
                padding: 10px 12px;
                gap: 8px;
                font-size: 0.9rem;
                border-radius: 8px;
            }

            .theme-alert .alert-icon {
                font-size: 1.05rem;
                min-width: 24px;
            }
        }

        .form-group label span {
            color: var(--primary-orange);
        }

        .form-control {
            width: 100%;
            padding: 12px 16px;
            font-size: 0.9rem;
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            background: var(--white);
            border: 2px solid var(--border-grey);
            border-radius: 8px;
            transition: all 0.3s ease;
            outline: none;
        }

        .form-control:focus {
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 4px rgba(47, 135, 182, 0.1);
        }

        .form-control::placeholder {
            color: #a0a0a0;
        }

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

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .btn-submit {
            width: 100%;
            padding: 14px 28px;
            font-size: 1rem;
            font-weight: 600;
            color: var(--white);

            background: var(--primary-orange);
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(47, 135, 182, 0.25);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 8px;
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(47, 135, 182, 0.35);
        }

        .btn-submit i {
            font-size: 1rem;
        }

        /* Contact Responsive */
        @media (max-width: 991px) {
            .contact-section {
                padding: var(--section-pad-md) 0;
            }

            .contact-wrapper {
                grid-template-columns: 1fr;
                gap: 32px;
                margin-top: 36px;
            }

            .contact-info-card {
                padding: 36px 28px;
            }



            .contact-form-wrapper {
                padding: 36px 28px;
            }


        }

        @media (max-width: 767px) {
            .contact-section {
                padding: var(--section-pad-sm) 0;
            }

            .contact-wrapper {
                gap: 28px;
                margin-top: 32px;
            }

            .contact-info-card {
                padding: 32px 24px;
            }

            .contact-info-card h3 {

                margin-bottom: 10px;
            }

            .contact-info-card p {

                margin-bottom: 28px;
            }

            .contact-details {
                gap: 20px;
                margin-bottom: 28px;
            }

            .contact-icon {
                width: 40px;
                height: 40px;
            }

            .contact-icon i {
                font-size: 1rem;
            }





            .social-links {
                gap: 10px;
                margin-top: 24px;
            }

            .social-link {
                width: 40px;
                height: 40px;
            }

            .social-link i {
                font-size: 1rem;
            }

            .contact-form-wrapper {
                padding: 28px 20px;
            }



            .contact-form-wrapper>p {

                margin-bottom: 24px;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .form-group {
                margin-bottom: 16px;
            }

            .form-control {
                padding: 11px 14px;
                font-size: 0.875rem;
            }

            textarea.form-control {
                min-height: 110px;
            }

            .btn-submit {
                padding: 13px 24px;
                font-size: 0.95rem;
            }
        }

        @media (max-width: 575px) {
            .contact-info-card {
                padding: 28px 20px;
            }



            .contact-details {
                gap: 18px;
            }

            .contact-form-wrapper {
                padding: 24px 18px;
            }

            .contact-form-wrapper h3 {}

            .btn-submit {
                padding: 12px 20px;

            }
        }

        /* Testimonials Section */
        .testimonials-section {
            padding: var(--section-pad-lg) 0;
            background: var(--white);
            position: relative;
            overflow: hidden;
        }

        .testimonials-section::before {
            content: '';
            position: absolute;
            top: -10%;
            left: -5%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(47, 135, 182, 0.04) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            margin-top: 40px;
            position: relative;
            z-index: 2;
        }

        .testimonial-card {
            background: var(--white);
            border: 1px solid var(--border-grey);
            border-radius: 12px;
            padding: 32px 28px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-blue), var(--primary-orange));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .testimonial-card:hover::before {
            transform: scaleX(1);
        }

        .testimonial-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
            border-color: rgba(47, 135, 182, 0.3);
        }

        .quote-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, rgba(47, 135, 182, 0.1), rgba(239, 115, 54, 0.1));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .testimonial-card:hover .quote-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .quote-icon i {
            font-size: 1.3rem;
            color: var(--primary-blue);
        }

        .rating {
            display: flex;
            gap: 4px;
            margin-bottom: 16px;
        }

        .rating i {
            font-size: 1rem;
            color: #FFB300;
        }

        .testimonial-text {
            font-size: 0.95rem;
            color: var(--text-medium);
            line-height: 1.7;
            margin-bottom: 24px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 14px;
            padding-top: 20px;
            border-top: 1px solid var(--border-grey);
        }

        .author-image {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
            border: 3px solid rgba(47, 135, 182, 0.1);
            transition: all 0.3s ease;
        }

        .testimonial-card:hover .author-image {
            border-color: var(--primary-blue);
            transform: scale(1.05);
        }

        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info h4 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--dark-navy);
            margin-bottom: 2px;
            line-height: 1.3;
        }

        .author-info p {
            font-size: 0.8125rem;
            color: var(--text-light);
            margin-bottom: 0;
            line-height: 1.3;
        }

        .author-company {
            font-weight: 500;
            color: var(--primary-blue);
        }

        /* Testimonials Responsive */
        @media (max-width: 991px) {
            .testimonials-section {
                padding: var(--section-pad-md) 0;
            }

            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
                margin-top: 36px;
            }

            .testimonial-card {
                padding: 28px 24px;
            }

            .quote-icon {
                width: 44px;
                height: 44px;
                margin-bottom: 18px;
            }

            .quote-icon i {
                font-size: 1.2rem;
            }

            .testimonial-text {
                font-size: 0.9rem;
                margin-bottom: 20px;
            }

            .author-image {
                width: 48px;
                height: 48px;
            }

            .author-info h4 {
                font-size: 0.95rem;
            }

            .author-info p {
                font-size: 0.8rem;
            }
        }

        @media (max-width: 767px) {
            .testimonials-section {
                padding: var(--section-pad-sm) 0;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                margin-top: 32px;
            }

            .testimonial-card {
                padding: 26px 22px;
            }

            .quote-icon {
                width: 42px;
                height: 42px;
                margin-bottom: 16px;
            }

            .quote-icon i {
                font-size: 1.1rem;
            }

            .rating {
                margin-bottom: 14px;
            }

            .rating i {
                font-size: 0.95rem;
            }

            .testimonial-text {
                font-size: 0.875rem;
                margin-bottom: 18px;
            }

            .testimonial-author {
                padding-top: 18px;
                gap: 12px;
            }

            .author-image {
                width: 46px;
                height: 46px;
            }

            .author-info h4 {
                font-size: 0.9rem;
            }

            .author-info p {
                font-size: 0.78rem;
            }
        }

        @media (max-width: 575px) {
            .testimonial-card {
                padding: 24px 20px;
            }

            .quote-icon {
                width: 40px;
                height: 40px;
            }

            .testimonial-text {
                font-size: 0.85rem;
            }

            .author-image {
                width: 44px;
                height: 44px;
            }
        }

        /* About Us Section */
        .about-section {
            padding: var(--section-pad-lg) 0;
            background: linear-gradient(180deg, var(--light-grey) 0%, var(--white) 100%);
            position: relative;
            overflow: hidden;
        }

        .about-section::before {
            content: '';
            position: absolute;
            top: -15%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(47, 135, 182, 0.04) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .about-section::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -8%;
            width: 450px;
            height: 450px;
            background: radial-gradient(circle, rgba(239, 115, 54, 0.04) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .about-content {
            position: relative;
            z-index: 2;
        }

        .about-intro {
            max-width: 800px;
            margin: 0 auto 50px;
            text-align: center;
        }

        .about-intro p {

            color: var(--text-medium);
            line-height: 1.7;
            margin-bottom: 0;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
            margin-bottom: 50px;
        }

        .stat-card {
            background: var(--white);
            border-radius: 12px;
            padding: 32px 24px;
            text-align: center;
            border: 1px solid var(--border-grey);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-blue), var(--primary-orange));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .stat-card:hover::before {
            transform: scaleX(1);
        }

        .stat-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
            border-color: rgba(47, 135, 182, 0.3);
        }

        .stat-card-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 16px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .stat-card:hover .stat-card-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .stat-card-icon i {
            font-size: 1.8rem;
        }

        .stat-card:nth-child(1) .stat-card-icon {
            background: linear-gradient(135deg, rgba(47, 135, 182, 0.15), rgba(47, 135, 182, 0.08));
            color: var(--primary-blue);
        }

        .stat-card:nth-child(2) .stat-card-icon {
            background: linear-gradient(135deg, rgba(239, 115, 54, 0.15), rgba(239, 115, 54, 0.08));
            color: var(--primary-orange);
        }

        .stat-card:nth-child(3) .stat-card-icon {
            background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(76, 175, 80, 0.08));
            color: #4CAF50;
        }

        .stat-card:nth-child(4) .stat-card-icon {
            background: linear-gradient(135deg, rgba(156, 39, 176, 0.15), rgba(156, 39, 176, 0.08));
            color: #9C27B0;
        }

        .stat-number {
            font-family: 'Poppins', sans-serif;

            font-weight: 700;
            color: var(--dark-navy);
            line-height: 1;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text-medium);
            font-weight: 500;
        }

        .about-values {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            margin-top: 40px;
        }

        .value-card {
            background: var(--white);
            border: 1px solid var(--border-grey);
            border-radius: 12px;
            padding: 32px 28px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .value-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-blue), var(--primary-orange));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .value-card:hover::before {
            transform: scaleX(1);
        }

        .value-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
            border-color: rgba(47, 135, 182, 0.3);
        }

        .value-icon {
            width: 56px;
            height: 56px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            transition: all 0.3s ease;
        }

        .value-card:hover .value-icon {
            transform: scale(1.1);
        }

        .value-icon i {
            font-size: 1.5rem;
        }

        .value-card:nth-child(1) .value-icon {
            background: linear-gradient(135deg, rgba(47, 135, 182, 0.15), rgba(47, 135, 182, 0.08));
            color: var(--primary-blue);
        }

        .value-card:nth-child(2) .value-icon {
            background: linear-gradient(135deg, rgba(239, 115, 54, 0.15), rgba(239, 115, 54, 0.08));
            color: var(--primary-orange);
        }

        .value-card:nth-child(3) .value-icon {
            background: linear-gradient(135deg, rgba(157, 50, 39, 0.15), rgba(157, 50, 39, 0.08));
            color: var(--accent-red);
        }

        .value-card:nth-child(4) .value-icon {
            background: linear-gradient(135deg, rgba(27, 54, 100, 0.15), rgba(27, 54, 100, 0.08));
            color: var(--dark-navy);
        }

        .value-card:nth-child(5) .value-icon {
            background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(76, 175, 80, 0.08));
            color: #4CAF50;
        }

        .value-card:nth-child(6) .value-icon {
            background: linear-gradient(135deg, rgba(156, 39, 176, 0.15), rgba(156, 39, 176, 0.08));
            color: #9C27B0;
        }

        .value-title {
            font-family: 'Poppins', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--dark-navy);
            margin-bottom: 10px;
            line-height: 1.3;
        }

        .value-description {
            font-size: 0.875rem;
            color: var(--text-medium);
            line-height: 1.6;
            margin-bottom: 0;
        }

        .about-mission {
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-navy));
            border-radius: 16px;
            padding: 48px 40px;
            margin-top: 50px;
            color: var(--white);
            position: relative;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(47, 135, 182, 0.25);
        }

        .about-mission::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -20%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .mission-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .mission-icon {
            width: 72px;
            height: 72px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            backdrop-filter: blur(10px);
        }

        .mission-icon i {
            font-size: 2rem;
            color: var(--white);
        }

        .about-mission h3 {
            font-family: 'Poppins', sans-serif;

            font-weight: 700;
            color: var(--white);
            margin-bottom: 16px;
        }

        .about-mission p {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.7;
            margin-bottom: 0;
        }

        /* About Responsive */
        @media (max-width: 991px) {
            .about-section {
                padding: var(--section-pad-md) 0;
            }

            .about-intro {
                margin-bottom: 40px;
            }



            .about-stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
                margin-bottom: 40px;
            }

            .stat-card {
                padding: 28px 20px;
            }

            .stat-card-icon {
                width: 58px;
                height: 58px;
                margin-bottom: 14px;
            }

            .stat-card-icon i {
                font-size: 1.6rem;
            }



            .stat-label {
                font-size: 0.85rem;
            }

            .about-values {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }

            .value-card {
                padding: 28px 24px;
            }

            .value-icon {
                width: 52px;
                height: 52px;
                margin-bottom: 14px;
            }

            .value-icon i {
                font-size: 1.4rem;
            }

            .value-title {
                font-size: 1.05rem;
            }

            .about-mission {
                padding: 40px 32px;
                margin-top: 40px;
            }

            .mission-icon {
                width: 64px;
                height: 64px;
                margin-bottom: 18px;
            }

            .mission-icon i {
                font-size: 1.8rem;
            }



            .about-mission p {
                font-size: 1rem;
            }
        }

        @media (max-width: 767px) {
            .about-section {
                padding: var(--section-pad-sm) 0;
            }

            .about-intro {
                margin-bottom: 32px;
            }



            .about-stats {

                gap: 20px;
                margin-bottom: 36px;
            }

            .stat-card {
                padding: 26px 20px;
            }

            .stat-card-icon {
                width: 56px;
                height: 56px;
            }

            .stat-card-icon i {
                font-size: 1.5rem;
            }



            .about-values {
                grid-template-columns: 1fr;
                gap: 20px;
                margin-top: 32px;
            }

            .value-card {
                padding: 26px 22px;
            }

            .value-icon {
                width: 50px;
                height: 50px;
            }

            .value-icon i {
                font-size: 1.3rem;
            }

            .value-title {
                font-size: 1rem;
            }

            .value-description {
                font-size: 0.85rem;
            }

            .about-mission {
                padding: 36px 28px;
                margin-top: 36px;
            }

            .mission-icon {
                width: 60px;
                height: 60px;
            }

            .mission-icon i {
                font-size: 1.6rem;
            }

            .about-mission h3 {

                margin-bottom: 14px;
            }

            .about-mission p {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 575px) {
            .stat-card {
                padding: 24px 18px;
            }

            .stat-card-icon {
                width: 52px;
                height: 52px;
            }


            .value-card {
                padding: 24px 20px;
            }

            .value-icon {
                width: 48px;
                height: 48px;
            }

            .about-mission {
                padding: 32px 24px;
            }

            .mission-icon {
                width: 56px;
                height: 56px;
            }



            .about-mission p {
                font-size: 0.9rem;
            }
        }

        /* Footer Section */
        .footer {
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-navy));
            color: var(--white);
            position: relative;
            overflow: hidden;
            padding: 60px 0 0;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -15%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .footer::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -10%;
            width: 450px;
            height: 450px;
            background: radial-gradient(circle, rgba(239, 115, 54, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .footer-content {
            position: relative;
            z-index: 2;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        }

        .footer-about {
            padding-right: 20px;
        }

        .footer-logo {
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-logo img {
            max-width: 150px;
            max-height: 50px;
            object-fit: contain;
        }

        .footer-about p {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .footer-social {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

        .footer-social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .footer-social-link:hover {
            background: var(--primary-orange);
            transform: translateY(-3px);
            color: var(--white);
        }

        .footer-social-link i {
            font-size: 1rem;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
        }

        .footer-title {
            font-family: 'Poppins', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-orange), transparent);
            border-radius: 2px;
        }

        .footer-links ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 0.85rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a:hover {
            color: var(--primary-orange);
            transform: translateX(5px);
        }

        .footer-links a i {
            font-size: 0.75rem;
          
            transition: opacity 0.3s ease;
        }

        .footer-links a:hover i {
            opacity: 1;
        }

        .footer-contact {
            display: flex;
            flex-direction: column;
        }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 16px;
            transition: transform 0.3s ease;
        }

        .footer-contact-item:hover {
            transform: translateX(5px);
        }

        .footer-contact-icon {
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .footer-contact-item:hover .footer-contact-icon {
            background: var(--primary-orange);
        }

        .footer-contact-icon i {
            font-size: 0.95rem;
            color: var(--white);
        }

        .footer-contact-text {
            flex: 1;
        }

        .footer-contact-text strong {
            display: block;
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.6);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 4px;
            font-weight: 600;
        }

        .footer-contact-text span,
        .footer-contact-text a {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.85rem;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-contact-text a:hover {
            color: var(--primary-orange);
        }

        .footer-bottom {
            padding: 24px 0;
            margin-top: 30px;
            text-align: center;

        }

        .footer-bottom p {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
        }

        .footer-bottom a {
            color: var(--primary-orange);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .footer-bottom a:hover {
            color: var(--white);
        }

        /* Footer Responsive */
        @media (max-width: 991px) {
            .footer {
                padding: 50px 0 0;
            }

            .footer-top {
                grid-template-columns: repeat(2, 1fr);
                gap: 32px;
                padding-bottom: 32px;
            }

            .footer-about {
                grid-column: 1 / -1;
                padding-right: 0;
            }

            .footer-logo {
                font-size: 1.4rem;
                margin-bottom: 14px;
            }

            .footer-about p {
                font-size: 0.875rem;
                margin-bottom: 16px;
            }

            .footer-social {
                margin-top: 16px;
            }

            .footer-title {
                font-size: 1.05rem;
                margin-bottom: 18px;
            }

            .footer-contact-item {
                margin-bottom: 14px;
            }

            .footer-bottom {
                padding: 20px 0;
                margin-top: 24px;
            }
        }

        @media (max-width: 767px) {
            .footer {
                padding: 40px 0 0;
            }

            .footer-top {
                grid-template-columns: 1fr;
                gap: 28px;
                padding-bottom: 28px;
            }

            .footer-about {
                text-align: center;
            }

            .footer-logo {
                justify-content: center;
                font-size: 1.3rem;
                margin-bottom: 12px;
            }

            .footer-about p {
                font-size: 0.85rem;
            }

            .footer-social {
                justify-content: center;
                margin-top: 14px;
            }

            .footer-title {
                font-size: 1rem;
                margin-bottom: 16px;
            }

            .footer-links a {
                font-size: 0.875rem;
            }

            .footer-contact-icon {
                width: 34px;
                height: 34px;
            }

            .footer-contact-icon i {
                font-size: 0.9rem;
            }

            .footer-contact-text strong {
                font-size: 0.7rem;
            }

            .footer-contact-text span,
            .footer-contact-text a {
                font-size: 0.85rem;
            }

            .footer-bottom {
                padding: 18px 0;
                margin-top: 20px;
            }

            .footer-bottom p {
                font-size: 0.8125rem;
            }
        }

        @media (max-width: 575px) {
            .footer {
                padding: 32px 0 0;
            }

            .footer-top {
                gap: 24px;
                padding-bottom: 24px;
            }

            .footer-logo {
                font-size: 1.2rem;
            }

            .footer-logo img {
                max-width: 130px;
            }

            .footer-social-link {
                width: 38px;
                height: 38px;
            }

            .footer-social-link i {
                font-size: 0.95rem;
            }

            .footer-title {
                font-size: 0.95rem;
                margin-bottom: 14px;
            }

            .footer-links li {
                margin-bottom: 10px;
            }

            .footer-contact-item {
                margin-bottom: 12px;
            }

            .footer-bottom {
                padding: 16px 0;
            }

            .footer-bottom p {
                font-size: 0.78rem;
            }
        }
  