
        :root {
            --primary-color: #FFB74D;
            --secondary-color: #8D6E63;
            --light-bg: #FFF3E0;
            --white: #FFFFFF;
            --dark-text: #333333;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark-text);
            line-height: 1.6;
        }
        
        /* Navbar Styles */
        .navbar {
            padding: 1rem 0;
            background: transparent !important;
            box-shadow: none;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: bold;
            font-size: 1.5rem;
            color: var(--secondary-color) !important;
        }
        
        .navbar-brand i {
            font-size: 2rem;
            color: var(--primary-color);
            margin-right: 0.5rem;
        }
        
        .navbar-nav .nav-link {
            color: var(--secondary-color) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: color 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: width 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .nav-item{
            margin-left:30px !important;
        }

        .btn-cta {
            background: var(--primary-color);
            color: var(--white);
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-cta:hover {
            background: var(--secondary-color);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(141, 110, 99, 0.3);
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
            opacity: 0.1;
            border-radius: 50%;
        }
        
        .hero-content h1 {
            font-size:4.5rem;
            font-weight: bold;
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            color: var(--dark-text);
            margin-bottom: 2rem;
        }
        
        .hero-image {
            position: relative;
        }
        
        .hero-image img {
            width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        
        /* Section Styles */
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--secondary-color);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--primary-color);
        }
        
        /* About Section */
        .about-section {
            background: var(--white);
        }
        
        .about-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .about-content {
            padding: 2rem;
        }
        
        .about-content h3 {
            color: var(--secondary-color);
            font-weight: bold;
            margin-bottom: 1.5rem;
        }
        
        /* Counter Section */
        .counter-section {
            background: var(--secondary-color);
            color: var(--white);
            padding: 60px 0;
        }
        
        .counter-box {
            text-align: center;
            padding: 2rem;
        }
        
        .counter-box i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .counter-box h3 {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }
        
        .counter-box p {
            font-size: 1.1rem;
            margin: 0;
        }
        
        /* Vision Mission */
        .vision-mission-card {
            background: var(--light-bg);
            padding: 2rem;
            border-radius: 15px;
            height: 100%;
            transition: transform 0.3s ease;
        }
        
        .vision-mission-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .vision-mission-card i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        /* Why Choose Us */
        .feature-box {
            text-align: center;
            padding: 2rem;
            background: var(--white);
            border-radius: 15px;
            height: 100%;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .feature-box:hover {
            border-color: var(--primary-color);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(255, 183, 77, 0.2);
        }
        
        .feature-box i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .feature-box h4 {
            color: var(--secondary-color);
            font-weight: bold;
            margin-bottom: 1rem;
        }
        
        /* Work Process */
        .process-step {
            text-align: center;
            position: relative;
            padding: 2rem;
        }
        
        .process-step::after {
            content: '';
            position: absolute;
            top: 50%;
            right: -50%;
            width: 100%;
            height: 2px;
            background: var(--primary-color);
            opacity: 0.3;
            z-index: -1;
        }
        
        .process-step:last-child::after {
            display: none;
        }
        
        .process-icon {
            width: 80px;
            height: 80px;
            background: var(--primary-color);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 2rem;
            transition: all 0.3s ease;
        }
        
        .process-step:hover .process-icon {
            background: var(--secondary-color);
            transform: scale(1.1);
        }
        
        /* Services Section */
        .services-section {
            background: var(--light-bg);
        }
        
        .service-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            height: 100%;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .service-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .service-card-body {
            padding: 1.5rem;
        }
        
        .service-card-body h4 {
            color: var(--secondary-color);
            font-weight: bold;
            margin-bottom: 1rem;
        }
        
        /* Reviews Section */
        .review-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            height: 100%;
            transition: transform 0.3s ease;
        }
        
        .review-card:hover {
            transform: translateY(-5px);
        }
        
        .review-stars {
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .review-author {
            display: flex;
            align-items: center;
            margin-top: 1.5rem;
        }
        
        .review-author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 1rem;
        }
        
        /* FAQ Section */
        .faq-section {
            background: var(--light-bg);
        }
        
        .accordion-button {
            background: var(--white);
            color: var(--secondary-color);
            font-weight: 600;
            border: none;
            box-shadow: none;
        }
        
        .accordion-button:not(.collapsed) {
            background: var(--primary-color);
            color: var(--white);
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--primary-color);
        }
        
        .accordion-item {
            border: none;
            margin-bottom: 1rem;
            border-radius: 10px !important;
            overflow: hidden;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
            color: var(--white);
            padding: 80px 0;
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }
        
        .btn-cta-white {
            background: var(--white);
            color: var(--secondary-color);
            padding: 0.75rem 2.5rem;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-cta-white:hover {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
            transform: translateY(-2px);
        }
        
        /* Contact Section */
        .contact-info-box {
            background: var(--white);
            padding: 2rem;
            border-radius: 15px;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .contact-info-box:hover {
            transform: translateX(5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .contact-info-box i {
            font-size: 2rem;
            color: var(--primary-color);
            margin-right: 1.5rem;
        }
        
        .contact-form {
            background: var(--white);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .form-control, .form-select {
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            padding: 0.75rem;
            transition: all 0.3s ease;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(255, 183, 77, 0.25);
        }
        
        /* Footer */
        footer {
            background: var(--secondary-color);
            color: var(--white);
            padding: 60px 0 20px;
        }
        
        .footer-widget h4 {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            font-weight: bold;
        }
        
        .footer-widget ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-widget ul li {
            margin-bottom: 0.75rem;
        }
        
        .footer-widget ul li a {
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-widget ul li a:hover {
            color: var(--primary-color);
        }
        
        .newsletter-form {
            display: flex;
            gap: 0.5rem;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 0.75rem;
            border: none;
            border-radius: 25px;
        }
        
        .newsletter-form button {
            padding: 0.75rem 1.5rem;
            background: var(--primary-color);
            color: var(--white);
            border: none;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .newsletter-form button:hover {
            background: var(--white);
            color: var(--secondary-color);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 3rem;
            padding-top: 2rem;
            text-align: center;
        }
        
        .footer-bottom a {
            color: var(--primary-color);
            text-decoration: none;
            margin: 0 0.5rem;
            transition: color 0.3s ease;
        }
        
        .footer-bottom a:hover {
            color: var(--white);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .process-step::after {
                display: none;
            }
            
            .navbar-nav {
                text-align: center;
                padding: 1rem 0;
            }
        }
