/* Data Analytics Page Styles - BMG Capital Design Standards */

/* Add this at the top or after nav styles */
.navbar {
    background: #0c1e3e;
}

/* Hero Section */
.data-hero-section {
    background: linear-gradient(180deg, #0c1e3e, #254173);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.data-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.data-hero-content h1,
.data-hero-content h2,
.data-hero-content p {
    color: #fff;
}

.data-hero-content h1 {
    font-size: 3.5em;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.2;
}

.data-hero-content p {
    font-size: 1.3em;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Smarter Section */
.smarter-section {
    background: #ffffff;
    padding: 80px 0;
}

.smarter-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

.smarter-content h2 {
    font-size: 2.5em;
    color: #0c1e3e;
    margin-bottom: 20px;
    font-weight: bold;
}

.smarter-content h3 {
    font-size: 1.8em;
    color: #254173;
    margin-bottom: 30px;
    font-weight: 600;
}

.smarter-content p {
    font-size: 1.2em;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* BI Benefits Section */
.bi-benefits-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.bi-benefits-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

.bi-benefits-content h2 {
    font-size: 2.5em;
    color: #0c1e3e;
    margin-bottom: 20px;
    font-weight: bold;
}

.bi-benefits-content > p {
    font-size: 1.2em;
    line-height: 1.6;
    color: #333;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0c1e3e, #254173);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.benefit-icon i {
    font-size: 2em;
    color: white;
}

.benefit-card h3 {
    font-size: 1.4em;
    color: #0c1e3e;
    margin-bottom: 20px;
    font-weight: 600;
}

.benefit-card p {
    font-size: 1em;
    line-height: 1.6;
    color: #666;
}

/* Growth Section */
.growth-section {
    background: #ffffff;
    padding: 80px 0;
}

.growth-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

.growth-content h2 {
    font-size: 2.5em;
    color: #0c1e3e;
    margin-bottom: 20px;
    font-weight: bold;
}

.growth-content > p {
    font-size: 1.2em;
    line-height: 1.6;
    color: #333;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.growth-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.growth-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.growth-card:hover {
    transform: translateY(-5px);
}

.growth-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #254173, #4983C3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.growth-icon i {
    font-size: 2em;
    color: white;
}

.growth-card h3 {
    font-size: 1.4em;
    color: #0c1e3e;
    margin-bottom: 20px;
    font-weight: 600;
}

.growth-card p {
    font-size: 1em;
    line-height: 1.6;
    color: #666;
}

/* Clients Section */
.clients-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.clients-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

.clients-content h3 {
    font-size: 1.8em;
    color: #0c1e3e;
    margin-bottom: 40px;
    font-weight: 600;
}

.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
}

.client-logo {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.client-logo:hover {
    opacity: 1;
}

.client-logo img {
    height: 60px;
    width: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
}

/* Success Story Section */
.success-story-section {
    background: #ffffff;
    padding: 60px 0;
}

.success-story-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

.success-story-content h3 {
    font-size: 1.8em;
    color: #0c1e3e;
    margin-bottom: 30px;
    font-weight: 600;
}

.success-story-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.success-story-card h4 {
    font-size: 1.5em;
    color: #254173;
    margin-bottom: 10px;
    font-weight: 600;
}

.success-story-card p {
    font-size: 1em;
    color: #666;
    margin-bottom: 20px;
}

.read-more-link {
    color: #254173;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more-link:hover {
    color: #4983C3;
}

/* BI Solutions Section */
.bi-solutions-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.bi-solutions-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

.bi-solutions-content h2 {
    font-size: 2.2em;
    color: #0c1e3e;
    margin-bottom: 40px;
    font-weight: bold;
}

.solutions-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
}

.solution-logo {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.solution-logo:hover {
    opacity: 1;
}

.solution-logo img {
    height: 80px;
    width: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.solution-logo:hover img {
    filter: grayscale(0%);
}

/* Common Uses Section */
.common-uses-section {
    background: #ffffff;
    padding: 80px 0;
}

.common-uses-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

.common-uses-content h2 {
    font-size: 2.5em;
    color: #0c1e3e;
    margin-bottom: 20px;
    font-weight: bold;
}

.common-uses-content > p {
    font-size: 1.2em;
    line-height: 1.6;
    color: #333;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.uses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.use-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.use-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.use-card h3 {
    font-size: 1.3em;
    color: #0c1e3e;
    margin-bottom: 15px;
    font-weight: 600;
}

.use-card p {
    font-size: 1em;
    line-height: 1.6;
    color: #666;
}

/* BI Process Section */
.bi-process-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.bi-process-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

.bi-process-content h2 {
    font-size: 2.5em;
    color: #0c1e3e;
    margin-bottom: 60px;
    font-weight: bold;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.process-step {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.process-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0c1e3e, #254173);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.process-icon i {
    font-size: 2em;
    color: white;
}

.process-step h3 {
    font-size: 1.3em;
    color: #0c1e3e;
    margin-bottom: 20px;
    font-weight: 600;
}

.process-step p {
    font-size: 1em;
    line-height: 1.6;
    color: #666;
}

/* Contact Section */
.data-contact-section {
    background: linear-gradient(180deg, #0c1e3e, #254173);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.data-contact-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 30px;
}

.data-contact-content h2 {
    font-size: 2.2em;
    margin-bottom: 40px;
    font-weight: bold;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    text-align: left;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .data-hero-content h1 {
        font-size: 2.5em;
    }
    
    .data-hero-content p {
        font-size: 1.1em;
    }
    
    .smarter-content h2,
    .bi-benefits-content h2,
    .growth-content h2,
    .common-uses-content h2,
    .bi-process-content h2 {
        font-size: 2em;
    }
    
    .benefits-grid,
    .growth-grid,
    .uses-grid,
    .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .client-logos,
    .solutions-logos {
        gap: 30px;
    }
    
    .client-logo img {
        height: 40px;
    }
    
    .solution-logo img {
        height: 60px;
    }
    
    .data-contact-content h2 {
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    .data-hero-content h1 {
        font-size: 2em;
    }
    
    .data-hero-content p {
        font-size: 1em;
    }
    
    .smarter-content h2,
    .bi-benefits-content h2,
    .growth-content h2,
    .common-uses-content h2,
    .bi-process-content h2 {
        font-size: 1.6em;
    }
    
    .benefit-card,
    .growth-card,
    .use-card,
    .process-step {
        padding: 25px 20px;
    }
    
    .data-contact-content h2 {
        font-size: 1.5em;
    }
}

.bmg-white {
    color: #fff !important;
}

.blue-bg {
    background: #0c1e3e !important;
}
.white-title {
    color: #fff !important;
    font-size: 2.8em;
    font-weight: bold;
    margin-bottom: 40px;
}
.footer-title {
    color: #fff !important;
}
.clients-section.blue-bg, .bi-solutions-section.blue-bg {
    background: #0c1e3e !important;
}
.clients-section .client-logo img {
    height: 120px;
    width: auto;
    filter: none;
    opacity: 1;
    background: #fff;
    border-radius: 8px;
    padding: 8px;
}
.bi-solutions-section .solution-logo img {
    filter: none;
    opacity: 1;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
}
.footer-logo {
    margin-bottom: 10px;
}
.footer-description {
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    max-width: 220px;
}

.oracle-logo img {
    height: 64px !important; /* 20% smaller than the default 80px */
    width: auto;
} 