
        body {
            font-family: 'Poppins', sans-serif;
            background-color: #ffffff;
            color: #463f3a;
        }

        section{
            margin-top:80px;
            margin-bottom:80px;
        }
        
        .navbar {
            padding: 20px 0;
            transition: all 0.3s ease;
        }
        
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://plus.unsplash.com/premium_photo-1661908759956-93c29efea72b?fm=jpg&q=60&w=3000&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8NXx8bGlmZSUyMGluc3VyYW5jZXxlbnwwfHwwfHx8MA%3D%3D');
            background-size: cover;
            background-position: center;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 50px;
            text-align: center;
        }
        
        .section-title::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: #e0afa0;
        }
        
        .counter-box {
            text-align: center;
            padding: 40px 20px;
        }
        
        .counter-number {
            font-size: 48px;
            font-weight: 700;
            color: #8a817c;
        }
        
        .counter-text {
            font-size: 16px;
            color: #463f3a;
        }
        
        .why-choose-us-item {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        
        .why-choose-us-item:hover {
            background-color: #f8f5f2;
            transform: translateY(-5px);
        }
        
        .why-choose-us-icon {
            font-size: 48px;
            color: #e0afa0;
            margin-bottom: 20px;
        }
        
        .service-card {
            background-color: #f8f5f2;
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .service-image {
            height:300px;
            object-fit: cover;
        }
        
        .review-item {
            background-color: #f8f5f2;
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 20px;
        }
        
        .faq-item {
            border: none;
            border-bottom: 1px solid #e0afa0;
        }
        
        .footer {
            background-color: #f8f5f2;
            padding: 70px 0 30px;
        }
        
        .footer h5 {
            color: #8a817c;
            font-weight: 600;
            margin-bottom: 25px;
        }
        
        .footer ul {
            list-style: none;
            padding-left: 0;
        }
        
        .footer ul li {
            margin-bottom: 10px;
        }
        
        .footer ul li a {
            color: #463f3a;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer ul li a:hover {
            color: #e0afa0;
        }
        
        .copyright {
            border-top: 1px solid #e0afa0;
            padding-top: 20px;
            margin-top: 40px;
        }
        
        .btn-primary {
            background-color: #e0afa0;
            border-color: #e0afa0;
            color: white;
            border-radius: 30px;
            padding: 10px 25px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background-color: #d09a8c;
            border-color: #d09a8c;
            color: white;
            transform: translateY(-2px);
        }
        
        .btn-outline-primary {
            border-color: #e0afa0;
            color: #e0afa0;
            border-radius: 30px;
            padding: 10px 25px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .btn-outline-primary:hover {
            background-color: #e0afa0;
            color: white;
        }

        .bg-light{
            padding:100px !important;
        }

        .section-title{
            margin-bottom:100px !important;
        }
