* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: rgb(226, 226, 226);
    cursor: url('/projects.cur'), default;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    cursor: url('/projects.cur'), default;
}

/* Enhanced Scrollbar Styles */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, rgb(13,36,63), #ff5912);
    border-radius: 10px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.8), #ff5912);
}

/* Enhanced Navbar - Matching projects.css */
.navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background-color: transparent !important;
    transition: all 0.4s ease !important;
    z-index: 999 !important;
    padding: 0 20px !important;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.301) !important;
    backdrop-filter: blur(6px) !important;
    -webkit-backdrop-filter: blur(6px) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15) !important;
}

.navbar::before {
    content: "";
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, rgba(255,255,255,0.05) 80%);
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar.scrolled::before {
    opacity: 1;
}

.nav-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-links {
    display: flex;
    gap: 60px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    font-weight: 700;
    text-decoration: none;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    position: relative;
    padding: 10px 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(45deg, #ff5912, #ff7c4a);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: #ff5912;
    transform: translateY(-2px);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.dark-text {
    color: #000000 !important;
}

.nav-links a.dark-text:hover {
    color: #162630 !important;
}

.nav-links a.dark-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: #1a6bb3;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a.dark-text:hover::after {
    width: 100%;
}

/* Enhanced Hero Section - Matching projects.css */
.project-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(13,36,63,0.4) 50%, rgba(255,89,18,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.411);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    margin: 0 0 20px 0;
    letter-spacing: 2px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
    line-height: 1.2;
}

.hero-location {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-navigation {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-btn:hover {
    background: rgba(255,89,18,0.8);
    border-color: #ff5912;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255,89,18,0.3);
}






.project-main {
    background: #f8f9fa;
    padding: 0;
}

.project-details {
    padding: 80px 20px;
    background: white;
}

.details-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.detail-card {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 5px solid #ff5912;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.detail-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff5912, #ff7c4a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.detail-content h3 {
    font-size: 14px;
    font-weight: 700;
    color: #666;
    margin: 0 0 8px 0;
    letter-spacing: 1px;
}

.detail-content p {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

/* Project Description */
.project-info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin: 60px;
        }

        .info-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .info-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, #ff5912, #ff7c4a);
        }

        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .info-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #0d243f, #1a4a6b);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 1.5rem;
        }

        .info-label {
            font-size: 0.9rem;
            font-weight: 600;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .info-value {
            font-size: 1.3rem;
            font-weight: 700;
            color: #333;
        }

.header-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #ff5912, #ff7c4a);
    margin: 0 auto 40px auto;
    border-radius: 2px;
}

.description-container p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    font-weight: 400;
}

/* Gallery Section */
.project-gallery {
    padding: 80px 20px;
    background: #f8f9fa;
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    aspect-ratio: 4/3;
}


.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.034);
    backdrop-filter: blur(1.5px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .image-overlay {
    opacity: 1;
}

.image-overlay i {
    color: white;
    font-size: 2rem;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.gallery-item:hover .image-overlay i {
    transform: scale(1);
}


/* Bottom Navigation */
.project-navigation-bottom {
    padding: 80px 20px;
    background: white;
    border-top: 1px solid #eee;
}

.nav-container-bottom {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.project-nav-card {
    display: block;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 15px;
    text-decoration: none;
    color: #333;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.project-nav-card:hover {
    background: white;
    border-color: #ff5912;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255,89,18,0.1);
}

.nav-card-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.project-nav-card.next-project .nav-card-content {
    justify-content: flex-end;
    text-align: right;
}

.nav-card-content i {
    font-size: 2rem;
    color: #ff5912;
    transition: all 0.3s ease;
}

.project-nav-card:hover i {
    transform: translateX(5px);
}

.project-nav-card.prev-project:hover i {
    transform: translateX(-5px);
}

.nav-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.nav-title {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(66, 66, 66, 0.815);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 100%;
    margin: 5% auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80vh;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
}

.lightbox-close:hover {
    color: #ff5912;
}

#lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.lightbox-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 24px;
    padding: 15px 20px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    backdrop-filter: blur(10px);
}

.lightbox-btn:hover {
    background: rgba(255,89,18,0.8);
    transform: scale(1.1);
}


/* Enhanced Footer - Matching projects.css */
footer {
    background: linear-gradient(135deg, #23252d 0%, #1a1c23 100%);
    color: #EEF1F2;
    font-family: 'Montserrat', sans-serif;
    padding: 0;
    margin-top: auto;
}

.footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
    color: #ff5912;
    position: relative;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(45deg, #ff5912, #ff7c4a);
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer li {
    margin-bottom: 12px;
}

.footer-link,
.footercontact a {
    color: #EEF1F2;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    display: inline-block;
    position: relative;
}

.footer-link:hover,
.footercontact a:hover {
    color: #ff5912;
    padding-left: 15px;
}

.wpnumber {
    color: #16f058 !important;
}

.wpnumber:hover {
    color: #20ff6b !important;
}

.footerlogo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footerlogo img {
    width: 100%;
    max-width: 160px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.footerlogo img:hover {
    transform: scale(1.05);
}

.footercopyright {
    background: rgba(0,0,0,0.3);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footercopyright p {
    margin: 0;
    padding: 25px;
    text-align: center;
    font-size: 14px;
    color: #aaa;
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 2.5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.navbar.scrolled .hamburger span {
    background-color: #333;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}



/* Responsive Design */
@media (max-width: 1200px) {

    .nav-links {
        gap: 40px;
    }
    
    .nav-links a {
        font-size: 16px;
    }

    .gallery-item.main-image {
        grid-column: span 1;
        aspect-ratio: 4/3;
    }
}

@media (max-width: 992px) {

    .nav-container {
        padding: 20px 0;
    }
    
    .nav-links {
        gap: 30px;
    }
    
    .nav-links a {
        font-size: 15px;
    }

    .project-hero {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 5vw, 3.5rem);
    }
    
    .project-details,
    .project-description,
    .project-gallery,
    .project-navigation-bottom {
        padding: 60px 20px;
    }
    
    .details-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 15px;
    }

    .footer {
        padding: 60px 30px;
        gap: 30px;
    }
}

@media (max-width: 768px) {

    .navbar {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 15px 0;
    }
    
    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-links a {
        font-size: 14px;
        padding: 8px 0;
    }

    .project-hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-navigation {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-btn {
        padding: 12px 25px;
        font-size: 13px;
    }
    
    .project-details,
    .project-description,
    .project-gallery,
    .project-navigation-bottom {
        padding: 40px 15px;
    }
    
    .detail-card {
        padding: 25px 20px;
        gap: 20px;
    }
    
    .detail-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .detail-content h3 {
        font-size: 12px;
    }
    
    .detail-content p {
        font-size: 18px;
    }
    
    .description-header h2,
    .gallery-header h2 {
        font-size: 2rem;
    }
    
    .description-container p {
        font-size: 16px;
    }
    
    .nav-container-bottom {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .project-nav-card {
        padding: 30px 20px;
    }
    
    .nav-title {
        font-size: 16px;
    }

    .buttons {
        gap: 30px;
        flex-direction: column;
    }
    
    .buttons a {
        font-size: 16px;
    }
    
    .numbers {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }
    
    .numbers a {
        font-size: 15px;
    }
    
    .footer {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        text-align: center;
    }
    
    .footer h3 {
        font-size: 18px;
    }
    
    .footer h3::after {
        left: 50%;
        transform: translateX(-50%);

    }
}

@media (max-width: 576px) {

        .navbar {
        padding: 0 10px;
    }
    
    .nav-container {
        padding: 12px 20px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: linear-gradient(135deg, rgba(35, 37, 45, 0.98) 0%, rgba(26, 28, 35, 0.98) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: right 0.4s ease;
        z-index: 1000;
        box-shadow: -5px 0 20px rgba(0,0,0,0.3);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 14px !important;
        padding: 15px 0;
        text-align: center;
        color: white !important;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
    }
    
    .nav-links a:hover {
        color: #ff5912 !important;
        transform: translateX(-10px);
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-item {
        aspect-ratio: 16/9;
    }
    
    .detail-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .nav-card-content {
        flex-direction: column;
        text-align: center !important;
        gap: 15px;
    }
    
    .project-nav-card.next-project .nav-card-content {
        justify-content: center;
    }
    
    .lightbox-content {
        width: 95%;
        height: 70vh;
    }
    
    .lightbox-nav {
        padding: 0 10px;
    }
    
    .lightbox-btn {
        font-size: 18px;
        padding: 10px 15px;
    }

    .footer {
        padding: 30px 15px;
        gap: 25px;
    }
    
    .footer h3 {
        font-size: 19px;
        margin-bottom: 35px;
    }
    
    .footer li {
        margin-bottom: 10px;
    }
    
    .footer-link,
    .footercontact a {
        font-size: 17px;
    }
    
    .footerlogo img {
        max-width: 150px;
        margin-top: 40px;
    }
    
    .footercopyright p {
        padding: 0px 15px;
        font-size: 14px;
        padding-bottom: 4%;
    }
}
























