/* Blueprint Section Styles */

.blueprint-section {
    background: #0092cd;
    position: relative;
}

.blueprint-bg-pattern {
    background-image: 
        linear-gradient(45deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.03) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.03) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
}

/* Blueprint Cards */
.blueprint-cards-container {
    position: relative;
}

.blueprint-card {
    position: relative;
    transition: transform 0.3s ease;
}

.blueprint-card:hover {
    transform: translateY(-5px);
}

.blueprint-card-vision .blueprint-card-inner {
    background: rgba(0, 205, 255, 0.15);
    border: 2px solid rgba(0, 205, 255, 0.3);
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.blueprint-card-mission .blueprint-card-inner {
    background: rgba(13, 13, 43, 0.8);
    border: 2px solid rgba(0, 205, 255, 0.5);
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.blueprint-card-inner {
    transition: all 0.3s ease;
}

.blueprint-card-inner::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(0, 205, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.blueprint-card:hover .blueprint-card-inner::before {
    opacity: 1;
}

/* Blueprint Decorative Lines */
.blueprint-decorative-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.blueprint-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #001D24, transparent);
}

.blueprint-line-top {
    top: 20%;
}

.blueprint-line-bottom {
    bottom: 20%;
}

/* Responsive Blueprint */
@media (max-width: 1024px) {
    .blueprint-card-inner {
        padding: 2rem !important;
    }
}

@media (max-width: 768px) {
    .blueprint-card-inner {
        padding: 1.5rem !important;
    }
    
    .blueprint-card-inner h3 {
        font-size: 2rem !important;
    }
    
    .blueprint-line {
        display: none;
    }
}

.blueprint-section-img{
    bottom: 0;
    right: 0;
    opacity: 0.8;
    transform: translateX(44%) translateY(26%);
}
