   :root {
            --homepage-primary-gold:   #ac0101;
            --homepage-gradient-orange: linear-gradient(90deg, #750808 0%, #0c0503 100%);
        }
        
        /* Homepage Navbar Styles */
         .homepage-navbar {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        } 
        
        
        .homepage-navbar-brand {
            font-weight: bold;
            font-size: 1.5rem;
            color: #333 !important;
        }
        
        .homepage-navbar-nav .nav-link {
            font-weight: 500;
            color: #333 !important;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .homepage-navbar-nav .nav-link:hover {
            color: var(--homepage-primary-gold) !important;
        }
        .nav-link {
            text-transform: uppercase;
        }

        /* mobile navbar layout */
.homepage-navbar .navbar-brand {
    flex: 1;
    max-width: calc(100% - 60px); 
}

.navbar-logo {
    height: 55px; 
    width:250px;
    margin-right: 8px;
}

.navbar-toggler, .custom-navbar-toggler {
    flex-shrink: 0; 
}

/* Custom Hamburger Menu Styles */
.custom-navbar-toggler {
    border: none;
    background: transparent;
    padding: 8px;
    position: relative;
    width: 40px;
    height: 40px;
    cursor: pointer;
    outline: none;
}

.custom-navbar-toggler:focus {
    box-shadow: none;
}

.hamburger-lines {
    position: relative;
    width: 30px;
    height: 24px;
    margin: auto;
}

.hamburger-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

.hamburger-line:nth-child(1) { top: 0; }
.hamburger-line:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger-line:nth-child(3) { bottom: 0; }

/* Active State - Transform to X */
.custom-navbar-toggler.active .hamburger-line:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    animation: elastic-bounce 0.6s ease;
}

.custom-navbar-toggler.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateY(-50%) scale(0);
}

.custom-navbar-toggler.active .hamburger-line:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
    animation: elastic-bounce 0.3s ease;
}

@keyframes elastic-bounce {
    0% { transform: translateY(-50%) rotate(0deg) scale(1); }
    50% { transform: translateY(-50%) rotate(22.5deg) scale(1.1); }
    100% { transform: translateY(-50%) rotate(45deg) scale(1); }
}

/* Hover Effects */

.custom-navbar-toggler.active:hover .hamburger-line {
    background-color: #ffd700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .homepage-navbar .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .homepage-navbar .navbar-brand {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .navbar-logo {
        height: 30px; /* Even smaller on very small screens */
    }
}
/* Hide hamburger menu on desktop screens */
@media (min-width: 992px) {
    .custom-navbar-toggler {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .homepage-navbar .navbar-brand {
        font-size: 1.1rem; /* Reduce text size if needed */
    }
    
    .navbar-logo {
        height: 38px;
        width: inherit;
    }
    .nav-link {
        font-size: 1.2rem;
        text-transform: uppercase;
    }
}
        
        /* Homepage Hero Section */
        .homepage-hero-section {
            background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(255,215,0,0.1)), 
                        url('../images/image00021.jpeg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            min-height: 90vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .homepage-hero-content {
            position: relative;
            z-index: 2;
        }
        
        .homepage-hero-title {
            font-size: 3.5rem;
            font-weight: bold;
            color: white;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .homepage-hero-subtitle {
            font-size: 1.3rem;
            color: #f8f9fa;
            margin-bottom: 30px;
            line-height: 1.6;
        }
        
        .homepage-hero-tagline {
            font-size: 1.1rem;
            color: var(--homepage-primary-gold);
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .homepage-btn-hero {
            background: var(--homepage-gradient-orange);
            border: none;
            color: white;
            padding: 15px 30px;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 600;
            margin: 10px;
            transition: all 0.3s ease;
        }
        
        .homepage-btn-hero:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 152, 0, 0.4);
            color: white;
        }
        
      .homepage-btn-hero-secondary {
    background: var(--homepage-primary-gold); /* tani mbushet me ari */
    border: 2px solid var(--homepage-primary-gold);
    color: #c5b6b6; /* teksti bëhet i bardhë që të duket bukur mbi ari */
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 10px;
    transition: all 0.3s ease;
}

        
        .homepage-btn-hero-secondary:hover {
            background: var(--homepage-primary-gold);
            color: #333;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 152, 0, 0.4);
        }
        
        /* Homepage Services Section */
        .homepage-services-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        }
        
        .homepage-section-title {
            font-size: 2.8rem;
            font-weight: bold;
            text-align: center;
            margin-bottom: 20px;
            color: #333;
        }
        
        .homepage-section-subtitle {
            font-size: 1.2rem;
            text-align: center;
            color: #666;
            margin-bottom: 60px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .homepage-service-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            height: 100%;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 1px solid rgba(255,215,0,0.1);
        }
        
        .homepage-service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
            border-color: var(--homepage-primary-gold);
        }
        
        .homepage-service-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--homepage-primary-gold), #ff6e4a);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2.5rem;
            color: #333;
        }
        
        .homepage-service-title {
            font-size: 1.4rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 15px;
        }
        
        .homepage-service-description {
            color: #666;
            line-height: 1.6;
            font-size: 1rem;
        }
        
        /* Homepage About Preview Section */
        .homepage-about-preview {
            padding: 100px 0;
            background: linear-gradient(135deg, #121212 0%, #3a3939 100%);
            color: white;
        }
        
        .homepage-about-stats {
            background: rgba(8, 8, 8, 0.263);
            border-radius: 15px;
            padding: 40px;
            margin-top: 50px;
        }
        
        .homepage-stat-item {
            text-align: center;
        }
        
        .homepage-stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: var(--homepage-primary-gold);
            display: block;
        }
        
        .homepage-stat-label {
            font-size: 1rem;
            color: #f8f9fa;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Homepage Values Section */
        .homepage-values-section {
            padding: 100px 0;
            background: white;
        }
        
        .homepage-value-card {
            text-align: center;
            padding: 30px 20px;
        }
        
        .homepage-value-icon {
            width: 80px;
            height: 80px;
            background: var(--homepage-gradient-orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            color: white;
        }
        
        .homepage-value-title {
            font-size: 1.3rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 15px;
        }
        
        .homepage-value-description {
            color: #666;
            line-height: 1.6;
        }
        
        /* Homepage Industry Experience Section */
        .homepage-industry-section {
            padding: 100px 0;
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                        url('https://images.unsplash.com/photo-1541976590-713941681591?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
        }
        
        .homepage-industry-title {
            font-size: 2.8rem;
            font-weight: bold;
            color: white;
            margin-bottom: 30px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        
        .homepage-industry-subtitle {
            font-size: 1.2rem;
            color: #f0f0f0;
            margin-bottom: 40px;
            line-height: 1.6;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .homepage-btn-learn-more {
            background: var(--homepage-gradient-orange);
            border: none;
            color: white;
            padding: 15px 40px;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .homepage-btn-learn-more:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 152, 0, 0.4);
            color: white;
            text-decoration: none;
        }
        
         /* Homepage CTA Section */
        .homepage-cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--homepage-primary-gold), #ffed4a);
            text-align: center;
        }
        
        .homepage-cta-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 20px;
        }
        
        .homepage-cta-subtitle {
            font-size: 1.2rem;
            color: #555;
            margin-bottom: 30px;
        }
        
        .homepage-btn-cta {
            background: #333;
            border: none;
            color: white;
            padding: 15px 40px;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .homepage-btn-cta:hover {
            background: #555;
            transform: translateY(-3px);
            color: white;
        }
        
        /* Homepage Footer */
        .homepage-footer {
            background: #222;
            color: white;
            padding: 60px 0 20px;
        }
        
        .homepage-footer h5 {
            color: var(--homepage-primary-gold);
            font-weight: bold;
            margin-bottom: 20px;
        }
        
        .homepage-footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .homepage-footer a:hover {
            color: var(--homepage-primary-gold);
        }
        
        .homepage-footer-bottom {
            border-top: 1px solid #444;
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
            color: #888;
        }
        
        .homepage-social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(255,215,0,0.1);
            border-radius: 50%;
            line-height: 40px;
            text-align: center;
            margin: 0 10px;
            transition: all 0.3s ease;
        }
        
        .homepage-social-links a:hover {
            background: var(--homepage-primary-gold);
            color: #333;
        }
        
        /* Homepage Responsive Design */
        @media (max-width: 768px) {
            .homepage-hero-title {
                font-size: 2.5rem;
            }
            
            .homepage-section-title {
                font-size: 2rem;
            }
            
            .homepage-industry-title {
                font-size: 2rem;
            }
            
            .homepage-service-card {
                margin-bottom: 30px;
            }
            
            .homepage-stat-number {
                font-size: 2rem;
            }
            
            .homepage-hero-section,
            .homepage-industry-section {
                background-attachment: scroll;
            }
        }
        
        @media (max-width: 576px) {
            .homepage-hero-title {
                font-size: 2rem;
            }
            
            .homepage-btn-hero, .homepage-btn-hero-secondary {
                display: block;
                width: 100%;
                margin: 10px 0;
            }
        }

         /* ABOUT US SECTION */
   .hero-section-about {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/image00037.jpeg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 120px 0;
        }
        
        .hero-title-about {
            font-size: 3.5rem;
            font-weight: bold;
            color: #bd0606;
            margin-bottom: 30px;
            position: relative;
            padding-left: 25px;
        }
        
        .hero-title-about::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 6px;
            background-color: #ff5100;
            border-radius: 3px;
        }
        
        .hero-subtitle-about {
            font-size: 1.2rem;
            color: #f0f0f0;
            line-height: 1.6;
            max-width: 800px;
            margin: 0 auto;
        }

        .btn-view-work, .btn-get-in-touch {
            background: linear-gradient(90deg, #ff0000 0%, #460101 100%);
            color: #fff;
            border: none;
            border-radius: 30px;
            padding: 12px 36px;
            font-size: 1.1rem;
            font-weight: 600;
            box-shadow: 0 4px 16px rgba(255,152,0,0.18);
            transition:  0.3s, transform 0.2s;
        }
        .btn-view-work:hover,.btn-get-in-touch:hover {
             transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 152, 0, 0.4);
            color: white;
        }
            .section-title.border-bottom-custom {
            border-bottom: 3px solid #007bff;
            display: block;
            width: fit-content;
            margin-left: auto;
            margin-right: auto;
            padding-bottom: 6px;
        }
        
        .services-section {
            padding: 80px 0;
            background-color: #fff;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 50px;
            text-align: center;
        }
        
        .service-card {
            text-align: center;
            padding: 30px 20px;
            height: 100%;
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
           background: linear-gradient(120deg, #ff0000 0%, #440202 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .service-icon i {
            font-size: 40px;
            color: #333;
        }
        
        .service-title {
            font-size: 1.5rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 15px;
        }
        
        .service-description {
            color: #666;
            line-height: 1.6;
        }
        
        .about-content-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }
        
        .about-text {
            font-size: 1.1rem;
            color: #070606;
            line-height: 1.8;
            margin-bottom: 20px;
        }
        
        .about-text a {
            color: #007bff;
            text-decoration: none;
        }
        
        .about-text a:hover {
            text-decoration: underline;
        }
        
        .values-section {
            padding: 80px 0;
            background: linear-gradient(rgba(235, 241, 241, 0.096), rgba(4, 39, 104, 0.38)),  url('../images/image00002.jpeg');
            background-size: 100%;
            background-position: center;
            position: relative;
        }
        
        .values-title {
            font-size: 2rem;
            font-weight: bold;
            color: #000000;
            margin-bottom: 40px;
            text-align: center;
        }
        
        .value-item {
            margin-bottom: 40px;
        }
        
        .value-title {
            font-size: 1.3rem;
            font-weight: bold;
            color: #000000;
            margin-bottom: 10px;
        }
        
        .value-description {
            color: #000000;
            line-height: 1.6;
        }
        
        .counters-section {
            padding: 80px 0;
            background-color: #000000;
            color: #000000;
          
        }
        
        .counter-item {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .counter-number {
            font-size: 3.5rem;
            font-weight: bold;
            color: #8f0303e0;
            display: block;
            margin-bottom: 15px;
            line-height: 1;
        }
        
        .counter-text {
            font-size: 1rem;
            color: #f8f9fa;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 500;
        }
        
        .image-section {
            padding: 50px 0;
            background-color: #f8f9fa;
        }
        
        .company-image {
            width: 100%;
            max-width: 800px;
            height: 400px;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .service-card {
                margin-bottom: 40px;
            }
            
            .counter-number {
                font-size: 2.8rem;
            }
        }

        /* ABOUT US SECTION */

        /* Project section */
        .hero-section-projects {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/image00001.jpeg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 230px 0;
        }
        
        .hero-title-projects {
            font-size: 3.5rem;
            font-weight: bold;
            color: #a00000e1;
            margin-bottom: 30px;
            position: relative;
            padding-left: 25px;
        }
        
        .hero-title-projects::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 6px;
            background-color: #8a0000;
            border-radius: 3px;
        }
        
        .hero-subtitle-projects {
            font-size: 1.2rem;
            color: #f0f0f0;
            line-height: 1.6;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .description-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }
        
        .description-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .description-text {
            font-size: 1.2rem;
            color: #666;
            line-height: 1.8;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .projects-section {
            padding: 80px 0;
            background-color: #fff;
        }
        
        .section-title-projects {
            font-size: 2.5rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 50px;
            text-align: center;
        }
        
        .project-card {
            background: #fff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin-bottom: 30px;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .project-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 15px 15px 0 0;
        }
        
        .project-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .project-title {
            font-size: 1.5rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
            padding: 12px 18px;
            background: linear-gradient(90deg, rgba(255,215,0,0.1) 0%, rgba(255,215,0,0.05) 100%);
            border-radius: 8px;
            border-left: 4px solid #ff3c00;
        }
        
        .project-description {
            color: #666;
            line-height: 1.6;
            margin-bottom: 25px;
            flex-grow: 1;
            position: relative;
            z-index: 1;
            padding: 15px 18px;
            background: linear-gradient(90deg, rgba(248,249,250,0.8) 0%, rgba(255,255,255,0.9) 50%, rgba(241,243,244,0.8) 100%);
            border-radius: 8px;
            border: 1px solid rgba(255,215,0,0.1);
        }
        
        .project-btn{
            background: var(--homepage-gradient-orange);
            border: none;
            color: white;
            padding: 15px 30px;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 600;
            margin: 10px;
            transition: all 0.3s ease;
        }
        
        .project-btn:hover {
            background-color: #6d0101;
            transform: translateY(-2px);
            color: #333;
            text-decoration: none;
        }
        
        .loading-spinner {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 50px 0;
        }
        
        .spinner-border {
            width: 3rem;
            height: 3rem;
            color: #920000;
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .description-title {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .project-card {
                margin-bottom: 25px;
            }
        }

                /* Project Details Specific Styles */
        .project-detail-hero {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 80px 0;
        }
        
        .back-button {
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: #fff;
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            margin-bottom: 20px;
        }
        
        .back-button:hover {
            background: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.5);
            color: #fff;
            text-decoration: none;
            transform: translateX(-5px);
        }
        
        .project-detail-title {
            font-size: 3rem;
            font-weight: bold;
            color: #ffffff;
            margin-bottom: 20px;
            position: relative;
            padding-left: 25px;
        }
        
        .project-detail-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 6px;
            background-color: #8a0000;
            border-radius: 3px;
        }
        
        .project-category {
            background: linear-gradient(90deg, #8f0202, #b49b9bfb);
            color: #333;
            padding: 8px 20px;
            border-radius: 20px;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 15px;
        }
        
        .project-description-short {
            font-size: 1.2rem;
            color: #f0f0f0;
            line-height: 1.6;
            max-width: 800px;
        }
        
        .project-content-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }
        
        .main-project-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        
        .main-project-image:hover {
            transform: scale(1.02);
        }
        
        .gallery-section {
            padding: 60px 0;
            background-color: #fff;
        }
        
        .gallery-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }
        
        .gallery-image:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        
        /* Image Modal/Zoom Styles */
        .image-modal {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.9);
            backdrop-filter: blur(5px);
        }
        
        .modal-content-img {
            margin: auto;
            display: block;
            width: 90%;
            max-width: 1200px;
            max-height: 90%;
            object-fit: contain;
            border-radius: 10px;
            animation: zoom 0.3s ease;
        }
        
        @keyframes zoom {
            from { transform: scale(0.8); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }
        
        .close-modal {
            position: absolute;
            top: 30px;
            right: 50px;
            color: #fff;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        
        .close-modal:hover {
            color: #ffd700;
        }
        
        .project-info-card {
            background: #fff;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-bottom: 30px;
        }
        
        .project-detail-description {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.8;
            margin-bottom: 25px;
        }
        
        .project-specs {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 25px;
            border-radius: 10px;
            border-left: 4px solid #aa0404;
        }
        
        .spec-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid rgba(0,0,0,0.1);
        }
        
        .spec-item:last-child {
            border-bottom: none;
        }
        
        .spec-label {
            font-weight: 600;
            color: #333;
        }
        
        .spec-value {
            color: #666;
        }
        
        .loading-project-detail {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 400px;
        }
        
        @media (max-width: 768px) {
            .project-detail-title {
                font-size: 2.5rem;
            }
            
            .main-project-image {
                height: 300px;
            }
            
            .gallery-image {
                height: 150px;
                margin-bottom: 15px;
            }
            
            .close-modal {
                right: 20px;
                top: 20px;
                font-size: 30px;
            }
        }
          /* Contact Page Specific Styles */
        .contact-hero-section {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 120px 0;
        }
        
        .contact-hero-title {
            font-size: 3.5rem;
            font-weight: bold;
            color: #920202;
            margin-bottom: 30px;
            position: relative;
            padding-left: 25px;
        }
        
        .contact-hero-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 6px;
            background-color: #790303;
            border-radius: 3px;
        }
        
        .contact-hero-subtitle {
            font-size: 1.2rem;
            color: #f0f0f0;
            line-height: 1.6;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .contact-form-section {
            padding: 100px 0;
            background-color: #f8f9fa;
        }
        
        .contact-section-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .contact-section-subtitle {
            font-size: 1.1rem;
            color: #666;
            text-align: center;
            margin-bottom: 60px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .contact-form-card {
            background: white;
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            margin-bottom: 30px;
        }
        
        .contact-form-group {
            margin-bottom: 25px;
        }
        
        .contact-form-label {
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
            display: block;
        }
        
        .contact-form-input {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e9ecef;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background-color: #fff;
        }
        
        .contact-form-input:focus {
            border-color: #ff0000;
            outline: none;
            box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
        }
        
        .contact-form-textarea {
            min-height: 120px;
            resize: vertical;
        }
        
        .contact-btn-submit {
            background: linear-gradient(90deg, #b10000 0%, #0a0800d8 100%);
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            width: 100%;
        }
        
        .contact-btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgb(2, 0, 0);
            color: white;
        }
        
        .contact-info-section {
            padding: 80px 0;
            background: white;
        }
        
        .contact-info-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            height: 100%;
            border-left: 4px solid #a30000;
            transition: all 0.3s ease;
        }
        
        .contact-info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }
        
        .contact-info-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #ff0000, #000000ce);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            color: #333;
        }
        
        .contact-info-title {
            font-size: 1.3rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 15px;
        }
        
        .contact-info-text {
            color: #000000;
            line-height: 1.6;
            margin-bottom: 10px;
        }
        
        .contact-info-link {
            color: #0a0909;
            text-decoration: none;
            font-weight: 600;
        }
        
        .contact-info-link:hover {
            color: #f57c00;
            text-decoration: underline;
        }
        
        .contact-map-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #333 0%, #555 100%);
            color: white;
        }
        
        .contact-map-container {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
        }
        
        .contact-map-placeholder {
            height: 400px;
            background: linear-gradient(45deg, #e9ecef 25%, transparent 25%), 
                        linear-gradient(-45deg, #e9ecef 25%, transparent 25%), 
                        linear-gradient(45deg, transparent 75%, #e9ecef 75%), 
                        linear-gradient(-45deg, transparent 75%, #e9ecef 75%);
            background-size: 20px 20px;
            background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-size: 1.2rem;
            font-weight: 600;
        }
        
        .contact-cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #720101, #360000);
            text-align: center;
        }
        
        .contact-cta-title {
            font-size: 2.2rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 20px;
        }
        
        .contact-cta-text {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .contact-btn-phone {
            background: #333;
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }
        
        .contact-btn-phone:hover {
            background: #555;
            color: white;
            transform: translateY(-3px);
            text-decoration: none;
        }
        
        .contact-working-hours {
            background: rgba(255, 215, 0, 0.1);
            border-radius: 15px;
            padding: 30px;
            margin-top: 30px;
        }
        
        .contact-hours-title {
            font-size: 1.2rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 15px;
            text-align: center;
        }
        
        .contact-hours-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .contact-hours-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid rgba(0,0,0,0.1);
            color: #666;
        }
        
        .contact-hours-item:last-child {
            border-bottom: none;
        }
        
        .contact-hours-day {
            font-weight: 600;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .contact-hero-title {
                font-size: 2.5rem;
            }
            
            .contact-section-title {
                font-size: 2rem;
            }
            
            .contact-form-card {
                padding: 30px 20px;
            }
            
            .contact-info-card {
                margin-bottom: 30px;
            }
            
            .contact-hero-section,
            .contact-map-section {
                background-attachment: scroll;
            }
        }
       


       


/* Seksioni për About */
.about-section {
    background-color: #f9f9f9; /* Ngjyrë e lehtë sfondi */
    padding: 10px 10px;
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.8;
    padding-right: 700px;
}

/* Container për qendrimin e përmbajtjes */
.about-section .container {
    max-width: 800px;
    margin: 0 auto;
}

/* Paragrafët brenda seksionit */
.about-text {
    margin-bottom: 10px; /* Distanca ndërmjet paragrafëve */
    white-space: pre-line; /* Ruajtja e rreshtave dhe enterëve të HTML */
}

/* Teksti i madh ose titujt brenda paragrafëve */
.about-text.lead-text {
    font-size: 1.2rem;
    font-weight: 200;
    margin-bottom: 1px;
}

/* Për linket në tekst */
.about-text a {
    color: #ac0101; /* Ngjyra e linkut */
    text-decoration: underline;
}

/* Responsivitet për telefon */
@media (max-width: 768px) {
    .about-section {
        padding: 30px 15px;
    }

    .about-text.lead-text {
        font-size: 1rem;
    }
}
