/*
* Projects Section Styles with Extensive Micro-interactions
*/

.projects-section {
    position: relative;
    padding: 60px 0;
    /* background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #eeeff1 100%); */
    background-image: url('../../images/bg/service_bg.jpg');
    overflow: hidden;
}

.dark-theme .projects-section {
    background: linear-gradient(135deg, #1e1e1e 0%, #2d2d30 50%, #1a1a1a 100%);
}

/* Dynamic Background */
.projects-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.grid-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    color: #004b6b;
    opacity: 0.08;
    animation: gridMove 40s linear infinite;
}

@keyframes gridMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(20px) translateY(20px); }
}

.grid-svg {
    width: 100%;
    height: 100%;
}

/* Floating Icons */
.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.float-icon {
    position: absolute;
    width: 45px;
    height: 45px;
    color: #51b146;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.float-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 8px currentColor);
}

.icon-1 {
    top: 18%;
    left: 12%;
    animation: iconFloat 14s ease-in-out infinite;
}

.icon-2 {
    top: 35%;
    right: 18%;
    animation: iconFloat 18s ease-in-out infinite 3s;
}

.icon-3 {
    bottom: 30%;
    left: 20%;
    animation: iconFloat 16s ease-in-out infinite 6s;
}

.icon-4 {
    bottom: 15%;
    right: 15%;
    animation: iconFloat 20s ease-in-out infinite 2s;
}

@keyframes iconFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
        opacity: 0.3; 
    }
    25% { 
        transform: translateY(-25px) rotate(90deg) scale(1.2); 
        opacity: 0.5; 
    }
    50% { 
        transform: translateY(-15px) rotate(180deg) scale(0.9); 
        opacity: 0.4; 
    }
    75% { 
        transform: translateY(-35px) rotate(270deg) scale(1.1); 
        opacity: 0.6; 
    }
}

/* Geometric Shapes */
.geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.shape {
    position: absolute;
    opacity: 0.1;
}

.triangle-1 {
    top: 20%;
    left: 8%;
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 43px solid #51b146;
    animation: shapeRotate 25s linear infinite;
}

.circle-1 {
    top: 60%;
    right: 12%;
    width: 60px;
    height: 60px;
    border: 3px solid #004b6b;
    border-radius: 50%;
    animation: shapeScale 20s ease-in-out infinite;
}

.square-1 {
    bottom: 25%;
    left: 15%;
    width: 40px;
    height: 40px;
    background: #366072;
    animation: shapeRotate 30s linear infinite reverse;
}

.hexagon-1 {
    bottom: 10%;
    right: 25%;
    width: 50px;
    height: 28.87px;
    background: #51b146;
    position: relative;
    animation: shapePulse 15s ease-in-out infinite;
}

.hexagon-1:before,
.hexagon-1:after {
    content: "";
    position: absolute;
    width: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
}

.hexagon-1:before {
    bottom: 100%;
    border-bottom: 14.43px solid #51b146;
}

.hexagon-1:after {
    top: 100%;
    border-top: 14.43px solid #51b146;
}

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

@keyframes shapeScale {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

@keyframes shapePulse {
    0%, 100% { opacity: 0.1; transform: scale(1); }
    50% { opacity: 0.2; transform: scale(1.2); }
}

/* Section Header */
.section-header {
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}

.header-badge {
    display: inline-block;
    position: relative;
    padding: 15px 35px;
    background: rgba(81, 177, 70, 0.1);
    border: 2px solid rgba(81, 177, 70, 0.3);
    border-radius: 50px;
    margin-bottom: 30px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.header-badge:hover {
    background: rgba(81, 177, 70, 0.2);
    border-color: #51b146;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(81, 177, 70, 0.2);
}

.badge-icon {
    display: inline-block;
    margin-right: 12px;
    font-size: 1.1rem;
    color: #51b146;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.header-badge:hover .badge-icon {
    transform: rotate(360deg) scale(1.2);
    color: #004b6b;
}

.badge-text {
    font-size: 14px;
    font-weight: 700;
    color: #51b146;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}

.header-badge:hover .badge-text {
    color: #004b6b;
}

.badge-particles {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.particle {
    display: inline-block;
    width: 4px;
    height: 4px;
    background: #51b146;
    border-radius: 50%;
    margin: 0 2px;
    opacity: 0;
    animation: particleFloat 2s ease-in-out infinite;
}

.particle:nth-child(1) { animation-delay: 0s; }
.particle:nth-child(2) { animation-delay: 0.3s; }
.particle:nth-child(3) { animation-delay: 0.6s; }

@keyframes particleFloat {
    0%, 100% { 
        opacity: 0; 
        transform: translateY(0); 
    }
    50% { 
        opacity: 1; 
        transform: translateY(-10px); 
    }
}

.section-title {
    font-size: 2.0rem;
    font-weight: 800;
    margin-bottom: 25px;
    overflow: hidden;
}

.title-line {
    display: inline-block;
    background:  #004b6b;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleSlideIn 1s ease-out forwards;
    transform: translateY(100%);
}

.title-line.highlighted {
    background: linear-gradient(135deg, #51b146, #004b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation-delay: 0.3s;
}

@keyframes titleSlideIn {
    to {
        transform: translateY(0);
    }
}

.section-subtitle-projects {
    font-size: 1.2rem;
    color: #366072;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.section-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.0rem;
    font-weight: 800;
    color: #51b146;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(81, 177, 70, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: #004b6b;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.dark-theme .title-line {
    background: linear-gradient(135deg, #eeeff1, #51b146);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dark-theme .title-line.highlighted {
    background: linear-gradient(135deg, #51b146, #eeeff1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dark-theme .section-subtitle-projects {
    color: rgba(238, 239, 241, 0.9);
}

.dark-theme .stat-label {
    color: #eeeff1;
}

/* Project Filters */
.project-filters {
    margin-bottom: 60px;
    position: relative;
    z-index: 10;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-tab {
    position: relative;
    padding: 12px 25px;
    background: transparent;
    border: 2px solid rgba(81, 177, 70, 0.2);
    border-radius: 50px;
    color: #366072;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 8px;
    overflow: hidden;
}

.filter-tab:hover {
    border-color: #51b146;
    color: #004b6b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(81, 177, 70, 0.2);
}

.filter-tab.active {
    background: #51b146;
    border-color: #51b146;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(81, 177, 70, 0.3);
}

.tab-icon {
    transition: all 0.3s ease;
}

.filter-tab:hover .tab-icon {
    transform: scale(1.2) rotate(10deg);
}

.filter-tab.active .tab-icon {
    transform: scale(1.1);
}

.tab-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #51b146;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.filter-tab.active .tab-indicator {
    width: 80%;
}

.dark-theme .filter-tab {
    border-color: rgba(81, 177, 70, 0.3);
    color: rgba(238, 239, 241, 0.8);
}

.dark-theme .filter-tab:hover {
    color: #eeeff1;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 10;
    margin-bottom: 80px;
}

/* Project Cards */
.project-card {
    position: relative;
    background: #ffffff;
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(81, 177, 70, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    opacity: 1;
    transform: scale(1);
    outline: none !important;
}

.project-card:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 75, 107, 0.15),
        0 0 0 2px rgba(81, 177, 70, 0.3);
}

/* Card Background Effects */
.card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(81, 177, 70, 0.02), rgba(0, 75, 107, 0.03));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .bg-gradient {
    opacity: 1;
}

.bg-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2351b146' fill-opacity='0.02'%3E%3Ccircle cx='15' cy='15' r='2'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .bg-mesh {
    opacity: 1;
}

.hover-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(81, 177, 70, 0.05), transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    pointer-events: none;
}

.project-card:hover .hover-overlay {
    width: 300%;
    height: 300%;
}

/* Project Image */
.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    z-index: 2;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.03);
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #004b6b, #366072);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 75, 107, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .overlay-gradient {
    opacity: 1;
}

.overlay-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='10' cy='10' r='1'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .overlay-pattern {
    opacity: 1;
}

/* Status Badge */
.status-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 3;
    transition: all 0.3s ease;
}

.status-badge.completed {
    background: rgba(81, 177, 70, 0.9);
    color: white;
}

.status-badge.ongoing {
    background: rgba(255, 193, 7, 0.9);
    color: #212529;
}

.status-badge.planned {
    background: rgba(0, 75, 107, 0.9);
    color: white;
}

.project-card:hover .status-badge {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.status-icon {
    transition: transform 0.3s ease;
}

.project-card:hover .status-icon {
    transform: scale(1.2) rotate(10deg);
}

/* Quick View Button */
.quick-view {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 4;
}

.project-card:hover .quick-view {
    opacity: 1;
}

.quick-view-btn {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #004b6b;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.quick-view-btn:hover {
    transform: scale(1.1);
    background: #51b146;
    color: white;
}

.btn-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.quick-view-btn:active .btn-ripple {
    width: 120%;
    height: 120%;
}

/* Project Content */
.project-content {
    padding: 30px 25px;
    position: relative;
    z-index: 2;
}

/* Category Tag */
.category-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 15px;
    background: rgba(81, 177, 70, 0.1);
    color: #51b146;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid rgba(81, 177, 70, 0.2);
    transition: all 0.3s ease;
}

.project-card:hover .category-tag {
    background: rgba(81, 177, 70, 0.2);
    border-color: #51b146;
    transform: translateX(5px);
}

.tag-icon {
    transition: transform 0.3s ease;
}

.project-card:hover .tag-icon {
    transform: rotate(15deg);
}

/* Project Title */
.project-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #004b6b;
    margin-bottom: 15px;
    line-height: 1.3;
    position: relative;
    transition: all 0.3s ease;
}

.project-card:hover .project-title {
    color: #51b146;
    transform: translateY(-2px);
}

.title-hover-effect {
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #51b146, #004b6b);
    transition: width 0.4s ease;
}

.project-card:hover .title-hover-effect {
    width: 100%;
}

/* Project Description */
.project-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #366072;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.project-card:hover .project-description {
    color: #004b6b;
}

/* Project Meta */
.project-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #366072;
}

.meta-icon {
    color: #51b146;
    transition: all 0.3s ease;
}

.project-card:hover .meta-icon {
    transform: scale(1.2) rotate(10deg);
}

/* Project Actions */
.project-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.action-btn {
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.action-btn.primary {
    background: #51b146;
    color: white;
    flex: 1;
    justify-content: center;
}

.action-btn.secondary {
    background: transparent;
    border: 2px solid rgba(81, 177, 70, 0.3);
    color: #51b146;
    width: 50px;
    height: 50px;
    padding: 0;
    justify-content: center;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.action-btn.primary:hover {
    background: #459a3e;
}

.action-btn.secondary:hover {
    background: rgba(81, 177, 70, 0.1);
    border-color: #51b146;
}

.btn-icon {
    transition: transform 0.3s ease;
}

.action-btn:hover .btn-icon {
    transform: translateX(3px);
}

.action-btn.secondary:hover .btn-icon {
    transform: rotate(15deg) scale(1.1);
}

.btn-background {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.action-btn:hover .btn-background {
    left: 100%;
}

/* Hover Border Effect */
.hover-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.hover-border div {
    position: absolute;
    /* background: #51b146; */
    transition: all 0.3s ease;
}

.border-top {
    top: 0;
    left: 50%;
    width: 0;
    height: 3px;
    transform: translateX(-50%);
}

.border-right {
    top: 50%;
    right: 0;
    width: 3px;
    height: 0;
    transform: translateY(-50%);
}

.border-bottom {
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    transform: translateX(-50%);
}

.border-left {
    top: 50%;
    left: 0;
    width: 3px;
    height: 0;
    transform: translateY(-50%);
}

.project-card:hover .border-top,
.project-card:hover .border-bottom {
    width: 100%;
}

.project-card:hover .border-left,
.project-card:hover .border-right {
    height: 100%;
}

/* Load More Section */
.load-more-section {
    text-align: center;
    position: relative;
    z-index: 10;
}

.load-more-btn {
    position: relative;
    padding: 18px 40px;
    background: linear-gradient(135deg, #004b6b, #366072);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.load-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 75, 107, 0.3);
    background: linear-gradient(135deg, #366072, #51b146);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    color:azure;
}

.load-more-btn:hover .btn-content {
    transform: translateY(-1px);
}

.btn-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.loader-circle {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.btn-success {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    font-size: 1.2rem;
    color: white;
    transition: all 0.3s ease;
}

/* Dark Theme */
.dark-theme .project-card {
    background: rgba(45, 45, 48, 0.9);
    border-color: rgba(81, 177, 70, 0.2);
}

.dark-theme .project-title {
    color: #eeeff1;
}

.dark-theme .project-card:hover .project-title {
    color: #51b146;
}

.dark-theme .project-description {
    color: rgba(238, 239, 241, 0.8);
}

.dark-theme .project-card:hover .project-description {
    color: #eeeff1;
}

.dark-theme .meta-item {
    color: rgba(238, 239, 241, 0.7);
}

.dark-theme .quick-view-btn {
    background: rgba(45, 45, 48, 0.95);
    color: #eeeff1;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .section-stats {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .projects-section {
        padding: 45px 0;
    }
    
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 25px;
    }
    
    .section-title {
        font-size: 2.3rem;
    }
    
    .section-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .filter-tabs {
        gap: 8px;
    }
    
    .filter-tab {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .project-image {
        height: 220px;
    }
    
    .project-content {
        padding: 25px 20px;
    }
    
    .section-title {
        font-size: 2.0rem;
    }
    
    .section-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .filter-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding: 10px 0;
    }
    
    .float-icon {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 576px) {
    .projects-section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 60px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle-projects {
        font-size: 1.1rem;
    }
    
    .project-image {
        height: 200px;
    }
    
    .project-content {
        padding: 20px 15px;
    }
    
    .project-title {
        font-size: 1.2rem;
    }
    
    .project-description {
        font-size: 0.95rem;
    }
    
    .project-meta {
        gap: 15px;
    }
    
    .action-btn.primary {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    .action-btn.secondary {
        width: 45px;
        height: 45px;
    }
    
    .load-more-btn {
        padding: 15px 35px;
        font-size: 0.9rem;
    }
}