
        :root {
            --primary-color: #3e64ff;
            --secondary-color: #f8f9fa;
            --accent-color: #f96d00;
            --dark-color: #1e1e1e;
            --light-color: #ffffff;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            color: #333;
            overflow-x: hidden;
        }
        
        .navbar {
            padding: 15px 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 24px;
            color: var(--primary-color);
        }
        
        .navbar-nav .nav-link {
            color: var(--dark-color);
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }
        
        .hero-wrap {
            position: relative;
            height: 100vh;
            min-height: 600px;
        }
        
        .slider-item {
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            height: 100vh;
            min-height: 600px;
            position: relative;
        }
        
        .slider-item .overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }
        
        .slider-text {
            position: relative;
            z-index: 2;
            height: 100vh;
            min-height: 600px;
            display: flex;
            align-items: center;
        }
        
        .slider-text h2 {
            font-size: 30px;
            color: white;
            font-weight: 500;
        }
        
        .slider-text h1 {
            font-size: 50px;
            color: white;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background-color: #2a52e0;
            border-color: #2a52e0;
            transform: translateY(-2px);
        }
        
        .intro {
            padding: 40px 0;
            background-color: var(--secondary-color);
        }
        
        .intro-box {
            padding: 20px;
            background-color: var(--light-color);
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .bg-intro {
            background-color: var(--light-color);
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .btn-custom {
            padding: 0 30px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 0 5px 5px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .btn-custom:hover {
            background-color: #2a52e0;
            color: white;
        }
        
        .services .icon {
            width: 80px;
            height: 80px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .services .icon span {
            color: white;
            font-size: 30px;
        }
        
        .services .media-body {
            color: #333;
        }
        
        .services h3.heading {
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .services p {
            color: #666;
            line-height: 1.6;
        }
        
        .heading-section span.subheading {
            font-size: 16px;
            color: var(--primary-color);
            font-weight: 500;
            display: block;
            margin-bottom: 10px;
        }
        
        .heading-section h2 {
            font-weight: 700;
            font-size: 36px;
            margin-bottom: 30px;
        }
        
        .ftco-counter {
            padding: 80px 0;
            background-color: var(--primary-color);
            color: white;
        }
        
        .block-18 {
            text-align: center;
            padding: 30px;
        }
        
        .block-18 .number {
            font-size: 40px;
            font-weight: 700;
            display: block;
            margin-bottom: 10px;
        }
        
        .block-18 span {
            font-size: 18px;
        }
        
        .ftco-appointment {
            position: relative;
            background-size: cover;
            background-position: center;
            padding: 80px 0;
        }
        
        .ftco-appointment .overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
        }
        
        .heading-section-white {
            color: white;
        }
        
        .appointment {
            background: rgba(255, 255, 255, 0.1);
            padding: 30px;
            border-radius: 5px;
            backdrop-filter: blur(10px);
        }
        
        .form-control {
            height: 50px;
            border-radius: 5px;
            border: none;
            padding-left: 20px;
            margin-bottom: 20px;
        }
        
        .form-control:focus {
            box-shadow: none;
            border: 2px solid var(--primary-color);
        }
        
        textarea.form-control {
            height: auto;
            padding-top: 15px;
        }
        
        .select-wrap {
            position: relative;
        }
        
        .select-wrap .icon {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #666;
        }
        
        .select-wrap select {
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
        }
        
        .input-wrap {
            position: relative;
        }
        
        .input-wrap .icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #666;
        }
        
        .input-wrap .form-control {
            padding-left: 50px;
        }
        
        .btn-dark {
            background-color: var(--dark-color);
            border-color: var(--dark-color);
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .btn-dark:hover {
            background-color: #000;
            border-color: #000;
            transform: translateY(-2px);
        }
        
        .testimony-section {
            padding: 80px 0;
        }
        
        .testimony-wrap {
            background: white;
            padding: 30px;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            position: relative;
            margin: 20px 0;
        }
        
        .testimony-wrap .icon {
            position: absolute;
            top: -20px;
            left: 20px;
            width: 40px;
            height: 40px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }
        
        .user-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-size: cover;
            background-position: center;
        }
        
        .parts {
            padding: 80px 0;
            background-color: var(--secondary-color);
        }
        
        .parts .heading {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .parts .heading span {
            color: var(--primary-color);
            font-weight: 500;
        }
        
        .parts .heading h2 {
            font-weight: 700;
            margin: 10px 0;
        }
        
        .parts-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .parts-container .box {
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .parts-container .box:hover {
            transform: translateY(-10px);
        }
        
        .parts-container .box img {
            max-width: 100%;
            height: 150px;
            object-fit: contain;
            margin-bottom: 20px;
        }
        
        .parts-container .box h3 {
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .parts-container .box .btn {
            background: var(--primary-color);
            color: white;
            padding: 8px 20px;
            border-radius: 5px;
            text-decoration: none;
            display: inline-block;
            margin-top: 15px;
            transition: all 0.3s ease;
        }
        
        .parts-container .box .btn:hover {
            background: #2a52e0;
        }
        
        .parts-container .box .details {
            display: block;
            margin-top: 10px;
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .work {
            height: 300px;
            background-size: cover;
            background-position: center;
            position: relative;
            border-radius: 5px;
            margin-bottom: 30px;
            overflow: hidden;
        }
        
        .work .icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        .work:hover .icon {
            opacity: 1;
        }
        
        .work .desc {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 20px;
            transform: translateY(100%);
            transition: all 0.3s ease;
        }
        
        .work:hover .desc {
            transform: translateY(0);
        }
        
        footer {
            background-color: var(--dark-color);
            color: white;
            padding: 60px 0 30px;
        }
        
        footer h3 {
            font-weight: 600;
            margin-bottom: 20px;
            font-size: 20px;
        }
        
        footer p, footer a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        footer a:hover {
            color: white;
        }
        
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background: var(--primary-color);
        }
        
        .copyright {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .slider-text h1 {
                font-size: 36px;
            }
            
            .slider-text h2 {
                font-size: 24px;
            }
            
            .heading-section h2 {
                font-size: 28px;
            }
            
            .services .d-flex {
                flex-direction: column;
                text-align: center;
            }
            
            .services .icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }
