/* ===========================
   HOME PAGE STYLES
   =========================== */


/* ==============================
   RECOGNITION SPLIT SECTION
   ============================== */


.recognision{
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    justify-content: space-around;
}
/* Partners / Backed By */
.partners-section {
    padding: 60px 0;
}

.partners-section h2 {
    text-align: center;
    color: rgb(27, 39, 116);
    margin-bottom: 20px;
}

.partners-section > p {
    max-width: 800px;
    margin: 0 auto 50px auto;
    text-align: center;
    color: #000;
    line-height: 1.8rem;
}

.partners-showcase {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.partner-item {
    width: 300px;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.partner-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.partner-item img {
    max-width: 180px;
    max-height: 120px;
    margin-bottom: 20px;
}

.partner-item p {
    font-size: 18px;
    line-height: 1.6rem;
    color: #000;
}

.partner-item strong {
    display: block;
    color: rgb(27, 39, 116);
    margin-bottom: 6px;
}
/* ==============================
   AWARDS & RECOGNITION
   ============================== */
.awards-section {
    margin: 50px 0;
}
.awards-section h2 {
    text-align: center;
    color: rgb(27, 39, 116);
    margin-bottom: 20px;
}

.awards-showcase {
    max-width: 1000px;
    margin: 0 auto;
}

.award-highlight {
    display: flex;
    gap: 50px;
    align-items: center;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.award-badge {
    flex-shrink: 0;
    width: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.award-badge img {
    width: 100%;
    height: auto;
}

.award-content h3 {
    color: rgb(27, 39, 116);
    margin-bottom: 8px;
}

.award-category {
    font-size: 15px;
    font-weight: bold;
    color: #555;
    margin-bottom: 15px;
}

.award-content p {
    line-height: 1.7rem;
    margin-bottom: 18px;
    text-align: justify;
}

/* Learn more */
.award-content .learn-more {
    font-weight: bold;
}

/* Intro */
.intro-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.intro-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.intro-text {
    flex: 1;
}

.intro-image {
    flex: 1;
    text-align: center;
}

.intro-image img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Featured Algorithms */
.featured-algorithms {
    padding: 60px 0;
}

.featured-algorithms h2 {
    text-align: center;
    margin-bottom: 40px;
}

.algorithm-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.algorithm-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

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

.algorithm-card h3 {
    margin-top: 0;
    color: #0056b3;
}

.learn-more {
    display: inline-block;
    margin-top: 15px;
    color: #007bff;
    font-weight: bold;
}

.algo-subtitle {
    font-size: 15px;
    color: #555;
    font-style: italic;
    margin-bottom: 15px;
}

.algo-features {
    margin: 20px 0 30px 0;
    padding-left: 18px;
}

.algo-features li {
    margin-bottom: 8px;
    font-size: 15px;
}

.algo-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 25px;
}

.algo-stats .stat {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 18px 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.algo-stats .stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.stat-label {
    font-size: 13px;
    color: #666;
    margin-bottom: 6px;
}

.stat-value {
    font-size: 22px;
    font-weight: bold;
    color: rgb(27, 39, 116);
}

.algorithm-card .learn-more {
    display: inline-block;
    margin-top: 10px;
}

.cta-center {
    text-align: center;
}

/* Advantage */
.advantage-section {
    padding: 60px 0;
    background-color: #e9ecef;
}

.advantage-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

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

.advantage-item img {
    height: 60px;
    margin-bottom: 15px;
}

.advantage-item h4 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

/* Target Audience CTA */
.target-audience-cta {
    padding: 60px 0;
    background-color: #ffffff;
}

.cta-box-container {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.cta-box {
    flex: 1;
    max-width: 400px;
    padding: 30px;
    background-color: #004080;
    color: #ffffff;
    border-radius: 8px;
    text-align: center;
}

.cta-box h3 {
    color: #ffffff;
    margin-top: 0;
}

.cta-box .btn-secondary {
    border-color: #00cc99;
    color: #00cc99;
}

.cta-box .btn-secondary:hover {
    background-color: #00cc99;
    color: #ffffff;
}

/* Placeholder styling kept (from style.css) */
.intro-image img {
    background-color: #ccc;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    content: 'Placeholder Image';
}

.advantage-item img {
    background-color: #ddd;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 12px;
    content: 'Icon';
}

.intro-image img[src*="placeholder"] {
    border: 1px dashed #ccc;
    padding: 10px;
}

.advantage-item img[src*="icon_"] {
    border: 1px dashed #ccc;
    padding: 5px;
}

/* Responsive */
@media screen and (max-width: 700px) {
    .partners-showcase {
        gap: 40px;
    }
    .partner-item {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .intro-content {
        flex-direction: column;
    }
    .cta-box-container {
        flex-direction: column;
        align-items: center;
    }
    .cta-box {
        margin-bottom: 20px;
    }
    .award-highlight {
        flex-wrap: wrap;
    }
}
