/* ============================================
   CAPABILITIES PAGE STYLES
   Add this as capabilities-style.css
   Uses same color scheme as main site
   ============================================ */

/* ============================================
   PAGE HEADER SECTION
   ============================================ */

/* Header section at top of capabilities page */
.page-header {
    background: #2d3a4a; /* Navy background */
    color: #ffffff;
    padding: 4rem 2rem 3rem 2rem;
    text-align: center;
}

/* Main page heading */
.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #ffffff;
}

/* Introduction paragraph under heading */
.page-header p {
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
    opacity: 0.95;
}

/* ============================================
   MAIN CONTENT AREA
   ============================================ */

/* Main content container with padding */
.capabilities-content {
    padding: 5rem 2rem;
    background: #ffffff;
}

/* Container for capabilities grid - extra wide */
.capabilities-container {
    max-width: 1600px;
    margin: 0 auto;
}

/* ============================================
   CAPABILITIES GRID - 5 CARDS PER ROW
   ============================================ */

/* Grid layout - 5 columns, 2 rows = 10 cards total */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 equal columns */
    gap: 2rem; /* Space between cards */
}

/* ============================================
   CAPABILITY CARDS
   ============================================ */

/* Individual capability card styling */
.capability-card {
    background: #ffffff;
    border: 2px solid #e5e5e5; /* Subtle border */
    border-radius: 10px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Card hover effect - lifts and highlights */
.capability-card:hover {
    transform: translateY(-8px);
    border-color: #3b89ae; /* CTA blue border */
    box-shadow: 0 8px 24px rgba(59, 137, 174, 0.2);
}

/* Icon circle container */
/* .capability-icon { */
    /* width: 150px; /* Circle size */ */
    /* height: 150px; */
    /* margin: 0 auto 1.5rem auto; /* Centers the circle */ */
    /* background: #f8f9fa; /* Light gray background */ */
    /* border-radius: 50%; /* Makes it circular */ */
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: center; */
    /* overflow: hidden; /* Keeps image inside circle */ */
    /* border: 2px solid #e5e5e5; */
    /* transition: all 0.3s ease; */
/* } */

/* Icon circle hover effect */
.capability-card:hover .capability-icon {
    border-color: #3b89ae; /* CTA blue border on hover */
    background: #ffffff;
    transform: scale(1.05); /* Slight zoom */
}

/* Image inside the circle */
/* .capability-icon img { */
    /* width: 100%; */
    /* height: 100%; */
    /* object-fit: cover; /* Fills circle while maintaining aspect */ */
/* } */

/* Icon/emoji at top of card */
.capability-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1;
}

/* Capability title */
.capability-card h3 {
    font-size: 1.2rem;
    color: #2d3a4a; /* Navy color */
    margin-bottom: 0.75rem;
    font-weight: 600;
    line-height: 1.3;
}

/* Capability description text */
.capability-card p {
    font-size: 0.95rem;
    color: #2d2d2d;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   RESPONSIVE DESIGN - LARGE TABLETS
   ============================================ */

/* 4 columns for screens 1200px - 1400px */
@media (max-width: 1400px) {
    .capabilities-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ============================================
   RESPONSIVE DESIGN - TABLETS
   ============================================ */

/* 3 columns for tablets */
@media (max-width: 1024px) {
    .capabilities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
}

/* ============================================
   RESPONSIVE DESIGN - SMALL TABLETS
   ============================================ */

/* 2 columns for small tablets */
@media (max-width: 768px) {
    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .capability-card {
        padding: 1.5rem 1rem;
    }
    
    .capability-icon {
        font-size: 2.5rem;
    }
    
    .capability-card h3 {
        font-size: 1.1rem;
    }
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE
   ============================================ */

/* Single column for mobile phones */
@media (max-width: 480px) {
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .capabilities-content {
        padding: 3rem 1rem;
    }
}

/* ============================================
   TURNKEY SERVICE SECTION
   ============================================ */

/* Section between header and capabilities grid */
.turnkey-section {
    background: #f8f9fa; /* Light gray background */
    padding: 3rem 2rem;
    border-top: 3px solid #3b89ae; /* CTA blue accent line at top */
}

/* Turnkey service text */
.turnkey-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #2d2d2d;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

/* Responsive - smaller text on mobile */
@media (max-width: 768px) {
    .turnkey-section {
        padding: 2rem 1.5rem;
    }
    
    .turnkey-text {
        font-size: 1rem;
        line-height: 1.7;
    }
}
