
        body { font-family: Arial, sans-serif; }
        
        /* Hero Carousel Styles */
        .hero-carousel {
            position: relative;
            height: 90vh;
            overflow: hidden;
        }
        
        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
        }
        
        .hero-slide.active {
            opacity: 1;
        }
        
        .hero-slide::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(47, 54, 51, 0.6);
        }
        
        .hero-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            z-index: 10;
            width: 90%;
            max-width: 800px;
        }
        
        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
            opacity: 0;
            transform: translateY(30px);
            animation: slideInUp 1s ease-out 0.5s forwards;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            line-height: 1.6;
            opacity: 0;
            transform: translateY(30px);
            animation: slideInUp 1s ease-out 1s forwards;
        }
        
        .hero-buttons {
            opacity: 0;
            transform: translateY(30px);
            animation: slideInUp 1s ease-out 1.5s forwards;
        }
        
        .hero-buttons .btn {
            background: #B9926B;
            border: 2px solid white;
            border-radius: 25px;
            padding: 12px 40px;
            margin: 0 10px;
            color: white;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }
        
        .hero-buttons .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(185, 146, 107, 0.3);
        }
        
        .hero-buttons .btn-outline-light {
            background: transparent;
            border: 2px solid white;
            color: white;
        }
        
        .hero-buttons .btn-outline-light:hover {
            background: #B9926B;
            border-color: #B9926B;
            color: white;
        }
        
        /* Carousel Navigation */
        .carousel-nav {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 15;
        }
        
        .nav-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .nav-dot.active {
            background: #B9926B;
            transform: scale(1.2);
        }
        
        .carousel-arrows {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 15;
        }
        
        .carousel-arrows.prev {
            left: 30px;
        }
        
        .carousel-arrows.next {
            right: 30px;
        }
        
        .carousel-arrows button {
            background: rgba(185, 146, 107, 0.8);
            border: none;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 18px;
            transition: all 0.3s ease;
        }
        
        .carousel-arrows button:hover {
            background: #B9926B;
            transform: scale(1.1);
        }
        
        @keyframes slideInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Slide Indicators */
        .slide-counter {
            position: absolute;
            top: 30px;
            right: 30px;
            color: white;
            font-size: 1rem;
            z-index: 15;
            background: rgba(0, 0, 0, 0.3);
            padding: 8px 16px;
            border-radius: 20px;
        }
        
        /* Rest of your existing styles */
        .featured-project {
            background-color: #2F3633;
            color: #f8f8f8;
            padding: 50px;
        }
        .featured-projects img { width: 100%; height: auto; border-radius: 50px; padding: 20px;}
        .contact-form { background: #f4f4f4; padding: 30px; border-radius: 10px; }
        .footer { background: #3b2e25; color: white; padding: 20px 0; }
        .footer a { color: #d4a373; }
        .call{ padding-bottom: 100px;}
        .contact{background-color: #B9926B; height: 396px; padding: 30px;}
        
        a{text-decoration: none; color: white;}
        img {
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }
        
        img:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }
        
        /* Image Preview Overlay Styles */
        .image-preview-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 1000;
            display: none;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .image-preview-overlay.active {
            display: flex;
            opacity: 1;
        }
        
        .preview-content {
            position: relative;
            max-width: 30%;
            max-height: 80%;
            background: black;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            transform: scale(0.8);
            transition: transform 0.3s ease;
        }
        
        .image-preview-overlay.active .preview-content {
            transform: scale(1);
        }
        
        .preview-header {
            background: #2F3633;
            color: white;
            padding: 20px;
            text-align: center;
            position: relative;
        }
        
        .preview-header h3 {
            margin: 0;
            font-size: 1.5rem;
            color: #B9926B;
        }
        
        .preview-close {
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease;
        }
        
        .preview-close:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        .preview-description {
            padding: 20px;
            background: #f8f9fa;
            text-align: center;
            color: #2F3633;
        }
        
        .preview-description p {
            margin: 0;
            font-size: 1rem;
            line-height: 1.6;
        }
        
        /* Clickable image effect */
        .featured-projects img {
            cursor: pointer;
            position: relative;
        }
        
        .featured-projects .col-md-4 {
            position: relative;
        }
        
        .featured-projects .col-md-4::after {
            content: "👁️ Click to view";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(185, 146, 107, 0.9);
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
            font-size: 0.9rem;
            white-space: nowrap;
        }
        
        .featured-projects .col-md-4:hover::after {
            opacity: 1;
        }
        
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .hero-content p {
                font-size: 1rem;
            }
            
            .hero-buttons .btn {
                padding: 10px 30px;
                margin: 5px;
                display: block;
                margin-bottom: 10px;
            }
            
            .carousel-arrows {
                display: none;
            }
            
            .preview-content {
                max-width: 95%;
                max-height: 95%;
            }
            
            .preview-header h3 {
                font-size: 1.2rem;
            }
            
            .featured-projects .col-md-4::after {
                font-size: 0.8rem;
                padding: 8px 15px;
            }
        }
