
        :root {
            --sky-blue: #87CEEB;
            --lemon-yellow: #FFF44F;
            --white: #FFFFFF;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
            overflow-x: hidden;
        }
        
        .navbar {
            padding: 15px 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 700;
            font-size: 1.5rem;
            color: #333;
        }
        
        .navbar-brand i {
            color: var(--sky-blue);
            margin-right: 10px;
            font-size: 1.8rem;
        }
        
        .navbar-nav .nav-link {
            color: #333;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--sky-blue);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--lemon-yellow);
            transition: width 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .btn-cta {
            background: linear-gradient(45deg, var(--sky-blue), var(--lemon-yellow));
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            color: white;
        }
        
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://www.renotalk.io/wp-content/uploads/2023/04/How-to-plan-a-successful-home-renovation-project-Cover.jpg') center/cover no-repeat;
            min-height: 90vh;
            display: flex;
            align-items: center;
            color: white;
            text-align: center;
        }
        
        .hero-content h1 {
            font-size:5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(45deg, var(--sky-blue), var(--lemon-yellow));
        }
        
        .about-img {
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .about-content {
            padding: 20px;
        }
        
        .counter-box {
            text-align: center;
            padding: 30px 15px;
            background: linear-gradient(45deg, var(--sky-blue), var(--lemon-yellow));
            border-radius: 10px;
            color: white;
            margin-bottom: 30px;
            transition: all 0.3s ease;
        }
        
        .counter-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .counter-box i {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        
        .counter-box h3 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .vision-mission-box {
            background-color: #f8f9fa;
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 30px;
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .vision-mission-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .vision-mission-box i {
            font-size: 2.5rem;
            color: var(--sky-blue);
            margin-bottom: 20px;
        }
        
        .feature-box {
            text-align: center;
            padding: 30px 15px;
            margin-bottom: 30px;
            transition: all 0.3s ease;
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
        }
        
        .feature-box i {
            font-size: 3rem;
            color: var(--sky-blue);
            margin-bottom: 20px;
        }
        
        .feature-box h4 {
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .process-step {
            text-align: center;
            position: relative;
            padding: 0 15px;
        }
        
        .process-step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 40px;
            right: -50%;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--sky-blue), var(--lemon-yellow));
            z-index: -1;
        }
        
        .process-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, var(--sky-blue), var(--lemon-yellow));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 1.5rem;
        }
        
        .service-card {
            background-color: #f8f9fa;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 30px;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .service-card-content {
            padding: 20px;
        }
        
        .service-card-content h4 {
            font-weight: 600;
            margin-bottom: 15px;
            color: #333;
        }
        
        .review-card {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            height: 100%;
        }
        
        .review-card .stars {
            color: var(--lemon-yellow);
            margin-bottom: 15px;
        }
        
        .review-card img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 15px;
        }
        
        .review-card h5 {
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--sky-blue);
            color: white;
        }
        
        .accordion-button:focus {
            box-shadow: none;
        }
        
        .cta-section {
            background: linear-gradient(45deg, var(--sky-blue), var(--lemon-yellow));
            padding: 80px 0;
            text-align: center;
            color: white;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .contact-section {
            background-color: #f8f9fa;
            padding: 80px 0;
        }
        
        .contact-info-box {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .contact-info-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .contact-info-box i {
            font-size: 1.5rem;
            color: var(--sky-blue);
            margin-right: 15px;
        }
        
        .contact-form {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .footer {
            background-color: #333;
            color: white;
            padding: 70px 0 20px;
        }
        
        .footer h5 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer h5::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: linear-gradient(45deg, var(--sky-blue), var(--lemon-yellow));
        }
        
        .footer ul {
            list-style: none;
            padding: 0;
        }
        
        .footer ul li {
            margin-bottom: 10px;
        }
        
        .footer ul li a {
            color: #bbb;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer ul li a:hover {
            color: var(--sky-blue);
            padding-left: 5px;
        }
        
        .footer-bottom {
            border-top: 1px solid #444;
            margin-top: 50px;
            padding-top: 20px;
            text-align: center;
            color: #bbb;
        }
        
        .footer-bottom a {
            color: #bbb;
            text-decoration: none;
            margin: 0 10px;
            transition: all 0.3s ease;
        }
        
        .footer-bottom a:hover {
            color: var(--sky-blue);
        }
        
        .newsletter-form {
            position: relative;
        }
        
        .newsletter-form input {
            width: 100%;
            padding: 12px 15px;
            border: none;
            border-radius: 50px;
            margin-bottom: 15px;
        }
        
        .newsletter-form button {
            width: 100%;
            padding: 12px;
            border: none;
            border-radius: 50px;
            background: linear-gradient(45deg, var(--sky-blue), var(--lemon-yellow));
            color: white;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .newsletter-form button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .process-step:not(:last-child)::after {
                display: none;
            }
        }
