/* solutions.css */

/* Hero Section */
.solutions-hero {
    background: linear-gradient(to right, #e0f7fa, #bbdefb); /* Light blue gradient */
    padding: 40px 0;
    text-align: center;
    color: #003399;
    border-bottom: 5px solid #0056b3; /* A strong bottom border */
    margin-bottom: 30px; /* Space below hero */
}
.solutions-hero h1 {
    font-family: 'Marcellus SC', serif; /* Use a more elegant font for main hero heading */
    font-size: 2.8em;
    color: #003399;
    margin-bottom: 15px;
    line-height: 1.2;
}

.solutions-hero p {
    font-family: Arial, sans-serif;
    font-size: 1.4em;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
}

/* Solutions Navigation */
.solutions-nav {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.solutions-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px; /* Space between navigation items */
}

.solutions-nav ul li a {
    text-decoration: none;
    color: #0056b3; /* Blue for links */
    font-size: 1.15em;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.solutions-nav ul li a:hover {
    background-color: #0056b3;
    color: #fff;
}

/* Content Sections */
.content-section {
    padding: 50px 0;
    margin-bottom: 40px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.content-section:nth-of-type(odd) {
    background-color: #f9f9f9; /* Alternate background for sections */
}

.content-section h2 {
    font-family: 'Marcellus SC', serif;
    font-size: 2.2em;
    color: #003399;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.content-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #ffd700; /* Yellow underline */
    border-radius: 2px;
}

.section-description {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

/* Edition Cards (CSS Grid Layout) */
.edition-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
    gap: 30px; /* Space between cards */
    padding: 20px 0;
}

.edition-card {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content vertically */
}

.edition-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.edition-card.featured {
    border-color: #ffd700; /* Highlight featured card */
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    background-color: #fefde7;
}

.edition-card img {
    height: 80px; /* Larger icon */
    width: auto;
    margin-bottom: 20px;
}

.edition-card h3 {
    font-family: Georgia, serif;
    font-size: 1.8em;
    color: #003399;
    margin-bottom: 10px;
}

.edition-card .subtitle {
    font-size: 1.1em;
    color: #e65100; /* Orange color for subtitle */
    font-weight: bold;
    margin-bottom: 20px;
}

.edition-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: left; /* Align list items to left */
    width: 100%; /* Take full width of card for alignment */
}

.edition-card ul li {
    font-size: 1em;
    color: #444;
    margin-bottom: 10px;
    padding-left: 25px; /* Indent list items */
    position: relative;
    line-height: 1.4;
}

.edition-card ul li:last-child {
    margin-bottom: 0;
}

.edition-card ul li::before {
    content: '✓'; /* Checkmark icon */
    color: #28a745; /* Green checkmark */
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.edition-card .btn-secondary {
    background-color: #0056b3; /* Blue button for secondary action */
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: auto; /* Push button to the bottom */
}

.btn-secondary:hover {
    background-color: #003d80;
}

/* Key Features Table (Re-imagined as a grid of feature items) */
.key-features-table {
    margin-top: 60px;
    background-color: #eef7ff; /* Light blue background */
    padding: 40px;
    border-radius: 8px;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
}

.key-features-table h3 {
    font-family: Georgia, serif;
    font-size: 1.8em;
    color: #003399;
    text-align: center;
    margin-bottom: 30px;
}

.feature-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.feature-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border-left: 5px solid #ffd700; /* Yellow accent */
}

.feature-item h4 {
    font-family: Arial, sans-serif;
    font-size: 1.3em;
    color: #0056b3;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: bold;
}

.feature-item p {
    font-size: 0.95em;
    color: #444;
    line-height: 1.5;
}

/* Service Steps (Implementation Section) */
.service-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.step-card {
    background-color: #fff;
    border-left: 5px solid #28a745; /* Green accent */
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.step-card h3 {
    font-family: Arial, sans-serif;
    font-size: 1.4em;
    color: #003399;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: bold;
}

.step-card p {
    font-size: 0.95em;
    color: #555;
    line-height: 1.5;
}

/* Features List 2 Column (Training & Customization Sections) */
.features-list-2col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px; /* Space between features */
    padding: 20px 0;
}

.feature-item-list {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.feature-item-list h3 {
    font-family: Arial, sans-serif;
    font-size: 1.3em;
    color: #0056b3;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: bold;
}

.feature-item-list p {
    font-size: 0.95em;
    color: #444;
    line-height: 1.5;
    flex-grow: 1; /* Make paragraphs take up available space */
}

/* Call To Action Banner */
.cta-banner {
    background: linear-gradient(to right, #003399, #0056b3); /* Dark blue gradient */
    color: #fff;
    padding: 60px 0;
    text-align: center;
    border-radius: 8px;
    margin: 50px auto; /* Center the banner */
    max-width: 1000px; /* Max width for the banner */
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}
