/*
 Theme Name: Divi Child
 Theme URI: https://www.elegantthemes.com/gallery/divi/
 Description: Divi Child Theme
 Author: Elegant Themes
 Author URI: https://www.elegantthemes.com
 Template: Divi
 Version: 1.0.0
*/
 
/* =Theme customization starts here
------------------------------------------------------- */


.pa-inline-buttons .et_pb_button_module_wrapper {
    display: inline-block;
}



/* Arrow container */
.scroll-arrow {
  width: 10px;
  height: 10px;
  margin: 0 auto;
  animation: bounce 2s infinite;
}

/* Create the chevron arrow */
.scroll-arrow::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  margin: 0 auto;
}

/* Bounce animation */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}





/**
 * SK Projects Header Contact Styles
 * Add this to your child theme's style.css or Divi Theme Options > Custom CSS
 */

/* Container for all header contact elements */
.sk-header-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
}

/* Phone link styling */
.sk-phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.sk-phone-link:hover {
    color: rgba(255, 255, 255, 0.8);
    opacity: 0.9;
}

/* Phone icon styling */
.sk-phone-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Get a Quote button styling */
.sk-quote-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    color: #ffffff;
    background-color: transparent;
    border: 2px solid #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.sk-quote-button:hover {
    background-color: #ffffff;
    color: #1a1a1a;
}

@media (max-width:1460px) {
	.sk-quote-button {
		padding: 5px 10px;
		font-size:10px;
	}
	.sk-phone-icon {
		width:10px;
		height: 10px;
	}
	.sk-phone-link {
		font-size:10px;
	}
}

/* Responsive adjustments */
@media (max-width: 980px) {
    .sk-header-contact {
        gap: 16px;
    }
    
    .sk-phone-link span {
        font-size: 13px;
    }
    
    .sk-quote-button {
        padding: 8px 16px;
        font-size: 11px;
    }
}

@media (max-width: 767px) {
    .sk-header-contact {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .sk-phone-link:first-child {
        display: none; /* Hide first phone number on mobile to save space */
    }
}

button.frm_button_submit:hover {
    color: #000000 !important;
    border: 1px solid #000000 !important;
    background: #fff !important;
}



/* Project Grid Container */
.syte-project-grid {
    display: grid;
    gap: 20px;
    width: 100%;
}

/* Column layouts */
.syte-grid-columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

.syte-grid-columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.syte-grid-columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

/* Individual project item */
.syte-project-item {
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
    aspect-ratio: 4 / 3;
}

/* Project link - remove default link styling */
.syte-project-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

/* Image wrapper */
.syte-project-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Project image */
.syte-project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Image zoom on hover */
.syte-project-item:hover .syte-project-image {
    transform: scale(1.05);
}

/* Overlay */
.syte-project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

/* Show overlay on hover */
.syte-project-item:hover .syte-project-overlay {
    opacity: 1;
}

/* Overlay content container */
.syte-project-overlay-content {
    width: 100%;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.syte-project-item:hover .syte-project-overlay-content {
    transform: translateY(0);
}

/* Project category */
.syte-project-category {
    display: block;
    color: #ffffff;
    font-size: 10px;
    line-height: 1em;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    opacity: 0.9;
}

/* Project title */
.syte-project-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

/* No projects message */
.syte-no-projects {
    text-align: center;
    padding: 40px;
    color: #666;
}

/* Responsive Design */

/* Tablets */
@media (max-width: 1024px) {
    .syte-grid-columns-4 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .syte-project-title {
        font-size: 20px;
    }
    
    .syte-project-overlay {
        padding: 25px;
    }
}

/* Mobile landscape and small tablets */
@media (max-width: 768px) {
    .syte-grid-columns-4,
    .syte-grid-columns-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .syte-project-grid {
        gap: 15px;
    }
    
    .syte-project-title {
        font-size: 18px;
    }
    
    .syte-project-category {
        font-size: 11px;
    }
    
    .syte-project-overlay {
        padding: 20px;
    }
}

/* Mobile portrait */
@media (max-width: 480px) {
    .syte-grid-columns-4,
    .syte-grid-columns-3,
    .syte-grid-columns-2 {
        grid-template-columns: 1fr;
    }
    
    .syte-project-grid {
        gap: 15px;
        margin: 20px 0;
    }
    
    .syte-project-title {
        font-size: 20px;
    }
}

/* Touch device adjustments - always show overlay on mobile */
@media (max-width: 768px) {
    .syte-project-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    }
    
    .syte-project-overlay-content {
        transform: translateY(0);
    }
}






/* Project Cards Container */
.syte-project-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
    width: 100%;
}

/* Individual project card */
.syte-project-card {
    position: relative;
    background: #ffffff;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Card hover effect */
.syte-project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Card link - remove default styling */
.syte-project-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
}

/* Image wrapper - 16:9 aspect ratio */
.syte-project-card-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    background: #f5f5f5;
}

/* Project image */
.syte-project-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Image zoom on hover */
.syte-project-card:hover .syte-project-card-image {
    transform: scale(1.05);
}

/* Card content area */
.syte-project-card-content {
    padding: 25px;
}

/* Project location */
.syte-project-card-location {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    color: #d4793d; /* Orange color from screenshot */
    text-transform: capitalize;
}

/* Project title */
.syte-project-card-title {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 15px 0;
    line-height: 1.4;
    color: #1a1a1a;
}

/* Project description */
.syte-project-card-description {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    color: #666666;
}

/* No projects message */
.syte-no-projects {
    text-align: center;
    padding: 40px;
    color: #666;
    grid-column: 1 / -1;
}

/* Responsive Design */

/* Tablets and smaller desktops */
@media (max-width: 1024px) {
    .syte-project-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .syte-project-card-content {
        padding: 20px;
    }
    
    .syte-project-card-title {
        font-size: 20px;
    }
    
    .syte-project-card-description {
        font-size: 14px;
    }
}

/* Mobile landscape and small tablets */
@media (max-width: 768px) {
    .syte-project-cards {
        gap: 20px;
        margin: 30px 0;
    }
    
    .syte-project-card-title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .syte-project-card-location {
        font-size: 12px;
    }
}

/* Mobile portrait */
@media (max-width: 640px) {
    .syte-project-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 20px 0;
    }
    
    .syte-project-card-content {
        padding: 20px;
    }
    
    .syte-project-card-title {
        font-size: 20px;
    }
}

/* Ensure cards maintain minimum height on very small screens */
@media (max-width: 480px) {
    .syte-project-card-content {
        padding: 18px;
    }
}




/* Recent Blog Feature Container */
.syte-recent-blog-feature {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 40px 0;
    background: #ffffff;
    overflow: hidden;
}

/* Feature link - remove default styling */
.syte-blog-feature-link {
    display: flex;
    align-items: center;
    gap: 40px;
    text-decoration: none;
    color: inherit;
    width: 100%;
    transition: opacity 0.3s ease;
}

.syte-blog-feature-link:hover {
    opacity: 0.95;
}

/* Image wrapper - 4:3 aspect ratio */
.syte-blog-feature-image-wrapper {
    position: relative;
    flex-shrink: 0;
    width: 50%;
    max-width: 600px;
    overflow: hidden;
}

.syte-blog-feature-image-wrapper::before {
    content: '';
    display: block;
    padding-bottom: 75%; /* 4:3 aspect ratio */
}

/* Feature image */
.syte-blog-feature-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.syte-blog-feature-link:hover .syte-blog-feature-image {
    transform: scale(1.03);
}

/* Content area */
.syte-blog-feature-content {
    flex: 1;
    padding-right: 20px;
}

/* Meta information */
.syte-blog-feature-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 14px;
}

/* Category */
.syte-blog-feature-category {
    color: #d4793d; /* Orange color */
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Separator */
.syte-blog-feature-separator {
    color: #999999;
}

/* Date */
.syte-blog-feature-date {
    color: #666666;
}

/* Feature title */
.syte-blog-feature-title {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 20px 0;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.syte-blog-feature-link:hover .syte-blog-feature-title {
    color: #333333;
}

/* Feature description */
.syte-blog-feature-description {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    color: #666666;
}

/* No posts message */
.syte-no-posts {
    text-align: center;
    padding: 40px;
    color: #666;
}

/* Responsive Design */

/* Large tablets */
@media (max-width: 1200px) {
    .syte-blog-feature-link {
        gap: 30px;
    }
    
    .syte-blog-feature-title {
        font-size: 28px;
    }
    
    .syte-blog-feature-content {
        padding-right: 0;
    }
}

/* Tablets */
@media (max-width: 1024px) {
    .syte-blog-feature-image-wrapper {
        width: 45%;
    }
    
    .syte-blog-feature-title {
        font-size: 26px;
    }
    
    .syte-blog-feature-description {
        font-size: 15px;
    }
}

/* Mobile - Stack layout */
@media (max-width: 768px) {
    .syte-recent-blog-feature {
        gap: 0;
    }
    
    .syte-blog-feature-link {
        flex-direction: column;
        gap: 0;
    }
    
    .syte-blog-feature-image-wrapper {
        width: 100%;
        max-width: 100%;
        margin-bottom: 25px;
    }
    
    .syte-blog-feature-content {
        padding: 0 20px 20px 20px;
    }
    
    .syte-blog-feature-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .syte-blog-feature-meta {
        font-size: 13px;
        margin-bottom: 12px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .syte-recent-blog-feature {
        margin: 30px 0;
    }
    
    .syte-blog-feature-content {
        padding: 0 15px 15px 15px;
    }
    
    .syte-blog-feature-title {
        font-size: 22px;
    }
    
    .syte-blog-feature-description {
        font-size: 14px;
    }
}






/* Blog Archive Container */
.syte-blog-archive {
    margin: 40px 0;
    width: 100%;
}

/* Category Filter Tabs */
.syte-blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.syte-blog-filter-tab {
    padding: 10px 15px;
    background: #f5f5f5;
    border: none;
    border-radius: 0px;
    font-size: 12px;
    font-weight: 500;
    color: #333333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.syte-blog-filter-tab:hover {
    background: #e8e8e8;
    color: #1a1a1a;
}

.syte-blog-filter-tab.active {
    background: #A66F3F;
    color: #ffffff;
}

.syte-blog-filter-tab.active:hover {
    background: #A66F3F;
}

/* Posts Grid */
.syte-blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

/* Individual blog post card */
.syte-blog-post-card {
    background: #ffffff;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.syte-blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Card link */
.syte-blog-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Image wrapper - 16:9 aspect ratio */
.syte-blog-card-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    background: #f5f5f5;
}

.syte-blog-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.syte-blog-post-card:hover .syte-blog-card-image {
    transform: scale(1.05);
}

/* Card content */
.syte-blog-card-content {
    padding: 25px;
}

/* Meta information */
.syte-blog-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 13px;
}

.syte-blog-card-category {
    color: #d4793d;
    font-weight: 600;
}

.syte-blog-card-separator {
    color: #999999;
}

.syte-blog-card-date {
    color: #666666;
}

/* Card title */
.syte-blog-card-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 12px 0;
    color: #1a1a1a;
}

/* Card description */
.syte-blog-card-description {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    color: #666666;
}

/* Load More Button */
.syte-blog-loadmore-wrapper {
    text-align: center;
    margin: 40px 0;
}

.syte-blog-loadmore-btn {
    padding: 10px 25px;
    background: #a66f3f;
    color: #ffffff;
    border: none;
    border-radius: 0px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.syte-blog-loadmore-btn:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.3);
	color: #000;
}

.syte-blog-loadmore-btn:disabled {
    background: #cccccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.syte-blog-loadmore-wrapper.hidden {
    display: none;
}

/* Loading Spinner */
.syte-blog-loading {
    text-align: center;
    padding: 40px;
}

.syte-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #2c3e50;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* No posts message */
.syte-no-posts {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-size: 16px;
    grid-column: 1 / -1;
}

/* Responsive Design */

/* Tablets */
@media (max-width: 1024px) {
    .syte-blog-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .syte-blog-card-content {
        padding: 20px;
    }
    
    .syte-blog-card-title {
        font-size: 18px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .syte-blog-filters {
        gap: 8px;
        margin-bottom: 30px;
    }
    
    .syte-blog-filter-tab {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .syte-blog-posts-grid {
        gap: 20px;
        margin-bottom: 30px;
    }
}

/* Small mobile */
@media (max-width: 640px) {
    .syte-blog-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .syte-blog-archive {
        margin: 30px 0;
    }
    
    .syte-blog-loadmore-wrapper {
        margin: 30px 0;
    }
    
    .syte-blog-loadmore-btn {
        width: 100%;
        max-width: 300px;
    }
}




.sk-project-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sk-project-detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sk-project-detail-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    line-height: 1.4;
}

.sk-project-detail-value {
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
    line-height: 1.5;
}




/* ===================================
   Project Gallery Styles
   =================================== */

.project-gallery-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Hero Image */
.project-gallery-hero {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.project-gallery-hero img {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.project-gallery-hero img:hover {
    transform: scale(1.02);
}

/* Grid Gallery */
.project-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.gallery-grid-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.gallery-grid-item.hidden-image {
    display: none;
}

.gallery-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-grid-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.gallery-grid-item img:hover {
    transform: scale(1.05);
}

/* Load More Button */
.gallery-load-more-wrapper {
    text-align: center;
    margin: 30px 0;
}

.gallery-load-more-btn {
    background: #333;
    color: #fff;
    padding: 14px 36px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.gallery-load-more-btn:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.gallery-load-more-btn.hidden {
    display: none;
}

/* Lightbox */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
}

.lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

/* Lightbox Controls */
.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: none;
    font-size: 40px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 36px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Lightbox Counter */
.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .project-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .project-gallery-wrapper {
        padding: 15px;
    }
    
    .project-gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-load-more-btn {
        padding: 12px 28px;
        font-size: 14px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 32px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
}

/* No Gallery Message */
.no-gallery {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-style: italic;
}

/* Fix Hero Image - Force 16:9 Aspect Ratio */
.project-gallery-hero {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    aspect-ratio: 16 / 9; /* Force 16:9 ratio */
}

.project-gallery-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Crop to fill container */
    object-position: center; /* Center the crop */
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}



/* ===================================
   Project Features Section
   =================================== */

.project-features-section {
    padding: 20px 0px;
    position: relative;
    overflow: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    color: #fff;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border: 2px solid rgba(218, 165, 32, 0.5); /* Gold border */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 32px;
    color: #DAA520; /* Gold color */
}

.feature-item:hover .feature-icon {
    border-color: #DAA520;
    background: rgba(218, 165, 32, 0.1);
    transform: translateY(-5px);
}

.feature-heading {
    font-size: 24px;
    margin: 0 0 15px;
    color: #fff;
}

.feature-description {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .project-features-section {
        padding: 40px 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}


.related-projects {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.related-project-card {
    position: relative;
    display: block;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.related-project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(30, 48, 68, 0.85); /* Dark navy overlay */
    z-index: 1;
}

.related-project-content {
    position: relative;
    z-index: 2;
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.project-category {
    color: #D4A574; /* Gold color */
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.project-title {
    color: #ffffff;
    font-size: 28px;
    font-weight: 400;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.project-location {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 300;
}

/* Responsive */
@media (max-width: 1024px) {
    .related-projects {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .related-projects {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .related-project-card {
        min-height: 250px;
    }
}