
        :root {
            --primary: #6b4f4f;
            --secondary: #e8c4c4;
            --accent: #c48f65;
            --light: #f9f1f0;
            --dark: #3a2e2e;
            --white: #ffffff;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--dark);
            background-color: var(--light);
            overflow-x: hidden;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            line-height: 1.3;
        }
        
        a{
            text-decoration:none;
        }
        
        .logo {
            font-family: 'Dancing Script', cursive;
            font-size: 2.5rem;
            color: var(--primary);
        }
        
        /* Global Section Styling */
        .section {
            padding: 80px 0;
            position: relative;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            bottom: 0;
            left: 25%;
            background-color: var(--accent);
        }
        
        .section-title p.subtitle {
            font-size: 1.2rem;
            color: var(--accent);
            font-style: italic;
            margin-top: 15px;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--accent);
            color: var(--white);
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid var(--accent);
        }
        
        .btn:hover {
            background-color: transparent;
            color: var(--accent);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        /* Background Patterns */
        .bg-pattern {
            background-image: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-attachment: fixed;
            background-position: center;
            position: relative;
        }
        
        .bg-pattern::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(249, 241, 240, 0.85);
        }
        
        .bg-dark {
            background-color: var(--primary);
            color: var(--white);
        }
        
        .bg-light {
            background-color: var(--light);
        }
        
        .bg-accent {
            background-color: var(--accent);
            color: var(--white);
        }
        
        /* Navbar */
        header {
            background-color: rgba(255, 255, 255, 0.9);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.3s ease;
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        header.scrolled {
            background-color: rgba(255, 255, 255, 0.98);
            padding: 10px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
            position: relative;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            transition: color 0.3s ease;
            position: relative;
        }
        
        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover:after {
            width: 100%;
        }
        
        .nav-links a:hover {
            color: var(--accent);
        }
        
        .hamburger {
            display: none;
            cursor: pointer;
        }
        
        .hamburger div {
            width: 25px;
            height: 3px;
            background-color: var(--dark);
            margin: 5px;
            transition: all 0.3s ease;
        }

        /* Dropdown Styles */
        .dropdown {
            position: relative;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--white);
            width: 200px;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 1000;
            list-style: none;
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu li {
            padding: 0;
            margin: 0;
        }

        .dropdown-menu a {
            display: block;
            padding: 10px 15px;
            color: var(--dark);
            transition: all 0.3s ease;
        }

        .dropdown-menu a:hover {
            background-color: var(--secondary);
            color: var(--primary);
            padding-left: 20px;
        }

        /* Hero Section */
        .hero-slider {
            height: 100vh;
            position: relative;
            overflow: hidden;
        }

        .slider-container {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(58, 46, 46, 0.5);
        }

        .slide.active {
            opacity: 1;
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            color: var(--white);
            max-width: 1200px;
            padding: 0 20px;
        }

        .hero-content h1 {
            font-size: 5rem;
            margin-bottom: 20px;
            font-family: 'Dancing Script', cursive;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            animation: fadeIn 1.5s ease;
        }

        .hero-content p {
            font-size: 1.5rem;
            max-width: 700px;
            margin: 0 auto 30px;
            animation: fadeIn 2s ease;
        }

        /* Slider Controls */
        .slider-controls {
            position: absolute;
            bottom: 50px;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 10;
            gap: 20px;
        }

        .slider-controls button {
            background: rgba(255, 255, 255, 0.3);
            border: none;
            color: var(--white);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slider-controls button:hover {
            background: var(--accent);
        }

        .slider-dots {
            display: flex;
            gap: 10px;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slider-dot.active {
            background: var(--white);
            transform: scale(1.2);
        }

        /* About Section */
        .about-content {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 40px;
        }

        .about-text {
            flex: 1;
            min-width: 300px;
        }

        .about-text h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--primary);
            position: relative;
            padding-bottom: 15px;
        }

        .about-text h3:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            bottom: 0;
            left: 0;
            background-color: var(--accent);
        }

        .about-text p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .hidden-text {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
        }

        .hidden-text.active {
            max-height: 1000px;
        }

        .read-more-btn {
            background: transparent;
            border: 2px solid var(--accent);
            color: var(--accent);
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 15px;
        }

        .read-more-btn:hover {
            background: var(--accent);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(196, 143, 101, 0.3);
        }

        .read-more-btn i {
            transition: transform 0.3s ease;
        }

        .read-more-btn.active i {
            transform: rotate(180deg);
        }

        .about-image {
            flex: 1;
            min-width: 300px;
            position: relative;
        }

        .image-frame {
            position: absolute;
            width: 100%;
            height: 100%;
            border: 10px solid var(--secondary);
            border-radius: 10px;
            top: -20px;
            left: -20px;
            z-index: 0;
        }

        .about-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 10px;
            position: relative;
            z-index: 1;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .about-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .feature {
            text-align: center;
            padding: 20px 15px;
            background: rgba(232, 196, 196, 0.3);
            border-radius: 10px;
            transition: transform 0.3s ease;
        }

        .feature:hover {
            transform: translateY(-5px);
        }

        .feature i {
            font-size: 2rem;
            color: var(--accent);
            margin-bottom: 10px;
        }

        .feature h4 {
            font-size: 1rem;
            color: var(--primary);
        }

        /* Services Section */
        .services-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            perspective: 1000px;
        }

        .flip-card {
            background-color: transparent;
            height: 300px;
            perspective: 1000px;
        }

        .flip-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            transition: transform 0.8s;
            transform-style: preserve-3d;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-radius: 15px;
        }

        .flip-card:hover .flip-card-inner {
            transform: rotateY(180deg);
        }

        .flip-card-front, .flip-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            border-radius: 15px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 30px;
            text-align: center;
        }

        .flip-card-front {
            background-color: var(--white);
            color: var(--primary);
        }

        .flip-card-back {
            background-color: var(--primary);
            color: var(--white);
            transform: rotateY(180deg);
        }

        .flip-card-back h3 {
            color: var(--white);
            margin-bottom: 15px;
        }

        .flip-card-back p {
            margin-bottom: 20px;
        }

        .service-icon {
            font-size: 3.5rem;
            color: var(--accent);
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .flip-card-front h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .btn-small {
            padding: 8px 20px;
            font-size: 0.9rem;
            margin-top: 10px;
        }

        /* Why Choose Us Section */
        .why-choose-content {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 40px;
        }

        .why-choose-text {
            flex: 1;
            min-width: 300px;
        }

        .why-choose-text h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--primary);
            position: relative;
            padding-bottom: 15px;
        }

        .why-choose-text h2:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            bottom: 0;
            left: 0;
            background-color: var(--accent);
        }

        .feature-item {
            display: flex;
            margin-bottom: 20px;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: var(--primary);
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .why-choose-image {
            flex: 1;
            min-width: 300px;
            position: relative;
        }

        .why-choose-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        /* CTA Banner */
        .cta-banner {
            position: relative;
            padding: 100px 20px;
            text-align: center;
            border-radius: 10px;
            overflow: hidden;
            margin: 80px 0;
        }

        .cta-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(107, 79, 79, 0.7);
        }

        .cta-content {
            position: relative;
            z-index: 2;
            color: var(--white);
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-title {
            font-size: 2.5rem;
            margin-bottom: 20px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        }

        .cta-text {
            font-size: 1.3rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
        }

        /* Portfolio Section */
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 20px;
        }

        .portfolio-item {
            height: 250px;
            position: relative;
            overflow: hidden;
            border-radius: 10px;
        }

        .portfolio-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(107, 79, 79, 0.8);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            color: var(--white);
            padding: 20px;
            text-align: center;
        }

        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }

        .portfolio-item:hover .portfolio-img {
            transform: scale(1.1);
        }

        /* Associates Section */
        .client-logos {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 40px;
            margin-top: 50px;
        }

        .client-logo {
            height: 80px;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .client-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
        }

        /* Testimonials */
        .testimonials-slider {
            position: relative;
            overflow: hidden;
            margin: 0 auto;
        }

        .testimonial-slide {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .testimonial-slide.active {
            display: block;
        }

        .testimonial-content {
            background: var(--white);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        .quote-icon {
            color: var(--secondary);
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .testimonial-text {
            font-size: 1.1rem;
            margin-bottom: 30px;
            font-style: italic;
        }

        .client-info {
            display: flex;
            align-items: center;
        }

        .client-photo {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 20px;
            border: 3px solid var(--secondary);
        }

        .client-name {
            color: var(--primary);
            margin-bottom: 5px;
        }

        .client-title {
            color: var(--accent);
            font-size: 0.9rem;
        }

        /* Contact Section */
        .contact-container {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .contact-info {
            flex: 1;
            min-width: 300px;
            padding: 50px;
            background: var(--primary);
            color: var(--white);
        }

        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }

        .contact-info h3:after {
            content: '';
            position: absolute;
            width: 60px;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent);
        }

        .detail-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }

        .icon-box {
            width: 50px;
            height: 50px;
            background: rgba(196, 143, 101, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .icon-box i {
            color: var(--accent);
            font-size: 1.2rem;
        }

        .contact-form {
            flex: 1;
            min-width: 300px;
            padding: 50px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--primary);
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--secondary);
            border-radius: 8px;
            font-family: inherit;
            transition: all 0.3s ease;
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

     
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-content h1 {
                font-size: 4rem;
            }
            
            .about-content, .why-choose-content {
                flex-direction: column;
            }
            
            .about-text, .why-choose-text {
                margin-bottom: 40px;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                position: absolute;
                right: 0;
                top: 80px;
                background-color: var(--white);
                width: 100%;
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                transform: translateY(-150%);
                transition: transform 0.3s ease;
            }
            
            .nav-links.active {
                transform: translateY(0);
            }
            
            .nav-links li {
                margin: 15px 0;
            }
            
            .hamburger {
                display: block;
            }
            
            .hamburger.active div:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }
            
            .hamburger.active div:nth-child(2) {
                opacity: 0;
            }
            
            .hamburger.active div:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }
            
            .hero-content h1 {
                font-size: 3rem;
            }
            
            .hero-content p {
                font-size: 1.2rem;
            }
            
            .section {
                padding: 70px 0;
            }
            
            .dropdown-menu {
                position: static;
                width: 100%;
                box-shadow: none;
                opacity: 1;
                visibility: visible;
                transform: none;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }
            
            .dropdown.active .dropdown-menu {
                max-height: 500px;
            }
            
            .dropdown > a {
                display: flex;
                justify-content: space-between;
                align-items: center;
            }
            
            .dropdown > a i {
                transition: transform 0.3s ease;
            }
            
            .dropdown.active > a i {
                transform: rotate(180deg);
            }
            
            .flip-card {
                height: 250px;
            }
            
            .flip-card-inner {
                transition: transform 0.6s;
            }
            
            .flip-card.active .flip-card-inner {
                transform: rotateY(180deg);
            }
            
            .service-icon {
                font-size: 3rem;
            }
            
            .flip-card-front h3, .flip-card-back h3 {
                font-size: 1.3rem;
            }
            
            .cta-title {
                font-size: 2rem;
            }
            
            .cta-text {
                font-size: 1.1rem;
            }
            
            .cta-button {
                padding: 14px 35px;
            }
        }
        
        @media (max-width: 576px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .btn {
                padding: 10px 25px;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .portfolio-grid {
                grid-template-columns: 1fr;
            }
            
            .image-frame {
                display: none;
            }
            
            .about-features {
                grid-template-columns: 1fr;
            }
            
            .testimonial-content {
                padding: 25px 20px;
            }
            
            .client-info {
                flex-direction: column;
                text-align: center;
            }
            
            .client-photo {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .cta-title {
                font-size: 1.8rem;
            }
        }
        
        
        /*about us*/
        /* About Page Specific Styles */
        .about-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                        url('https://images.unsplash.com/photo-1616486338812-3dadae4b4ace?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            height: 60vh;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
            position: relative;
        }
        
        .about-hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .about-hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .breadcrumb {
            padding: 20px 0;
            background: #f8f9fa;
        }
        
        .breadcrumb a {
            color: #6b4f4f;
            text-decoration: none;
        }
        
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        
        .breadcrumb span {
            margin: 0 10px;
            color: #c48f65;
        }
        
        .our-story {
            padding: 80px 0;
            background: white;
        }
        
        .story-content {
            display: flex;
            align-items: center;
            gap: 50px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .story-text {
            flex: 1;
        }
        
        .story-image {
            flex: 1;
            position: relative;
        }
        
        .story-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .story-image::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border: 5px solid #c48f65;
            border-radius: 10px;
            top: -20px;
            left: -20px;
            z-index: -1;
        }
        
        .milestones {
            background: #f8f9fa;
            padding: 80px 0;
        }
        
        .milestone-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .milestone-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }
        
        .milestone-card:hover {
            transform: translateY(-10px);
        }
        
        .milestone-icon {
            font-size: 2.5rem;
            color: #c48f65;
            margin-bottom: 20px;
        }
        
        .team-section {
            padding: 80px 0;
            background: white;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .team-member {
            text-align: center;
        }
        
        .team-member img {
            width: 100%;
            border-radius: 10px;
            margin-bottom: 20px;
            transition: transform 0.3s ease;
        }
        
        .team-member:hover img {
            transform: scale(1.05);
        }
        
        .team-social {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 15px;
        }
        
        .team-social a {
            color: #6b4f4f;
            transition: color 0.3s ease;
        }
        
        .team-social a:hover {
            color: #c48f65;
        }
        
        .philosophy {
            background: #f8f9fa;
            padding: 80px 0;
        }
        
        .philosophy-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            gap: 50px;
            align-items: center;
        }
        
        .philosophy-image {
            flex: 1;
        }
        
        .philosophy-image img {
            width: 100%;
            border-radius: 10px;
        }
        
        .philosophy-text {
            flex: 1;
        }
        
        .values-list {
            margin-top: 30px;
        }
        
        .value-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        
        .value-icon {
            color: #c48f65;
            font-size: 1.5rem;
            margin-right: 15px;
            margin-top: 5px;
        }
        
        @media (max-width: 768px) {
            .story-content, .philosophy-content {
                flex-direction: column;
            }
            
            .story-image::before {
                display: none;
            }
            
            .about-hero h1 {
                font-size: 2.5rem;
            }
        }
        
        /*service page*/
        /* Service Page Layout */
.service-page-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    min-height: 100vh;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
}

.services-sidebar {
    background: #f8f9fa;
    padding: 40px 25px;
    border-right: 1px solid #eaeaea;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.service-content-area {
    padding: 40px 60px;
}

/* Typography */
.sidebar-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #6b4f4f;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #c48f65;
}

.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #6b4f4f;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-subtitle {
    font-size: 1.2rem;
    color: #777;
    margin-bottom: 40px;
}

.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #6b4f4f;
    margin: 50px 0 20px;
    position: relative;
}

.section-heading:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #c48f65;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #777;
    margin-bottom: 30px;
}

/* Services Menu */
.services-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}

.services-menu li {
    margin-bottom: 12px;
}

.services-menu a {
    display: block;
    padding: 12px 15px;
    color: #6b4f4f;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.services-menu a:hover {
    background: rgba(196, 143, 101, 0.1);
}

.services-menu .active a {
    background: #c48f65;
    color: white;
}

/* Content Styling */
.service-hero {
    margin-bottom: 50px;
}

.service-details {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
}

.service-image-wrapper {
    flex: 1;
}

.service-image-wrapper img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.image-caption {
    margin-top: 10px;
    font-style: italic;
    color: #777;
    font-size: 0.9rem;
    text-align: center;
}

.service-description {
    flex: 1;
}

.service-highlights {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.highlight-item {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
}

.highlight-icon {
    font-size: 1.8rem;
    color: #c48f65;
    margin-bottom: 15px;
}

/* Process Steps */
.process-steps {
    margin-top: 40px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px dashed #ddd;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #c48f65;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.portfolio-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #c48f65;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #b07d54;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid #c48f65;
    color: #6b4f4f;
}

.btn-outline:hover {
    background: rgba(196, 143, 101, 0.1);
}

/* Sidebar CTA */
.sidebar-cta {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-top: 40px;
}

.sidebar-cta h4 {
    margin-bottom: 15px;
    color: #6b4f4f;
}

/* Responsive */
@media (max-width: 1024px) {
    .service-page-container {
        grid-template-columns: 1fr;
    }
    
    .services-sidebar {
        height: auto;
        position: static;
        border-right: none;
        border-bottom: 1px solid #eaeaea;
    }
    
    .service-details {
        flex-direction: column;
    }
    
    .service-highlights {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-content-area {
        padding: 30px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .service-title {
        font-size: 2.2rem;
    }
}
