:root {
            --primary-color: #2d3748;
            --accent-color: #ed8936;
            --text-gray: #718096;
            --light-gray: #f7fafc;
            --border-gray: #e2e8f0;
            --bg-light: #f8f9fa;
            --shadow-light: 0 8px 25px rgba(0,0,0,0.08);
            --shadow-heavy: 0 20px 40px rgba(0,0,0,0.15);
            --transition: all 0.3s ease;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Inter', sans-serif; line-height: 1.6; }

        /* Header Top */
        .header-top { background-color: #4a5568; color: #fff; padding: 8px 0; font-size: 14px; }
        .social-links { display: flex; gap: 15px; align-items: center; }
        .social-links a { color: #a0aec0; font-size: 16px; transition: var(--transition); text-decoration: none; }
        .social-links a:hover { color: #fff; transform: translateY(-2px); }
        .contact-info { display: flex; gap: 30px; align-items: center; }
        .contact-info span { color: #a0aec0; font-size: 14px; display: flex; align-items: center; gap: 8px; }
        .book-appointment {
            background: linear-gradient(135deg, #f6ad55 0%, #ed8936 100%);
            color: #fff; padding: 8px 20px; text-decoration: none; font-weight: 600;
            font-size: 13px; letter-spacing: 0.5px; transition: var(--transition);
            border: none; text-transform: uppercase;
        }
        .book-appointment:hover {
            background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
            color: #fff; transform: translateY(-1px); box-shadow: 0 4px 8px rgba(237, 137, 54, 0.3);
        }

        /* Main Header */
        .main-header {
            background-color: #fff; box-shadow: var(--shadow-light); padding: 15px 0;
            position: sticky; top: 0; z-index: 1000; transition: var(--transition);
        }
        .main-header.scrolled { padding: 10px 0; box-shadow: var(--shadow-heavy); }

        /* Logo */
        .logo { display: flex; align-items: center; text-decoration: none; color: var(--primary-color); }
        .logo-icon {
            width: 45px; height: 45px; background: linear-gradient(135deg, #f6ad55 0%, #ed8936 100%);
            border-radius: 8px; display: flex; align-items: center; justify-content: center;
            margin-right: 12px; position: relative; overflow: hidden;
        }
        .logo-icon::before {
            content: '🏠'; position: absolute; top: 50%; left: 50%;
            transform: translate(-50%, -50%); font-size: 20px;
        }
        .logo-text { font-size: 28px; font-weight: 700; color: var(--primary-color); letter-spacing: -0.5px; }

        /* Navigation */
        .navbar-nav { gap: 40px; }
        .nav-link {
            color: #4a5568 !important; font-weight: 500; font-size: 15px; padding: 8px 0 !important;
            text-decoration: none; transition: var(--transition); position: relative;
            text-transform: uppercase; letter-spacing: 0.5px;
        }
        .nav-link:hover, .nav-link.active { color: var(--accent-color) !important; }
        .nav-link.active::after {
            content: ''; position: absolute; bottom: -5px; left: 0; width: 100%;
            height: 2px; background: var(--accent-color);
        }



        /* Hero Slider */
        .hero-slider { position: relative; height: 100vh; overflow: hidden; }
        .hero-slide {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            display: flex; opacity: 0; transform: translateX(100%); transition: all 1s ease;
        }
        .hero-slide.active { opacity: 1; transform: translateX(0); }

        .slide-left {
            width: 50%; background: var(--primary-color); display: flex; align-items: center;
             color: #fff; position: relative;
        }
        .slide-text { padding: 0 60px; }
        .slide-title { font-size: 2.5rem; font-weight: 700; line-height: 1.1; margin-bottom: 30px; }
        .slide-description { font-size: 1.1rem; color: rgba(255,255,255,0.85); margin-bottom: 40px; }
        .slide-button {
            background: #fff; color: var(--primary-color); padding: 16px 35px; border: none;
            border-radius: 50px; font-size: 14px; font-weight: 600; text-transform: uppercase;
            text-decoration: none; display: inline-flex; align-items: center; gap: 12px;
            transition: var(--transition); box-shadow: var(--shadow-light);
        }
        .slide-button:hover {
            background: #f8f9fa; color: var(--primary-color); transform: translateY(-3px);
            box-shadow: var(--shadow-heavy);
        }

        .slide-right { width: 50%; position: relative; overflow: hidden; }
        .slide-image { width: 100%; height: 100%; }
        .slide-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
        .slide-image:hover img { transform: scale(1.05); }

        /* Navigation */
        .slider-nav {
            position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
            display: flex; gap: 15px; z-index: 10;
        }
        .nav-arrow {
            width: 50px; height: 50px; background: rgba(255,255,255,0.9); border: none;
            border-radius: 50%; display: flex; align-items: center; justify-content: center;
            font-size: 16px; color: var(--primary-color); cursor: pointer;
            transition: var(--transition); box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        .nav-arrow:hover {
            background: #fff; transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .slide-indicators {
            position: absolute; bottom: 120px; left: 50%; transform: translateX(-50%);
            display: flex; gap: 10px; z-index: 10;
        }
        .indicator {
            width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.4);
            cursor: pointer; transition: var(--transition);
        }
        .indicator.active { background: #fff; transform: scale(1.2); }

        .progress-bar {
            position: absolute; bottom: 0; left: 0; height: 3px; background: var(--accent-color);
            width: 0%; transition: width 0.1s linear; z-index: 10;
        }

        /* About Section */
        .about-section {
            background: var(--bg-light); padding: 20px 0; position: relative; overflow: hidden;
        }
        .kitchen-image-container { position: relative; height: 600px; }
        .main-kitchen-image {
            width: 85%; height: 450px; object-fit: cover; border-radius: 20px;
            position: absolute; top: 50px; left: 0; z-index: 2; box-shadow: var(--shadow-heavy);
            transition: var(--transition);
        }
        .main-kitchen-image:hover { transform: scale(1.02) rotate(1deg); box-shadow: 0 25px 50px rgba(0,0,0,0.25); }
        .overlay-kitchen-image {
            width: 65%; height: 350px; object-fit: cover; border-radius: 20px;
            position: absolute; bottom: 30px; right: 0; z-index: 3;
            border: 8px solid white; box-shadow: 0 20px 40px rgba(0,0,0,0.3);
            transition: var(--transition);
        }
        .overlay-kitchen-image:hover { transform: translateY(-15px) scale(1.02); }

        .content-wrapper {
            padding-left: 60px; display: flex; flex-direction: column;
            justify-content: center; height: 600px;
        }
        .about-label {
            color: var(--accent-color); font-size: 14px; font-weight: 600;
            letter-spacing: 3px; text-transform: uppercase; margin-bottom: 25px;
            position: relative;
        }
        .about-label::after {
            content: ''; position: absolute; bottom: -8px; left: 0;
            width: 50px; height: 2px; background: var(--accent-color);
        }
        .main-title-works {
            color: var(--primary-color); font-size: 30px;
            font-weight: 700; line-height: 1.2; margin-bottom: 30px; max-width: 450px;
        }
        .description-text {
            color: var(--text-gray); font-size: 16px; line-height: 1.7;
            margin-bottom: 40px; max-width: 480px;
        }
        .continue-btn {
            background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
            color: white; border: none; padding: 18px 35px; border-radius: 50px;
            font-size: 14px; font-weight: 600; text-transform: uppercase;
            letter-spacing: 1px; display: inline-flex; align-items: center; gap: 12px;
            text-decoration: none; transition: var(--transition); width: fit-content;
        }
        .continue-btn:hover {
            color: white; transform: translateY(-3px); box-shadow: 0 15px 30px rgba(0,0,0,0.2);
            background: linear-gradient(135deg, var(--accent-color) 0%, #e67e22 100%);
        }

        /* Features Section */
        .features-container { background: white; padding: 80px 0; }
        .feature-item { text-align: left; padding: 0 30px; }
        .feature-icon-wrapper {
            width: 70px; height: 70px; background: var(--light-gray);
            border: 2px solid var(--border-gray); border-radius: 16px;
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 25px; transition: var(--transition);
        }
        .feature-item:hover .feature-icon-wrapper {
            transform: translateY(-5px) rotate(5deg); box-shadow: var(--shadow-light);
            border-color: var(--accent-color); background: var(--accent-color);
        }
        .feature-icon-wrapper i { font-size: 24px; color: var(--text-gray); transition: var(--transition); }
        .feature-item:hover .feature-icon-wrapper i { color: white; transform: scale(1.1); }
        .feature-title {
            color: var(--primary-color); font-size: 20px; font-weight: 600;
            margin-bottom: 15px; transition: var(--transition);
        }
        .feature-item:hover .feature-title { color: var(--accent-color); }
        .feature-desc { color: var(--text-gray); font-size: 15px; line-height: 1.6; }

        /* Responsive */
        @media (max-width: 991.98px) {
            .header-top { display: none; }
            .navbar-nav { gap: 0; margin-top: 20px; }
            .nav-link { padding: 12px 0 !important; border-bottom: 1px solid #e2e8f0; }
            .header-actions { margin-top: 20px; justify-content: center; }
            .logo-text { font-size: 24px; }
            .hero-slide { flex-direction: column; }
            .slide-left, .slide-right { width: 100%; height: 50%; }
            .slide-title { font-size: 2.8rem; }
            .slide-text { padding: 0 40px; }
            .content-wrapper { padding-left: 0; padding-top: 50px; height: auto; }
            .kitchen-image-container { height: 500px; margin-bottom: 30px; }
            .main-kitchen-image { width: 90%; height: 300px; top: 20px; }
            .overlay-kitchen-image { width: 70%; height: 250px; bottom: 20px; }
            .about-section { padding: 60px 0; }
        }

        @media (max-width: 767.98px) {
            .contact-info { flex-direction: column; gap: 10px; align-items: flex-start; }
            .social-links { gap: 10px; }
            .book-appointment { padding: 6px 16px; font-size: 12px; }
            .slide-title { font-size:25px; }
            .slide-text { padding: 0 30px; }
            .slide-description { font-size: 1rem; }
            .slide-button { padding: 14px 28px; font-size: 13px; }
            .nav-arrow { width: 45px; height: 45px; font-size: 14px; }
            .feature-item { padding: 0 15px; margin-bottom: 0px; }
            .main-title { font-size: 2rem; }
            .content-wrapper { padding-left: 20px; padding-right: 20px; }
        }

        /* Animations */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in { animation: fadeInUp 0.8s ease-out; }

         /* How We Works Section */
        .how-we-works {
            padding: 100px 0;
            background: #f8f9fa;
            position: relative;
            overflow: hidden;
        }

        .how-we-works::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 300px;
            height: 300px;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="lines" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 0,10 l 10,-10 M -2.5,2.5 l 5,-5 M 7.5,12.5 l 5,-5" stroke="rgba(237,137,54,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23lines)"/></svg>');
            opacity: 0.3;
            z-index: 0;
        }

        .container {
            position: relative;
            z-index: 1;
        }

        /* Section Label */
        .section-label {
            color: var(--accent-color);
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 25px;
            position: relative;
            animation: fadeInUp 0.8s ease-out;
        }

        .section-label::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--accent-color);
        }

        /* Main Title */
        .main-title {
            color: var(--primary-color);
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 30px;
            max-width: 500px;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        /* Description */
        .section-description {
            color: var(--text-gray);
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 60px;
            max-width: 450px;
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }

        /* Process Steps */
        .process-step {
            position: relative;
            height: 100%;
            animation: fadeInUp 0.8s ease-out forwards;
            opacity: 0;
            transform: translateY(30px);
        }

        .process-step:nth-child(1) { animation-delay: 0.6s; }
        .process-step:nth-child(2) { animation-delay: 0.8s; }
        .process-step:nth-child(3) { animation-delay: 1s; }

        .step-card {
            background: white;
            border-radius: 20px;
            padding: 0;
            overflow: hidden;
            box-shadow: var(--shadow-light);
            transition: var(--transition);
/*            height: 100%;*/
            position: relative;
            border: 1px solid var(--border-gray);
        }

        .step-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-heavy);
            border-color: var(--accent-color);
        }

        /* Step Image */
        .step-image {
            position: relative;
            height: 80px;
            overflow: hidden;
/*            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
        }

        .step-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .step-card:hover .step-image img {
            transform: scale(1.1);
        }

        /* Step Number */
        .step-number {
            position: absolute;
            top: 20px;
            left: 20px;
            width: 60px;
            height: 60px;
            background: rgba(237, 137, 54, 0.9);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 700;
            z-index: 2;
            backdrop-filter: blur(10px);
            border: 3px solid rgba(255, 255, 255, 0.3);
        }

        /* Step Content */
        .step-content {
            padding: 30px;
        }

        .step-title {
            color: var(--primary-color);
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
            transition: var(--transition);
        }

        .step-card:hover .step-title {
            color: var(--accent-color);
        }

        .step-description {
            color: var(--text-gray);
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        /* Read More Button */
        .read-more-btn {
            background: transparent;
            color: var(--accent-color);
            border: 2px solid var(--accent-color);
            padding: 12px 25px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .read-more-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--accent-color);
            transition: var(--transition);
            z-index: -1;
        }

        .read-more-btn:hover {
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(237, 137, 54, 0.3);
        }

        .read-more-btn:hover::before {
            left: 0;
        }

        .read-more-btn i {
            transition: var(--transition);
        }

        .read-more-btn:hover i {
            transform: translateX(3px);
        }

        /* Special styling for first step */
        .step-card.featured {
            background: var(--primary-color);
            color: white;
        }

        .step-card.featured .step-title {
            color: white;
        }

        .step-card.featured .step-description {
            color: rgba(255, 255, 255, 0.8);
        }

        .step-card.featured .read-more-btn {
            background: white;
            color: var(--primary-color);
            border-color: white;
        }

        .step-card.featured .read-more-btn:hover {
            background: var(--accent-color);
            color: white;
            border-color: var(--accent-color);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .how-we-works {
                padding: 60px 0;
            }
            
            .main-title {
                font-size: 2.5rem;
            }
            
           /* .step-image {
                height: 220px;
            }*/
        }

        @media (max-width: 768px) {
            .process-step {
                margin-bottom: 40px;
            }
            
            .step-content {
                padding: 25px;
            }
            
            .step-number {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
            
            .main-title {
                font-size: 2rem;
                margin-bottom: 20px;
            }
            
            .section-description {
                margin-bottom: 40px;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        /* Demo content for spacing */
        .demo-content {
            padding: 50px 0;
            text-align: center;
            background: white;
        }

        .demo-content h2 {
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .demo-content p {
            color: var(--text-gray);
            max-width: 600px;
            margin: 0 auto;
        }

     /*project*/
      /* Base Project Portfolio Styles */
        .project-portfolio-section {
            background: #fff;
            position: relative;
            overflow: hidden;
        }

        .project-portfolio-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1586023492125-27b2c045efd7?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            opacity: 0.05;
            z-index: 0;
        }

        .project-portfolio-container {
            position: relative;
            z-index: 1;
        }

        .project-section-label {
            color: #ed8936;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            position: relative;
            display: inline-block;
        }

        .project-section-label::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 2px;
            background: #ed8936;
        }

        /* Slider Container */
        .project-showcase-slider {
            position: relative;
            overflow: hidden;
            background: white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .project-slider-wrapper {
            position: relative;
            width: 100%;
            overflow: hidden;
        }

        .project-slider-track {
            display: flex;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
            will-change: transform;
        }

        .project-showcase-slide {
            min-width: 100%;
            height: 100%;
            position: relative;
            background: white;
        }

        .project-slide-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .project-showcase-slide:hover .project-slide-image img {
            transform: scale(1.05);
        }

        .project-slide-number {
            background: #ed8936;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            transition: all 0.3s ease;
        }

        .project-slide-category {
            color: #ed8936;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .project-slide-title {
            color: #2d3748;
            font-weight: 700;
            line-height: 1.2;
        }

        .project-slide-description {
            color: #718096;
            line-height: 1.7;
        }

        .project-meta-label {
            color: #718096;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .project-meta-value {
            color: #2d3748;
            font-weight: 600;
        }

        .project-stat-number {
            color: #ed8936;
            font-weight: 700;
        }

        .project-stat-label {
            color: #718096;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .project-view-btn {
            background: #ed8936;
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .project-view-btn:hover {
            background: #d67b2a;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(237, 137, 54, 0.3);
        }

        /* Navigation Buttons */
        .project-nav-btn {
            background: rgba(255, 255, 255, 0.9);
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2d3748;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            backdrop-filter: blur(10px);
        }

        .project-nav-btn:hover {
            background: white;
            transform: translateY(-2px);
            color: #ed8936;
        }

        /* Indicators */
        .project-indicator {
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .project-indicator.active {
            background: #ed8936;
            border-color: #ed8936;
            transform: scale(1.2);
        }

        /* Desktop Styles - Large screens (992px and up) */
        @media (min-width: 992px) {
            .project-portfolio-section {
                padding: 80px 0;
            }

            .project-showcase-slider {
                border-radius: 20px;
            }

            .project-slider-wrapper {
                height: 600px;
            }

            .project-slide-content {
                display: flex;
                height: 100%;
            }

            .project-slide-image {
                width: 60%;
                height: 100%;
                overflow: hidden;
            }

            .project-slide-info {
                width: 40%;
                padding: 50px;
                display: flex;
                flex-direction: column;
                justify-content: center;
            }

            .project-slide-number {
                position: absolute;
                top: 20px;
                right: 20px;
                width: 50px;
                height: 50px;
                font-size: 18px;
            }

            .project-section-label {
                font-size: 14px;
            }

            .project-slide-category {
                font-size: 14px;
                margin-bottom: 15px;
            }

            .project-slide-title {
                font-size: 2.2rem;
                margin-bottom: 20px;
            }

            .project-slide-description {
                font-size: 16px;
                margin-bottom: 25px;
            }

            .project-slide-meta {
                display: flex;
                gap: 25px;
                margin-bottom: 20px;
            }

            .project-meta-label {
                font-size: 12px;
                margin-bottom: 5px;
            }

            .project-meta-value {
                font-size: 14px;
            }

            .project-slide-stats {
                display: flex;
                gap: 20px;
                margin-bottom: 25px;
                padding-top: 20px;
                border-top: 1px solid #e2e8f0;
            }

            .project-stat-number {
                font-size: 20px;
                margin-bottom: 5px;
            }

            .project-stat-label {
                font-size: 12px;
            }

            .project-view-btn {
                padding: 15px 30px;
                font-size: 14px;
            }

            .project-slider-navigation {
                position: absolute;
                bottom: 30px;
                left: 50%;
                transform: translateX(-50%);
                display: flex;
                gap: 15px;
                z-index: 10;
            }

            .project-nav-btn {
                width: 50px;
                height: 50px;
                font-size: 16px;
            }

            .project-slider-indicators {
                position: absolute;
                bottom: 100px;
                left: 50%;
                transform: translateX(-50%);
                display: flex;
                gap: 10px;
                z-index: 10;
            }

            .project-indicator {
                width: 12px;
                height: 12px;
            }
        }

        /* Tablet Styles - Medium screens (768px to 991px) */
        @media (min-width: 768px) and (max-width: 991.98px) {
            .project-portfolio-section {
                padding: 60px 0;
            }

            .project-showcase-slider {
                border-radius: 15px;
            }

            .project-slider-wrapper {
                height: 500px;
            }

            .project-slide-content {
                display: flex;
                height: 100%;
            }

            .project-slide-image {
                width: 50%;
                height: 100%;
                overflow: hidden;
            }

            .project-slide-info {
                width: 50%;
                padding: 30px;
                display: flex;
                flex-direction: column;
                justify-content: center;
            }

            .project-slide-number {
                position: absolute;
                top: 15px;
                right: 15px;
                width: 45px;
                height: 45px;
                font-size: 16px;
            }

            .project-section-label {
                font-size: 13px;
            }

            .project-slide-category {
                font-size: 13px;
                margin-bottom: 12px;
            }

            .project-slide-title {
                font-size: 1.8rem;
                margin-bottom: 15px;
            }

            .project-slide-description {
                font-size: 15px;
                margin-bottom: 20px;
            }

            .project-slide-meta {
                display: flex;
                gap: 20px;
                margin-bottom: 15px;
            }

            .project-meta-label {
                font-size: 11px;
                margin-bottom: 4px;
            }

            .project-meta-value {
                font-size: 13px;
            }

            .project-slide-stats {
                display: flex;
                gap: 15px;
                margin-bottom: 20px;
                padding-top: 15px;
                border-top: 1px solid #e2e8f0;
            }

            .project-stat-number {
                font-size: 18px;
                margin-bottom: 4px;
            }

            .project-stat-label {
                font-size: 11px;
            }

            .project-view-btn {
                padding: 12px 25px;
                font-size: 13px;
            }

            .project-slider-navigation {
                position: absolute;
                bottom: 25px;
                left: 50%;
                transform: translateX(-50%);
                display: flex;
                gap: 12px;
                z-index: 10;
            }

            .project-nav-btn {
                width: 45px;
                height: 45px;
                font-size: 14px;
            }

            .project-slider-indicators {
                position: absolute;
                bottom: 85px;
                left: 50%;
                transform: translateX(-50%);
                display: flex;
                gap: 8px;
                z-index: 10;
            }

            .project-indicator {
                width: 11px;
                height: 11px;
            }
        }

        /* Mobile Styles - Small screens (below 768px) */
        @media (max-width: 767.98px) {
            .project-portfolio-section {
                padding: 40px 0;
            }

            .project-showcase-slider {
                border-radius: 10px;
            }

            .project-slider-wrapper {
                height: 550px;
            }

            .project-slide-content {
                display: flex;
                flex-direction: column;
                height: 100%;
            }

            .project-slide-image {
                width: 100%;
                height: 50%;
                overflow: hidden;
            }

            .project-slide-info {
                width: 100%;
                height: 50%;
                padding: 25px;
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
                overflow-y: auto;
            }

            .project-slide-number {
                position: absolute;
                top: 15px;
                right: 15px;
                width: 40px;
                height: 40px;
                font-size: 14px;
            }

            .project-section-label {
                font-size: 12px;
            }

            .project-slide-category {
                font-size: 12px;
                margin-bottom: 10px;
            }

            .project-slide-title {
                font-size: 1.6rem;
                margin-bottom: 12px;
            }

            .project-slide-description {
                font-size: 14px;
                margin-bottom: 15px;
                display: -webkit-box;
                -webkit-line-clamp: 3;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }

            .project-slide-meta {
                display: flex;
                flex-wrap: wrap;
                gap: 15px;
                margin-bottom: 12px;
            }

            .project-meta-item {
                flex: 1;
                min-width: calc(50% - 7.5px);
            }

            .project-meta-label {
                font-size: 10px;
                margin-bottom: 3px;
            }

            .project-meta-value {
                font-size: 12px;
            }

            .project-slide-stats {
                display: flex;
                gap: 10px;
                margin-bottom: 15px;
                padding-top: 12px;
                border-top: 1px solid #e2e8f0;
            }

            .project-stat-item {
                text-align: center;
                flex: 1;
            }

            .project-stat-number {
                font-size: 16px;
                margin-bottom: 3px;
            }

            .project-stat-label {
                font-size: 10px;
            }

            .project-view-btn {
                padding: 10px 20px;
                font-size: 12px;
            }

            .project-slider-navigation {
                position: absolute;
                bottom: 20px;
                left: 50%;
                transform: translateX(-50%);
                display: flex;
                gap: 10px;
                z-index: 10;
            }

            .project-nav-btn {
                width: 40px;
                height: 40px;
                font-size: 12px;
            }

            .project-slider-indicators {
                position: absolute;
                bottom: 75px;
                left: 50%;
                transform: translateX(-50%);
                display: flex;
                gap: 6px;
                z-index: 10;
            }

            .project-indicator {
                width: 8px;
                height: 8px;
            }
        }

        /* Extra Small Mobile - Below 576px */
        @media (max-width: 575.98px) {
            .project-portfolio-section {
                padding: 30px 0;
            }

            .project-slider-wrapper {
                height: 500px;
            }

            .project-slide-info {
                padding: 20px;
            }

            .project-slide-title {
                font-size: 1.4rem;
            }

            .project-slide-description {
                -webkit-line-clamp: 2;
            }

            .project-slide-meta {
                flex-direction: column;
                gap: 10px;
            }

            .project-meta-item {
                min-width: 100%;
            }

            .project-slide-stats {
                flex-wrap: wrap;
                gap: 8px;
            }

            .project-stat-item {
                min-width: calc(20% - 4px)!important;
            }

            .project-view-btn {
                width: 100%;
                justify-content: center;
                padding: 12px 20px;
            }
        }

        /* Accessibility */
        @media (prefers-reduced-motion: reduce) {
            .project-slider-track,
            .project-slide-image img,
            .project-view-btn,
            .project-nav-btn,
            .project-indicator {
                transition: none;
            }
        }
     /*project*/


/*why choose us*/
 .whychoose{
          background: url('./images/whychoose.jpg');
          background-size: cover;
          width:100%;
          height:100%;
          background-repeat: no-repeat;
        }
         .whychoose .card{
          box-shadow: 0px 3px 36px 0px rgba(0,0,0,.11);
          border-radius: 0;
        }

        .whychoose .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .whychoose .card-hover:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .whychoose .icon-circle {
            width: 80px;
            height: 80px;
            border-radius: 50%;
/*            background: linear-gradient(135deg, #007bff, #0056b3);*/
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            border: 2px solid var(--accent-color);
        }
        .whychoose .section-title {
            color: #2c3e50;
            font-weight: 700;
            line-height: 1.2;
        }
        .whychoose .section-subtitle {
            color: #e67e22;
            font-weight: 600;
            letter-spacing: 2px;
            font-size: 0.9rem;
        }
/*why choose us*/


/*promo video*/
 .promo-section {
            background:url('images/video.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
            padding:50px 0px;
        }
        
        .promo-overlay {
            background: rgba(0, 0, 0, 0.4);
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
        }
        
        .promo-content {
            position: relative;
            z-index: 2;
        }
        
        .promo-badge {
            background: rgba(255, 193, 7, 0.9);
            color: #000;
            padding: 8px 16px;
            border-radius: 25px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 2px;
            display: inline-block;
            margin-bottom: 1.5rem;
        }
        
        .promo-title {
            font-size: 3rem;
            font-weight: 700;
            color: white;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }
        
        .promo-description {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 2.5rem;
        }
        
        .more-videos-btn {
            background: white;
            color: #333;
            border: none;
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .more-videos-btn:hover {
            background: #f8f9fa;
            color: #333;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }
        
        .video-container {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            background: #000;
        }
        
        .video-thumbnail {
            width: 100%;
            height: 450px;
            object-fit: cover;
            border-radius: 20px;
        }
        
        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.9);
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }
        
        .play-button:hover {
            background: white;
            transform: translate(-50%, -50%) scale(1.1);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        
        .play-button i {
            color: #333;
            font-size: 2rem;
            margin-left: 3px;
        }
        
        @media (max-width: 768px) {
            .promo-title {
                font-size: 2.5rem;
            }
            .promo-section {
                background-attachment: scroll;
            }
            .video-thumbnail {
                height: 200px;
            }
        }
        
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
            border-radius: 20px;
        }
/*promo video*/


/*milestone*/
   .bg-milestone {
            background: linear-gradient(rgba(33, 37, 41, 0.8), rgba(33, 37, 41, 0.8)), 
                        url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding:50px 0px;
        }
        .hover-effect {
            transition: all 0.3s ease;
        }
        .hover-effect:hover {
            transform: translateY(-5px);
        }
        .number-glow:hover {
            text-shadow: 0 0 20px rgba(255, 193, 7, 0.5);
        }
        .badge-glow:hover {
            box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
        }
        .border1{
            border:1px solid rgba(255,255,255,.4);
            padding:30px 0px;
            text-align: center;
            border-radius: 10px;
        }
/*milestone*/

/*get quote*/
 .quote-image {
            background: url('https://images.unsplash.com/photo-1586023492125-27b2c045efd7?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
            background-size: cover;
            background-position: center;
            min-height: 500px;
            border-radius: 15px;
        }
        .form-control:focus {
            border-color: #ffc107;
            box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
        }
        .btn-submit {
    /* background: #212529; */
    border: none;
    transition: all 0.3s ease;
    /* background: var(--accent-color); */
    border: 1px solid var(--accent-color);
    padding: 10px 30px;
}
        .btn-submit:hover {
            background: #ffc107;
            color: #000;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        @media (max-width: 768px) {
            .quote-image {
                min-height: 300px;
                margin-bottom: 2rem;
            }
        }
        .borderYellow{
           border: 1px solid var(--accent-color)!important;
        }
/*get quote*/


/*clients*/
.clients-section {
            overflow: hidden;
            background: #f8f9fa;
        }
        
        .clients-section .marquee-row {
            display: flex;
            width: 200%;
            animation-timing-function: linear;
            animation-iteration-count: infinite;
        }
        
        .clients-section .marquee-left {
            animation: marqueeLeft 30s linear infinite;
        }
        
        .clients-section .marquee-right {
            animation: marqueeRight 30s linear infinite;
        }
        
        .clients-section .marquee-row:hover {
            animation-play-state: paused;
        }
        
        @keyframes marqueeLeft {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        
        @keyframes marqueeRight {
            0% { transform: translateX(-50%); }
            100% { transform: translateX(0); }
        }
        
        .clients-section .client-logo {
            width: 100%;
            height: 80px;
            object-fit: contain;
            background: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            opacity: 0.7;
            filter: grayscale(100%);
             border: 1px solid var(--accent-color)!important;
        }
        
        .clients-section .client-logo:hover {
            opacity: 1;
            filter: grayscale(0%);
            transform: scale(1.05);
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        }
        
        .clients-section .client-item {
            flex: 0 0 auto;
            width: 200px;
            padding: 0 15px;
        }
        
        .clients-section .section-title {
            color: #212529;
            font-weight: 700;
        }
        
        .clients-section .section-subtitle {
            color: #ffc107;
            font-weight: 600;
            letter-spacing: 2px;
        }
/*clients*/


/*team*/
.team-section .team-card {
            transition: all 0.4s ease;
            overflow: hidden;
            position: relative;
        }
        
        .team-section .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .team-section .team-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: all 0.4s ease;
        }
        
        .team-section .team-card:hover .team-image {
            transform: scale(1.1);
        }
        
        .team-section .team-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 193, 7, 0.9), rgba(255, 152, 0, 0.9));
            opacity: 0;
            transition: all 0.4s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .team-section .team-card:hover .team-overlay {
            opacity: 1;
        }
        
        .team-section .social-links {
            transform: translateY(20px);
            transition: all 0.4s ease;
        }
        
        .team-section .team-card:hover .social-links {
            transform: translateY(0);
        }
        
        .team-section .social-links a {
            display: inline-block;
            width: 45px;
            height: 45px;
            background: white;
            color: #333;
            border-radius: 50%;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 0px;
            transition: all 0.3s ease;
            font-size: 18px;
        }
        
        .team-section .social-links a:hover {
            background: #333;
            color: white;
            transform: translateY(-3px);
        }
        
        .team-section .team-info {
            background: white;
            padding: 1.5rem;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .team-section .team-name {
            color: #333;
            font-weight: 700;
            margin-bottom: 0.5rem;
            font-size: 1.3rem;
        }
        
        .team-section .team-position {
            color: #ffc107;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }
        
        .team-section .section-header {
            margin-bottom: 4rem;
        }
        
        .team-section .section-badge {
            background: #ffc107;
            color: #000;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 2px;
            display: inline-block;
            margin-bottom: 1rem;
        }
        
        @media (max-width: 768px) {
            .team-section .team-image {
                height: 250px;
            }
        }
/*team*/


/*footer*/
.footer-dark {
            background-color: #2c3e50;
            color: #95a5a6;
        }
        
        .footer-logo {
            color: #f39c12;
            font-size: 2rem;
            font-weight: 700;
            text-decoration: none;
        }
        
        .footer-logo:hover {
            color: #f39c12;
        }
        
        .logo-icon {
            width: 40px;
            height: 40px;
            background: #f39c12;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            position: relative;
        }
        
        .logo-icon::before {
            content: '';
            width: 20px;
            height: 20px;
            background: transparent;
            border: 2px solid #2c3e50;
            border-left: 2px solid transparent;
            border-bottom: 2px solid transparent;
            transform: rotate(45deg);
        }
        
        .footer-heading {
            color: #ecf0f1;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .footer-link {
            color: #fff;
            text-decoration: none;
            display: block;
            padding: 0.3rem 0;
            transition: all 0.3s ease;
        }
        
        .footer-link:hover {
            color: #f39c12;
            padding-left: 5px;
        }
        
        .phone-number {
            color: #ecf0f1;
            font-size: 1.5rem;
            font-weight: 600;
            text-decoration: none;
        }
        
        .phone-number:hover {
            color: #f39c12;
        }
        
        .phone-icon {
            width: 50px;
            height: 50px;
            background: #f39c12;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: #2c3e50;
            font-size: 1.2rem;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            background: #34495e;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-decoration: none;
            margin-right: 5px;
            transition: all 0.3s ease;
            border:1px solid #fff;

        }
        
        .social-icon:hover {
            background: #f39c12;
            color: #2c3e50;
            border:none;
        }
        
        .newsletter-input {
            background: #34495e;
            border: 1px solid var(--accent-color);
            color: #ecf0f1;
            padding: 12px 15px;
        }
        
        .newsletter-input:focus {
            background: #34495e;
            border-color: #f39c12;
            color: #ecf0f1;
            box-shadow: 0 0 0 0.2rem rgba(243, 156, 18, 0.25);
        }
        
        .newsletter-input::placeholder {
            color: #7f8c8d;
        }
        
        .btn-subscribe {
            background: #f39c12;
            color: #2c3e50;
            border: none;
            padding: 12px 25px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }
        
        .btn-subscribe:hover {
            background: #e67e22;
            color: #2c3e50;
            transform: translateY(-2px);
        }
/*footer*/