
        :root {
            --gold-primary: #B8860B;
            --gold-secondary: #DAA520;
            --gold-light: #F5D98E;
            --black-primary: #000000;
            --black-secondary: #1a1a1a;
            --black-tertiary: #2a2a2a;
            --white-primary: #FFFFFF;
            --gray-light: #f5f5f5;
            --gray-medium: #e0e0e0;
            --gray-text: #666666;
            --gray-dark: #333333;
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

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

        body {
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
            color: var(--black-primary);
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 600;
            line-height: 1.2;
        }

        /* Header Section */
        .header-section {
            background: var(--white-primary);
            padding: 15px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
        }

        .header-section.scrolled {
            padding: 10px 0;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }

        .navbar {
            background: transparent !important;
            padding: 0;
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

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

        .logo-icon {
            width: 50px;
            height: 50px;
            background: var(--gold-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
            position: relative;
            transition: var(--transition);
        }

        .header-section.scrolled .logo-icon {
            width: 40px;
            height: 40px;
        }

        .logo-icon::before {
            content: 'A';
            color: white;
            font-weight: bold;
            font-size: 22px;
            transition: var(--transition);
        }

        .header-section.scrolled .logo-icon::before {
            font-size: 18px;
        }

        .brand-text {
            color: var(--black-primary);
            font-weight: 700;
            font-size: 24px;
            text-decoration: none;
            line-height: 1;
            transition: var(--transition);
        }

        .header-section.scrolled .brand-text {
            font-size: 20px;
        }

        .brand-text .tech {
            color: var(--gold-primary);
        }

        .brand-subtitle {
            font-size: 10px;
            font-weight: normal;
            color: var(--gray-text);
            letter-spacing: 1px;
            margin-top: 2px;
            transition: var(--transition);
            display: block;
        }

        .header-section.scrolled .brand-subtitle {
            font-size: 9px;
        }

        .navbar-nav {
            align-items: center;
        }

        .navbar-nav .nav-link {
            color: var(--gray-text) !important;
            font-weight: 500;
            margin: 0 15px;
            position: relative;
            text-decoration: none;
            font-size: 15px;
            transition: var(--transition);
            padding: 8px 0;
        }

        .navbar-nav .nav-link:hover {
            color: var(--black-primary) !important;
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--gold-primary);
            transition: var(--transition);
        }

        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }

        .navbar-nav .nav-link.dropdown::after {
            content: '\f107';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            margin-left: 6px;
            font-size: 12px;
            position: relative;
            background: none;
        }

        .btn-contact {
            background: var(--gold-primary);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 5px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            font-size: 15px;
            box-shadow: 0 4px 8px rgba(184, 134, 11, 0.2);
        }

        .btn-contact:hover {
            background: var(--gold-secondary);
            color: white;
            text-decoration: none;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(184, 134, 11, 0.3);
        }

        .login-link {
            color: var(--gray-text);
            text-decoration: none;
            margin-left: 20px;
            font-weight: 500;
            font-size: 15px;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
        }

        .login-link i {
            margin-right: 6px;
            font-size: 14px;
        }

        .login-link:hover {
            color: var(--black-primary);
            text-decoration: none;
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            min-height: 100vh;
            background: var(--black-primary);
            overflow: hidden;
            display: flex;
            align-items: center;
            padding-top: 80px;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(255,255,255,0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255,255,255,0.03) 0%, transparent 50%),
                linear-gradient(45deg, transparent 49%, rgba(255,255,255,0.02) 50%, transparent 51%),
                linear-gradient(-45deg, transparent 49%, rgba(255,255,255,0.02) 50%, transparent 51%);
            background-size: 100px 100px, 100px 100px, 20px 20px, 20px 20px;
            animation: grain 8s steps(10) infinite;
        }

        @keyframes grain {
            0%, 100% { transform: translate(0, 0); }
            10% { transform: translate(-5%, -10%); }
            20% { transform: translate(-15%, 5%); }
            30% { transform: translate(7%, -25%); }
            40% { transform: translate(-5%, 25%); }
            50% { transform: translate(-15%, 10%); }
            60% { transform: translate(15%, 0%); }
            70% { transform: translate(0%, 15%); }
            80% { transform: translate(3%, -5%); }
            90% { transform: translate(-10%, 10%); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            padding: 60px 0;
        }

        .hero-title {
            font-size: clamp(1.8rem, 3vw, 4.5rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 30px;
            color: var(--white-primary);
        }

        .hero-title span {
            color: var(--gold-primary);
            position: relative;
            display: inline-block;
        }

        .hero-title span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background-color: var(--gold-primary);
            opacity: 0.3;
            z-index: -1;
            transform: skewX(-15deg);
        }

        .hero-subtitle {
            font-size: clamp(1rem, 2vw, 1.3rem);
            line-height: 1.6;
            color: rgba(255,255,255,0.85);
            font-weight: 400;
            max-width: 600px;
            margin-bottom: 40px;
        }

        .hero-image {
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
            width: 50%;
            background: url('https://hebbkx1anhila5yf.public.blob.vercel-storage.com/Screenshot%202025-07-31%20195523-hmyiSO0LH18JJtNd5KX38tMbtxs0ND.png') center/cover;
            opacity: 0.4;
            z-index: 1;
            clip-path: polygon(20% 0%, 100% 0, 100% 100%, 0% 100%);
        }

        .hero-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, var(--black-primary) 0%, transparent 70%);
        }

        .btn-hero {
            background: var(--gold-primary);
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 5px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
        }

        .btn-hero i {
            margin-left: 10px;
            transition: var(--transition);
        }

        .btn-hero:hover {
            background: var(--gold-secondary);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(184, 134, 11, 0.4);
        }

        .btn-hero:hover i {
            transform: translateX(5px);
        }

        .hero-badge-container {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 40px;
        }

        .hero-badge {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 30px;
            padding: 8px 20px;
            display: inline-flex;
            align-items: center;
            color: white;
            font-size: 14px;
            transition: var(--transition);
        }

        .hero-badge i {
            color: var(--gold-primary);
            margin-right: 8px;
            font-size: 16px;
        }

        .hero-badge:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-3px);
        }

        /* Services Section */
        .services-section {
            padding: 120px 0;
            background: var(--white-primary);
            position: relative;
        }

        .services-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(to bottom, var(--black-primary), transparent);
            opacity: 0.05;
            z-index: 0;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            color: var(--black-primary);
            margin-bottom: 20px;
            text-align: center;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gold-primary);
            border-radius: 2px;
        }

        .section-subtitle {
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: var(--gray-text);
            text-align: center;
            margin-bottom: 80px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .service-card {
            background: white;
            border: 1px solid var(--gray-medium);
            border-radius: 12px;
            padding: 40px 30px;
            text-align: center;
            transition: var(--transition);
            height: 100%;
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gold-primary);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            border-color: var(--gold-primary);
        }

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

        .service-icon {
            font-size: 3rem;
            color: var(--gold-primary);
            margin-bottom: 25px;
            transition: var(--transition);
        }

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

        .service-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--black-primary);
            margin-bottom: 15px;
        }

        .service-description {
            color: var(--gray-text);
            line-height: 1.7;
            font-size: 1rem;
            margin-bottom: 20px;
        }

        .service-link {
            color: var(--gold-primary);
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            transition: var(--transition);
        }

        .service-link i {
            margin-left: 8px;
            font-size: 12px;
            transition: var(--transition);
        }

        .service-link:hover {
            color: var(--gold-secondary);
        }

        .service-link:hover i {
            transform: translateX(5px);
        }

        /* Process Section */
        .process-section {
            padding: 120px 0;
            background: var(--gray-light);
            position: relative;
            overflow: hidden;
        }

        .process-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(to top, var(--black-primary), transparent);
            opacity: 0.05;
            z-index: 0;
        }

        .process-connector {
            position: absolute;
            top: 50%;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--gold-light);
            z-index: 0;
        }

        .process-step {
            text-align: center;
            padding: 40px 30px;
            position: relative;
            z-index: 1;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: var(--gold-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: bold;
            margin: 0 auto 25px;
            position: relative;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
        }

        .process-step:hover .step-number {
            transform: scale(1.1);
            box-shadow: 0 8px 20px rgba(184, 134, 11, 0.4);
        }

        .step-number::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 100px;
            border: 2px solid var(--gold-primary);
            border-radius: 50%;
            opacity: 0.3;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(0.95); opacity: 0.3; }
            50% { transform: scale(1.05); opacity: 0.2; }
            100% { transform: scale(0.95); opacity: 0.3; }
        }

        .step-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--black-primary);
            margin-bottom: 15px;
        }

        .step-description {
            color: var(--gray-text);
            line-height: 1.7;
            font-size: 1rem;
        }

        /* Stats Section */
        .stats-section {
            padding: 120px 0;
            background: var(--black-primary);
            color: white;
            position: relative;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(to bottom, var(--gold-primary), transparent);
            opacity: 0.1;
            z-index: 0;
        }

        .stat-item {
            text-align: center;
            padding: 30px 20px;
            position: relative;
            z-index: 1;
        }

        .stat-number {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 700;
            color: var(--gold-primary);
            display: block;
            margin-bottom: 15px;
            line-height: 1;
        }

        .stat-label {
            font-size: 1.1rem;
            color: rgba(255,255,255,0.8);
            font-weight: 400;
        }

        /* Testimonials Section */
        .testimonials-section {
            padding: 120px 0;
            background: var(--white-primary);
        }

        .testimonial-card {
            background: white;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            position: relative;
            margin: 20px;
            border: 1px solid var(--gray-medium);
            transition: var(--transition);
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }

        .testimonial-quote {
            font-size: 1.1rem;
            color: var(--gray-dark);
            line-height: 1.8;
            margin-bottom: 30px;
            position: relative;
        }

        .testimonial-quote::before {
            content: '\201C';
            font-size: 5rem;
            color: var(--gold-light);
            position: absolute;
            top: -20px;
            left: -20px;
            line-height: 1;
            z-index: 0;
            font-family: Georgia, serif;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
            border: 3px solid var(--gold-primary);
        }

        .author-info h5 {
            font-size: 1.1rem;
            margin-bottom: 5px;
            color: var(--black-primary);
        }

        .author-info p {
            font-size: 0.9rem;
            color: var(--gray-text);
            margin-bottom: 0;
        }

        /* Partners Section */
        .partners-section {
            padding: 80px 0;
            background: var(--gray-light);
        }

        .partner-logo {
            filter: grayscale(100%);
            opacity: 0.6;
            transition: var(--transition);
            height: 60px;
            object-fit: contain;
            padding: 0 30px;
        }

        .partner-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
        }

        /* CTA Section */
        .cta-section {
            padding: 120px 0;
            background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            transform: rotate(30deg);
            z-index: 0;
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            color: white;
            margin-bottom: 25px;
            text-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .cta-subtitle {
            font-size: clamp(1rem, 2vw, 1.3rem);
            color: white;
            margin-bottom: 50px;
            opacity: 0.95;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn-cta {
            background: var(--black-primary);
            color: white;
            border: none;
            padding: 18px 45px;
            border-radius: 6px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            margin: 0 15px 15px;
            display: inline-block;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            position: relative;
            overflow: hidden;
        }

        .btn-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: var(--transition);
        }

        .btn-cta:hover {
            background: var(--black-secondary);
            color: white;
            text-decoration: none;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
        }

        .btn-cta:hover::before {
            left: 100%;
        }

        .btn-cta-outline {
            background: transparent;
            color: white;
            border: 2px solid white;
            padding: 16px 43px;
        }

        .btn-cta-outline:hover {
            background: white;
            color: var(--gold-primary);
            border-color: white;
        }

        /* Footer */
        .footer {
            background: var(--black-secondary);
            color: white;
            padding: 100px 0 40px;
            position: relative;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(to bottom, var(--gold-primary), transparent);
            opacity: 0.1;
            z-index: 0;
        }

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

        .footer h5 {
            color: var(--gold-primary);
            margin-bottom: 25px;
            font-weight: 600;
            font-size: 1.2rem;
            position: relative;
            display: inline-block;
        }

        .footer h5::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--gold-primary);
        }

        .footer a {
            color: #ccc;
            text-decoration: none;
            line-height: 2.2;
            transition: var(--transition);
            font-size: 0.95rem;
            display: inline-block;
        }

        .footer a:hover {
            color: var(--gold-primary);
            text-decoration: none;
            transform: translateX(5px);
        }

        .footer a i {
            margin-right: 8px;
            width: 18px;
            text-align: center;
        }

        .footer-about p {
            color: #aaa;
            margin-bottom: 20px;
            font-size: 0.95rem;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--black-tertiary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ccc;
            transition: var(--transition);
        }

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

        .footer-bottom {
            border-top: 1px solid #333;
            margin-top: 50px;
            padding-top: 30px;
            text-align: center;
            color: #999;
            font-size: 0.9rem;
            position: relative;
            z-index: 1;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 15px;
        }

        .footer-links a {
            color: #999;
            line-height: 1;
        }

        .footer-links a:hover {
            color: var(--gold-primary);
            transform: none;
        }

        /* Chat Widget */
        .chat-widget {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: var(--gold-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 6px 25px rgba(184, 134, 11, 0.3);
            z-index: 1000;
            transition: var(--transition);
        }

        .chat-widget:hover {
            transform: scale(1.1) translateY(-5px);
            box-shadow: 0 8px 30px rgba(184, 134, 11, 0.4);
        }

        .chat-widget i {
            color: white;
            font-size: 24px;
            animation: pulse 2s infinite;
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 100px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--black-secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            z-index: 999;
            transition: var(--transition);
            opacity: 0;
            visibility: hidden;
        }

        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: var(--gold-primary);
            transform: translateY(-5px);
        }

        .back-to-top i {
            color: white;
            font-size: 20px;
        }

        /* Modal */
        .modal-content {
            border-radius: 12px;
            overflow: hidden;
            border: none;
        }

        .modal-header {
            background: var(--gold-primary);
            color: white;
            border-bottom: none;
            padding: 20px;
        }

        .modal-title {
            font-weight: 600;
        }

        .modal-body {
            padding: 30px;
        }

        .close {
            color: white;
            opacity: 1;
            text-shadow: none;
        }

        /* Form Styles */
        .form-control {
            padding: 12px 15px;
            border-radius: 6px;
            border: 1px solid var(--gray-medium);
            transition: var(--transition);
        }

        .form-control:focus {
            border-color: var(--gold-primary);
            box-shadow: 0 0 0 0.25rem rgba(184, 134, 11, 0.25);
        }

        .form-label {
            font-weight: 500;
            margin-bottom: 8px;
            color: var(--gray-dark);
        }

        .btn-submit {
            background: var(--gold-primary);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 6px;
            font-weight: 600;
            transition: var(--transition);
            width: 100%;
        }

        .btn-submit:hover {
            background: var(--gold-secondary);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .process-connector {
                display: none;
            }
            
            .hero-image {
                width: 40%;
                opacity: 0.3;
            }
        }

        @media (max-width: 768px) {
            .hero-section {
                min-height: auto;
                padding: 120px 0 80px;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-image {
                display: none;
            }
            
            .navbar-nav {
                background: white;
                padding: 20px;
                border-radius: 12px;
                margin-top: 20px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            }

            .section-title {
                font-size: 2rem;
            }

            .cta-title {
                font-size: 2rem;
            }
            
            .btn-cta, .btn-cta-outline {
                display: block;
                width: 100%;
                max-width: 300px;
                margin: 0 auto 15px;
            }
            
            .footer .col-lg-2, .footer .col-lg-4 {
                margin-bottom: 40px;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .service-card {
                padding: 30px 20px;
            }
            
            .chat-widget {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
            }
            
            .chat-widget i {
                font-size: 20px;
            }
            
            .back-to-top {
                width: 40px;
                height: 40px;
                bottom: 80px;
                right: 20px;
            }
            
            .back-to-top i {
                font-size: 16px;
            }
        }
    