
        :root {
            --primary-color: #463f3a;
            --secondary-color: #8a817c;
            --background-color: #bcb8b1;
            --text-color: #f4f3ee;
            --accent-color: #e0afa0;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--primary-color);
            background-color: #fff;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
        }
        
        /* Navbar Styles */
        .navbar {
            padding: 25px 0;
            transition: all 0.4s ease;
            position: relative;
            z-index: 1000;
        }
        
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color) !important;
            letter-spacing: -0.5px;
        }
        
        .navbar-nav {
            justify-content: center;
            width: 100%;
        }
        
        .navbar-nav .nav-item {
            margin: 0 18px;
            position: relative;
        }
        
        .navbar-nav .nav-link {
            color: var(--primary-color);
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
            padding: 5px 0;
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-color);
            transition: width 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover::after,
        .navbar-nav .nav-link.active::after {
            width: 100%;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color);
        }
        
        .navbar-nav .nav-link.active {
            color: var(--accent-color);
            font-weight: 600;
        }
        
        .btn-cta {
            background-color: var(--primary-color);
            color: white;
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(70, 63, 58, 0.2);
        }
        
        .btn-cta:hover {
            background-color: var(--accent-color);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(224, 175, 160, 0.3);
        }
        
        /* Hero Section */
        .hero-section {
            padding: 180px 0 120px;
            background: linear-gradient(135deg, rgba(70, 63, 58, 0.85), rgba(70, 63, 58, 0.7)), url('https://png.pngtree.com/thumb_back/fh260/background/20230527/pngtree-an-empty-building-being-remodeled-in-a-house-image_2699492.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 70% 30%, rgba(224, 175, 160, 0.2) 0%, transparent 70%);
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero-content h1 {
            font-size: 5rem;
            font-weight: 700;
            margin-bottom: 25px;
            line-height: 1.2;
            letter-spacing: -1px;
        }
        
        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            opacity: 0.9;
            max-width: 600px;
        }
        
        .btn-primary-custom {
            background-color: var(--accent-color);
            border: none;
            padding: 15px 35px;
            font-weight: 600;
            font-size: 1rem;
            border-radius: 50px;
            transition: all 0.3s ease;
            display: inline-block;
            box-shadow: 0 5px 15px rgba(224, 175, 160, 0.3);
        }
        
        .btn-primary-custom:hover {
            background-color: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(70, 63, 58, 0.3);
        }
        
        .hero-image {
            position: relative;
            transform: translateY(30px);
        }
        
        .hero-image img {
            border-radius: 15px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
            transition: transform 0.8s ease;
        }
        
        .hero-image:hover img {
            transform: scale(1.03);
        }
        
        .hero-image::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            right: 40px;
            bottom: 20px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            z-index: -1;
        }
        
        /* Section Styles */
        .section-padding {
            padding: 100px 0;
        }
        
        .section-title {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--primary-color);
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--accent-color);
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            color: var(--secondary-color);
            margin-bottom: 60px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 70px;
        }
        
        /* About Section */
        .about-section {
            background-color: #f9f9f9;
            position: relative;
        }
        
        .about-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            position: relative;
            height: 100%;
        }
        
        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        .about-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(224, 175, 160, 0.1) 0%, transparent 70%);
            z-index: 1;
        }
        
        .about-content {
            padding-left: 40px;
        }
        
        .about-content h2 {
            font-size: 2.5rem;
            margin-bottom: 25px;
        }
        
        .about-content p {
            margin-bottom: 20px;
            color: var(--secondary-color);
            line-height: 1.7;
        }
        
        /* Counter Section */
        .counter-section {
            background-color: var(--primary-color);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .counter-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 70%, rgba(224, 175, 160, 0.2) 0%, transparent 70%);
        }
        
        .counter-box {
            text-align: center;
            padding: 30px 20px;
            position: relative;
            z-index: 2;
            transition: transform 0.3s ease;
        }
        
        .counter-box:hover {
            transform: translateY(-10px);
        }
        
        .counter-box i {
            font-size: 3rem;
            color: var(--accent-color);
            margin-bottom: 20px;
        }
        
        .counter {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .counter-box p {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        /* Vision & Mission Section */
        .vision-mission-section {
            background-color: #f9f9f9;
        }
        
        .vision-mission-box {
            background-color: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
            height: 100%;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .vision-mission-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background-color: var(--accent-color);
        }
        
        .vision-mission-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .vision-mission-box h3 {
            color: var(--primary-color);
            margin-bottom: 25px;
            font-size: 1.8rem;
        }
        
        .vision-mission-box p {
            color: var(--secondary-color);
            line-height: 1.7;
            margin-bottom: 15px;
        }
        
        /* Why Choose Us Section */
        .why-choose-box {
            text-align: center;
            padding: 40px 25px;
            border-radius: 15px;
            transition: all 0.3s ease;
            height: 100%;
            background-color: white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }
        
        .why-choose-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background-color: var(--accent-color);
        }
        
        .why-choose-box:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .why-choose-box i {
            font-size: 3rem;
            color: var(--accent-color);
            margin-bottom: 25px;
            background-color: rgba(224, 175, 160, 0.1);
            width: 100px;
            height: 100px;
            line-height: 100px;
            border-radius: 50%;
            display: inline-block;
            transition: all 0.3s ease;
        }
        
        .why-choose-box:hover i {
            background-color: var(--accent-color);
            color: white;
            transform: scale(1.1);
        }
        
        .why-choose-box h4 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: var(--primary-color);
        }
        
        .why-choose-box p {
            color: var(--secondary-color);
            line-height: 1.6;
        }
        
        /* Services Section */
        .services-section {
            background-color: #f9f9f9;
        }
        
        .service-card {
            background-color: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background-color: var(--accent-color);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }
        
        .service-card:hover::before {
            transform: scaleX(1);
        }
        
        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
        }
        
        .service-img {
            height: 220px;
            overflow: hidden;
            position: relative;
        }
        
        .service-img::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.7) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .service-card:hover .service-img::after {
            opacity: 1;
        }
        
        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }
        
        .service-card:hover .service-img img {
            transform: scale(1.1);
        }
        
        .service-content {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-content h4 {
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--primary-color);
            font-size: 1.4rem;
        }
        
        .service-content p {
            color: var(--secondary-color);
            margin-bottom: 25px;
            flex-grow: 1;
            line-height: 1.6;
        }
        
        .service-content .btn {
            align-self: flex-start;
            padding: 8px 20px;
            font-size: 0.9rem;
            border-radius: 50px;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, rgba(70, 63, 58, 0.9), rgba(70, 63, 58, 0.8)), url('https://images.pexels.com/photos/323780/pexels-photo-323780.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 50% 50%, rgba(224, 175, 160, 0.2) 0%, transparent 70%);
        }
        
        .cta-content {
            position: relative;
            z-index: 2;
        }
        
        .cta-content h2 {
            font-size: 2.8rem;
            margin-bottom: 25px;
        }
        
        .cta-content p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.9;
        }
        
        /* FAQ Section */
        .faq-section {
            background-color: #f9f9f9;
        }
        
        .accordion {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
        }
        
        .accordion-item {
            border: none;
            margin-bottom: 15px;
            border-radius: 10px !important;
            overflow: hidden;
        }
        
        .accordion-item:last-child {
            margin-bottom: 0;
        }
        
        .accordion-header {
            border-radius: 10px !important;
        }
        
        .accordion-button {
            background-color: white;
            color: var(--primary-color);
            font-weight: 600;
            font-size: 1.1rem;
            padding: 20px 25px;
            box-shadow: none;
            border-radius: 10px !important;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--accent-color);
            color: white;
            box-shadow: none;
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border: none;
        }
        
        .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23463f3a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
            transition: transform 0.3s ease;
        }
        
        .accordion-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
            transform: rotate(180deg);
        }
        
        .accordion-body {
            padding: 25px;
            color: var(--secondary-color);
            line-height: 1.7;
        }
        
        /* Reviews Section */
        .review-card {
            background-color: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            height: 100%;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .review-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 4rem;
            color: var(--accent-color);
            opacity: 0.2;
            font-family: 'Playfair Display', serif;
        }
        
        .review-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .review-card .rating {
            color: #ffc107;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        .review-card p {
            font-style: italic;
            color: var(--secondary-color);
            margin-bottom: 25px;
            line-height: 1.7;
            position: relative;
            z-index: 1;
        }
        
        .reviewer {
            display: flex;
            align-items: center;
        }
        
        .reviewer-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 20px;
            border: 3px solid var(--background-color);
        }
        
        .reviewer-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .reviewer-info h5 {
            margin-bottom: 5px;
            font-size: 1.1rem;
            color: var(--primary-color);
        }
        
        .reviewer-info span {
            font-size: 0.9rem;
            color: var(--secondary-color);
        }
        
        /* Newsletter Section */
        .newsletter-section {
            background-color: var(--primary-color);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .newsletter-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 70% 30%, rgba(224, 175, 160, 0.2) 0%, transparent 70%);
        }
        
        .newsletter-content {
            position: relative;
            z-index: 2;
        }
        
        .newsletter-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: rgba(255, 255, 255, 0.1);
            padding: 40px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }
        
        .newsletter-form input {
            padding: 15px 25px;
            border: none;
            border-radius: 50px;
            margin-bottom: 20px;
            background-color: rgba(255, 255, 255, 0.9);
            color: var(--primary-color);
            font-weight: 500;
        }
        
        .newsletter-form input::placeholder {
            color: var(--secondary-color);
        }
        
        .newsletter-form button {
            width: 100%;
            padding: 15px;
            border: none;
            border-radius: 50px;
            background-color: var(--accent-color);
            color: white;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .newsletter-form button:hover {
            background-color: white;
            color: var(--primary-color);
        }
        
        /* Contact Section */
        .contact-section {
            background-color: #f9f9f9;
        }
        
        .contact-info-box {
            background-color: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .contact-info-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background-color: var(--accent-color);
        }
        
        .contact-info-box h4 {
            margin-bottom: 30px;
            color: var(--primary-color);
            font-size: 1.6rem;
        }
        
        .contact-info-box p {
            margin-bottom: 15px;
            color: var(--secondary-color);
            display: flex;
            align-items: flex-start;
            line-height: 1.6;
        }
        
        .contact-info-box i {
            font-size: 1.3rem;
            color: var(--accent-color);
            margin-right: 15px;
            margin-top: 3px;
        }
        
        .contact-form {
            background-color: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
        }
        
        .contact-form input, .contact-form textarea {
            margin-bottom: 20px;
            border: 1px solid #eee;
            border-radius: 10px;
            padding: 15px 20px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .contact-form input:focus, .contact-form textarea:focus {
            border-color: var(--accent-color);
            box-shadow: 0 0 0 0.25rem rgba(224, 175, 160, 0.1);
        }
        
        .contact-form button {
            padding: 15px 30px;
            border: none;
            border-radius: 50px;
            background-color: var(--accent-color);
            color: white;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .contact-form button:hover {
            background-color: var(--primary-color);
            transform: translateY(-3px);
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 80px 0 30px;
            position: relative;
            overflow: hidden;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 70%, rgba(224, 175, 160, 0.1) 0%, transparent 70%);
        }
        
        .footer-content {
            position: relative;
            z-index: 2;
        }
        
        footer h5 {
            font-size: 1.3rem;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
            font-family: 'Poppins', sans-serif;
        }
        
        footer h5::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background-color: var(--accent-color);
        }
        
        footer p {
            line-height: 1.7;
            opacity: 0.9;
            margin-bottom: 25px;
        }
        
        footer ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        footer ul li {
            margin-bottom: 12px;
        }
        
        footer ul li a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            position: relative;
        }
        
        footer ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background-color: var(--accent-color);
            transition: width 0.3s ease;
        }
        
        footer ul li a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }
        
        footer ul li a:hover::after {
            width: 100%;
        }
        
        .footer-newsletter input {
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            padding: 15px 20px;
            border-radius: 50px;
            margin-bottom: 20px;
            width: 100%;
            transition: all 0.3s ease;
        }
        
        .footer-newsletter input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .footer-newsletter input:focus {
            background-color: rgba(255, 255, 255, 0.2);
            border-color: var(--accent-color);
            box-shadow: 0 0 0 0.25rem rgba(224, 175, 160, 0.2);
        }
        
        .footer-newsletter button {
            background-color: var(--accent-color);
            border: none;
            color: white;
            padding: 15px 25px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            width: 100%;
        }
        
        .footer-newsletter button:hover {
            background-color: white;
            color: var(--primary-color);
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            margin-top: 60px;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            position: relative;
            z-index: 2;
        }
        
        .copyright a {
            color: var(--accent-color);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .copyright a:hover {
            text-decoration: underline;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero-content h1 {
                font-size: 3rem;
            }
            
            .section-title {
                font-size: 2.3rem;
            }
            
            .about-content {
                padding-left: 0;
                margin-top: 40px;
            }
        }
        
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .navbar-nav .nav-item {
                margin: 8px 0;
            }
            
            .navbar-nav {
                text-align: center;
            }
            
            .btn-cta {
                margin-top: 15px;
            }
            
            .hero-image {
                margin-top: 40px;
                transform: translateY(0);
            }
            
            .cta-content h2 {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .section-subtitle {
                font-size: 1rem;
            }
            
            .counter {
                font-size: 2.5rem;
            }
            
            .newsletter-form {
                padding: 25px;
            }
        }
