 /* Base Styles */
        :root {
            --primary-blue: #1e40af;
            --primary-blue-light: #3b82f6;
            --primary-blue-dark: #1e3a8a;
            --black: #000000;
            --gray-900: #111827;
            --gray-800: #1f2937;
            --gray-700: #374151;
            --gray-600: #4b5563;
            --gray-500: #6b7280;
            --gray-400: #9ca3af;
            --gray-300: #d1d5db;
            --gray-200: #e5e7eb;
            --white: #ffffff;
            --yellow-400: #fbbf24;
            --green-600: #16a34a;
            --green-700: #15803d;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--white);
            background-color: var(--black);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.2;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.2s ease;
        }

        a:hover {
            color: var(--primary-blue-light);
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            text-align: center;
        }

        .btn-primary {
            background-color: var(--primary-blue);
            color: var(--white);
        }

        .btn-primary:hover {
            background-color: var(--primary-blue-light);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
        }

        .btn-secondary {
            background-color: var(--green-600);
            color: var(--white);
        }

        .btn-secondary:hover {
            background-color: var(--green-700);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--primary-blue);
            color: var(--primary-blue);
        }

        .btn-outline:hover {
            background-color: var(--primary-blue);
            color: var(--white);
        }

        .text-center {
            text-align: center;
        }

        .mt-4 {
            margin-top: 1rem;
        }

        .mt-8 {
            margin-top: 2rem;
        }

        .mt-12 {
            margin-top: 3rem;
        }

        .mb-4 {
            margin-bottom: 1rem;
        }

        .mb-8 {
            margin-bottom: 2rem;
        }

        .mb-12 {
            margin-bottom: 3rem;
        }

        .py-4 {
            padding-top: 1rem;
            padding-bottom: 1rem;
        }

        .py-8 {
            padding-top: 2rem;
            padding-bottom: 2rem;
        }

        .py-12 {
            padding-top: 3rem;
            padding-bottom: 3rem;
        }

        .px-4 {
            padding-left: 1rem;
            padding-right: 1rem;
        }

        .px-8 {
            padding-left: 2rem;
            padding-right: 2rem;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: var(--black);
            background-color: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid rgba(59, 130, 246, 0.3);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 20px;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo-icon {
            background-color: var(--primary-blue);
            padding: 8px;
            border-radius: 8px;
            margin-right: 12px;
        }

        .logo-icon svg {
            width: 32px;
            height: 32px;
            fill: var(--white);
        }

        .logo-text {
            font-size: 24px;
            font-weight: 800;
        }

        .logo-subtext {
            font-size: 12px;
            color: var(--primary-blue-light);
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-menu li {
            margin-left: 32px;
        }

        .nav-menu a {
            color: var(--gray-300);
            font-weight: 500;
            position: relative;
            padding: 4px 0;
        }

        .nav-menu a:hover, .nav-menu a.active {
            color: var(--primary-blue-light);
        }

        .nav-menu a.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--primary-blue-light);
            border-radius: 1px;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 24px;
            cursor: pointer;
        }

        .mobile-menu {
            display: none;
            background-color: var(--gray-900);
            padding: 16px;
            border-radius: 8px;
            margin-top: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .mobile-menu a {
            display: block;
            color: var(--gray-300);
            padding: 12px 0;
            border-bottom: 1px solid var(--gray-800);
        }

        .mobile-menu a:hover, .mobile-menu a.active {
            color: var(--primary-blue-light);
        }

        /* Hero Section */
        .hero {
            padding-top: 100px;
            padding-bottom: 64px;
            background: linear-gradient(135deg, var(--primary-blue) 0%, #3b82f6 50%, var(--black) 100%);
        }

        .hero-content {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .hero-text {
            flex: 1;
        }

        .hero-title {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 16px;
        }

        .hero-title span {
            color: var(--primary-blue-light);
        }

        .hero-subtitle {
            font-size: 1.5rem;
            color: var(--gray-200);
            margin-bottom: 32px;
            max-width: 600px;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .hero-image {
            flex: 1;
            position: relative;
        }

        .hero-image img {
            border-radius: 16px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .rating-badge {
            position: absolute;
            bottom: -24px;
            right: -24px;
            background-color: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 16px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .rating-stars {
            display: flex;
            margin-bottom: 8px;
        }

        .rating-stars svg {
            width: 20px;
            height: 20px;
            fill: var(--yellow-400);
            margin-right: 4px;
        }

        .rating-text {
            color: var(--gray-200);
            font-size: 14px;
        }

        /* Service Highlights */
        .service-highlights {
            padding: 80px 0;
            background-color: var(--black);
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 16px;
            text-align: center;
        }

        .section-subtitle {
            font-size: 1.25rem;
            color: var(--gray-300);
            margin-bottom: 48px;
            text-align: center;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .highlights-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
        }

        .highlight-card {
            background-color: var(--gray-900);
            padding: 32px;
            border-radius: 16px;
            border: 1px solid var(--gray-800);
            transition: all 0.3s ease;
        }

        .highlight-card:hover {
            border-color: var(--primary-blue);
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(30, 64, 175, 0.15);
        }

        .highlight-icon {
            margin-bottom: 16px;
        }

        .highlight-icon svg {
            width: 48px;
            height: 48px;
            fill: var(--primary-blue-light);
        }

        .highlight-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .highlight-desc {
            color: var(--gray-300);
            margin-bottom: 16px;
        }

        .highlight-link {
            color: var(--primary-blue-light);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
        }

        .highlight-link svg {
            width: 16px;
            height: 16px;
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .highlight-link:hover svg {
            transform: translateX(4px);
        }

        /* About Section */
        .about {
            padding: 80px 0;
            background-color: var(--gray-900);
        }

        .about-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            align-items: center;
        }

        .about-text h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 24px;
        }

        .about-text p {
            font-size: 1.125rem;
            color: var(--gray-300);
            margin-bottom: 24px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 24px;
            margin-bottom: 32px;
        }

        .feature {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .feature-icon {
            flex-shrink: 0;
            color: var(--primary-blue-light);
            margin-top: 4px;
        }

        .feature-icon svg {
            width: 24px;
            height: 24px;
        }

        .feature-text h4 {
            font-weight: 600;
            margin-bottom: 4px;
        }

        .feature-text p {
            font-size: 14px;
            color: var(--gray-300);
        }

        .about-image {
            position: relative;
        }

        .about-image img {
            border-radius: 16px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .experience-badge {
            position: absolute;
            bottom: -30px;
            left: -30px;
            background-color: var(--primary-blue);
            color: var(--white);
            padding: 24px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 10px 20px rgba(30, 64, 175, 0.3);
        }

        .experience-number {
            font-size: 2.5rem;
            font-weight: 800;
        }

        .experience-text {
            font-size: 14px;
        }

        /* Service Area */
        .service-area {
            padding: 80px 0;
            background-color: var(--black);
        }

        .area-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
            margin-bottom: 48px;
        }

        .area-card {
            background-color: var(--gray-900);
            padding: 32px;
            border-radius: 16px;
        }

        .area-card h3 {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            color: var(--primary-blue-light);
        }

        .area-card h3 svg {
            margin-right: 12px;
            width: 28px;
            height: 28px;
        }

        .area-card ul {
            list-style: none;
        }

        .area-card li {
            color: var(--gray-300);
            margin-bottom: 12px;
            padding-left: 24px;
            position: relative;
        }

        .area-card li::before {
            content: '•';
            position: absolute;
            left: 8px;
            color: var(--primary-blue-light);
        }

        .map-container {
            background-color: var(--gray-800);
            border-radius: 16px;
            height: 320px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 32px;
        }

        .map-container svg {
            width: 64px;
            height: 64px;
            fill: var(--primary-blue-light);
            margin-bottom: 16px;
            opacity: 0.5;
        }

        .map-container p {
            color: var(--gray-300);
            margin-bottom: 8px;
        }

        .map-container small {
            color: var(--gray-500);
            font-size: 14px;
        }

        /* Our Services */
        .services {
            padding: 80px 0;
            background-color: var(--gray-900);
        }

        .service-item {
            background-color: var(--black);
            border-radius: 16px;
            overflow: hidden;
            margin-bottom: 24px;
            border: 1px solid var(--gray-800);
        }

        .service-header {
            padding: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }

        .service-header-left {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .service-icon {
            color: var(--primary-blue-light);
        }

        .service-icon svg {
            width: 40px;
            height: 40px;
        }

        .service-title {
            font-size: 1.75rem;
            font-weight: 700;
        }

        .service-desc {
            color: var(--gray-300);
        }

        .service-toggle {
            background-color: var(--primary-blue);
            color: var(--white);
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .service-toggle:hover {
            background-color: var(--primary-blue-light);
        }

        .service-toggle svg {
            width: 16px;
            height: 16px;
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .service-content {
            padding: 24px;
            border-top: 1px solid var(--gray-800);
        }

        .service-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
        }

        .service-info h4 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary-blue-light);
            margin-bottom: 16px;
        }

        .service-info p {
            color: var(--gray-300);
            margin-bottom: 24px;
        }

        .benefits-list {
            list-style: none;
        }

        .benefit {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 12px;
        }

        .benefit-icon {
            color: #22c55e;
            flex-shrink: 0;
            margin-top: 4px;
        }

        .benefit-icon svg {
            width: 20px;
            height: 20px;
        }

        .benefit-text {
            color: var(--gray-300);
        }

        .service-image {
            border-radius: 8px;
            overflow: hidden;
        }

        .service-image img {
            width: 50%;
            margin:0 auto;
            height: auto;
            display: block;
            border-radius: 20px;
        }

        .service-image + .text-center {
            margin-top: 24px;
        }

        /* Gallery */
        .gallery {
            padding: 80px 0;
            background-color: var(--black);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            gap: 32px;
        }

        .gallery-item {
            background-color: var(--gray-900);
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid var(--gray-800);
        }

        .gallery-header {
            padding: 16px;
            text-align: center;
        }

        .gallery-header h3 {
            font-size: 1.5rem;
            font-weight: 700;
        }

        /* .before-after {
            display: grid;
            grid-template-columns: 1fr ;
            gap: 1px;
        } */

        .before, .after {
            position: relative;
            overflow: hidden;
        }

        .before img, .after img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }
/* 
        .before-label, .after-label {
            position: absolute;
            display: flex;
            width:100px;
            flex-direction: column;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: var(--gray-800);
            color: var(--white);
            padding: 8px;
            text-align: center;
            font-weight: 600;
            font-size: 14px;
        } */

        /* Reviews */
        .reviews {
            padding: 80px 0;
            background-color: var(--gray-900);
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
        }

        .review-card {
            background-color: var(--black);
            padding: 32px;
            border-radius: 16px;
            border: 1px solid var(--gray-800);
        }

        .review-rating {
            display: flex;
            margin-bottom: 16px;
        }

        .review-rating svg {
            width: 20px;
            height: 20px;
            fill: var(--yellow-400);
            margin-right: 4px;
        }

        .review-text {
            font-style: italic;
            color: var(--gray-300);
            margin-bottom: 24px;
            line-height: 1.8;
        }

        .review-author {
            font-weight: 600;
        }

        .review-location {
            color: var(--gray-500);
            font-size: 14px;
        }

        /* Contact */
        .contact {
            padding: 80px 0;
            background-color: var(--black);
        }

        .contact-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .contact-info h3 {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 24px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 24px;
        }

        .contact-item:last-child {
            margin-bottom: 0;
        }

        .contact-icon {
            color: var(--primary-blue-light);
            flex-shrink: 0;
            margin-top: 4px;
        }

        .contact-icon svg {
            width: 24px;
            height: 24px;
        }

        .contact-item h4 {
            font-weight: 600;
            margin-bottom: 4px;
        }

        .contact-item p {
            color: var(--gray-300);
        }

        .contact-item small {
            color: var(--gray-500);
            font-size: 14px;
        }

        .contact-form {
            background-color: var(--gray-900);
            padding: 32px;
            border-radius: 16px;
        }

        .contact-form h3 {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 24px;
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid var(--gray-700);
            border-radius: 8px;
            background-color: var(--black);
            color: var(--white);
            font-size: 16px;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.2);
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        /* Footer */
        footer {
            background-color: var(--gray-900);
            border-top: 1px solid var(--gray-800);
            padding: 64px 0 32px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 48px;
        }

        .footer-logo {
            grid-column: span 2;
        }

        .footer-logo .logo {
            margin-bottom: 16px;
        }

        .footer-logo p {
            color: var(--gray-300);
            margin-bottom: 24px;
            max-width: 400px;
        }

        .social-links {
            display: flex;
            gap: 16px;
        }

        .social-link {
            background-color: var(--primary-blue);
            color: var(--white);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background-color: var(--primary-blue-light);
            transform: translateY(-4px);
        }

        .footer-links h4 {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 16px;
            color: var(--white);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--gray-300);
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary-blue-light);
        }

        .footer-contact p {
            color: var(--gray-300);
            margin-bottom: 8px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 32px;
            border-top: 1px solid var(--gray-800);
            color: var(--gray-500);
            font-size: 14px;
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 32px;
            right: 32px;
            background-color: var(--primary-blue);
            color: var(--white);
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
            border: none;
            transition: all 0.3s ease;
            z-index: 999;
        }

        .back-to-top:hover {
            background-color: var(--primary-blue-light);
            transform: translateY(-4px);
        }

        .back-to-top svg {
            width: 24px;
            height: 24px;
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-fade-in {
            animation: fadeIn 0.6s ease forwards;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-content {
                flex-direction: column;
                text-align: center;
            }

            .hero-subtitle {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-buttons {
                justify-content: center;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            .service-details {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .header-container {
                padding: 16px;
            }

            .nav-menu {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.25rem;
            }

            .section-title {
                font-size: 2.25rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .back-to-top {
                bottom: 24px;
                right: 24px;
                width: 48px;
                height: 48px;
            }

            .back-to-top svg {
                width: 20px;
                height: 20px;
            }
        }

        @media (max-width: 576px) {
            .hero-buttons {
                flex-direction: column;
            }

            .btn {
                width: 100%;
                text-align: center;
            }

            .hero-title {
                font-size: 2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .rating-badge {
                position: static;
                margin: 16px auto 0;
                max-width: 200px;
            }

            .experience-badge {
                position: static;
                margin: 16px auto;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .footer-logo {
                grid-column: 1;
            }
        }