
        :root {
            --primary-purple: #6D28D9;
            --light-purple: #F3E8FF;
            --primary-pink: #EC4899;
            --dark-purple: #5B21B6;
            --light-pink: #FDF2F8;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        /* Navbar Styles */
        .navbar {
            padding: 20px 0;
            transition: all 0.3s ease;
            background: transparent !important;
        }

        .navbar-brand {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary-purple) !important;
            display: flex;
            align-items: center;
        }

        .navbar-brand i {
            margin-right: 10px;
            font-size: 1.8rem;
        }

        .navbar-nav .nav-link {
            color: #333 !important;
            font-weight: 500;
            margin: 0 15px;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-purple) !important;
        }

        .btn-cta {
            background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
            color: white !important;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            border: none;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(109, 40, 217, 0.3);
        }

        .btn-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(109, 40, 217, 0.4);
            color: white !important;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--light-purple), var(--light-pink));
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://5.imimg.com/data5/SELLER/Default/2024/11/464354715/BW/VQ/JP/12996922/renovation-services.jpeg') center/cover;
            opacity: 0.1;
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero-title {
            font-size:4.5rem;
            font-weight: bold;
            background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: #555;
            margin-bottom: 30px;
        }

        /* Section Styles */
        .section-padding {
            padding: 80px 0;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-purple);
            margin-bottom: 20px;
            text-align: center;
        }

        .section-subtitle {
            text-align: center;
            color: #666;
            margin-bottom: 50px;
            font-size: 1.1rem;
        }

        /* About Section */
        .about-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .about-content {
            padding: 30px;
        }

        /* Counter Section */
        .counter-section {
            background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
            color: white;
        }

        .counter-box {
            text-align: center;
            padding: 30px;
        }

        .counter-number {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .counter-label {
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Vision Mission */
        .vision-mission-box {
            background: var(--light-purple);
            padding: 30px;
            border-radius: 15px;
            height: 100%;
            transition: transform 0.3s ease;
        }

        .vision-mission-box:hover {
            transform: translateY(-5px);
        }

        /* Feature Cards */
        .feature-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(109, 40, 217, 0.2);
        }

        .feature-icon {
            font-size: 3rem;
            color: var(--primary-purple);
            margin-bottom: 20px;
        }

        /* Service Cards */
        .service-card {
            background: var(--light-purple);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(109, 40, 217, 0.2);
        }

        .service-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .service-card-body {
            padding: 25px;
        }

        .service-title {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary-purple);
            margin-bottom: 15px;
        }

        /* Review Cards */
        .review-card {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            margin-bottom: 20px;
            position: relative;
        }

        .review-stars {
            color: #FFD700;
            margin-bottom: 15px;
        }

        .review-author {
            font-weight: bold;
            color: var(--primary-purple);
            margin-top: 15px;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        /* Contact Info */
        .contact-info-item {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
        }

        .contact-info-item i {
            font-size: 2rem;
            color: var(--primary-purple);
            margin-right: 20px;
            width: 50px;
        }

        /* Footer */
        footer {
            background: var(--dark-purple);
            color: white;
            padding: 50px 0 20px;
        }

        .footer-title {
            color: white;
            margin-bottom: 20px;
            font-weight: bold;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: white;
        }

        .copyright {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.8);
        }

        /* Form Styles */
        .form-control, .form-select {
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            padding: 12px 15px;
            margin-bottom: 20px;
            transition: border-color 0.3s ease;
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--primary-purple);
            box-shadow: 0 0 0 0.2rem rgba(109, 40, 217, 0.25);
        }

        /* Accordion */
        .accordion-button {
            background: var(--light-purple);
            color: var(--primary-purple);
            font-weight: 600;
        }

        .accordion-button:not(.collapsed) {
            background: var(--primary-purple);
            color: white;
        }

        .accordion-item {
            border: none;
            margin-bottom: 10px;
            border-radius: 10px;
            overflow: hidden;
        }
