/* Partnerships Page Styles - Based on main.css */

/* Hero Section */
.partnerships-hero {
    background: #0e415b;
    padding: 6rem 0 4rem;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    animation: fadeInLeft 0.8s ease-out;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: 2px;
}

.hero-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.hero-subheadline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.hero-supporting {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.btn-signup {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: #E74C3C;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.btn-signup:hover {
    background: #C0392B;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.btn-signup svg {
    transition: transform 0.3s ease;
}

.btn-signup:hover svg {
    transform: translateX(5px);
}

/* Hero Image */
.hero-image {
    animation: fadeInRight 0.8s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partnership-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: white;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--primary-light) 0%, white 100%);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(14, 65, 91, 0.15);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Partnership Types Section */
.partnership-types {
    padding: 5rem 0;
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.partnership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.partnership-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.partnership-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.partnership-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.partnership-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.partnership-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.partnership-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Partnership Benefits Section */
.partnership-benefits {
    padding: 5rem 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    padding: 2rem;
    border-left: 4px solid var(--primary-color);
    background: var(--primary-light);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.benefit-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* CTA Section */
.partnership-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-heading {
        font-size: 1.75rem;
    }

    .hero-subheadline {
        font-size: 1rem;
    }

    .hero-supporting {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .partnerships-hero {
        padding: 4rem 0 3rem;
    }

    .hero-title {
        font-size: 2.25rem;
        letter-spacing: 1px;
    }

    .hero-heading {
        font-size: 1.5rem;
    }

    .hero-subheadline {
        font-size: 0.95rem;
    }

    .hero-supporting {
        font-size: 0.9rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .partnership-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .partnership-img {
        max-width: 450px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-heading {
        font-size: 1.25rem;
    }

    .hero-subheadline {
        font-size: 0.9rem;
    }

    .hero-supporting {
        font-size: 0.85rem;
    }

    .btn-signup {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .partnership-img {
        max-width: 100%;
    }
}

/* Section 2: Why Partner with MEDTALKS - New Design */
.why-partner {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: white;
    padding: 2rem 0;
}

.why-partner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Left Side: 4 Images in Grid */
.single-image-container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
    height: 450px;
}

.partner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(14, 65, 91, 0.1);
    transition: var(--transition);
}

.partner-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(14, 65, 91, 0.15);
}

/* Right Side: Content */
.why-partner-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 450px;
}

.section-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    display: block;
}

.section-main-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.what-institutions-gain {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

/* Numbered Benefits */
.numbered-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem;
    margin-bottom: 0;
    background: var(--bg-light);
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
    transition: var(--transition);
}

.benefit-item:hover {
    background: var(--primary-light);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(14, 65, 91, 0.08);
}

.benefit-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.benefit-content {
    flex: 1;
}

.benefit-content h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.25rem 0;
}

.benefit-content p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
    margin: 0;
}

/* Section 3: Core Solutions */
.core-solutions {
    padding: 5rem 0;
    background: var(--bg-light);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.solution-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.solution-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.solution-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.solution-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.support-text {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 2rem;
}

/* Section 4: Partnership Models */
.partnership-models {
    padding: 5rem 0;
    background: white;
}

.model-block {
    background: var(--bg-light);
    border-radius: 15px;
    padding: 3rem;
    margin-bottom: 3rem;
    border-left: 5px solid var(--primary-color);
}

.model-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.model-number {
    font-size: 2rem;
}

.model-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.model-intro {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.model-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.use-cases,
.what-we-provide {
    background: white;
    padding: 2rem;
    border-radius: 10px;
}

.use-cases h4,
.what-we-provide h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.use-cases ul,
.what-we-provide ul {
    list-style: none;
    padding: 0;
}

.use-cases li,
.what-we-provide li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.use-cases li:before,
.what-we-provide li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.model-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Section 5: Faculty Representative */
.faculty-representative {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.faculty-representative .section-title,
.faculty-representative .section-subtitle {
    color: white;
}

.faculty-representative .intro-text {
    color: rgba(255, 255, 255, 0.95);
}

.rep-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.rep-block {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.rep-block h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.rep-block ul {
    list-style: none;
    padding: 0;
}

.rep-block li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

.rep-block li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 1.5rem;
    height: 1.5rem;
    background: white;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

/* Section 6: Implementation & Support */
.implementation-support {
    padding: 5rem 0;
    background: white;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.support-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.support-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.support-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.support-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.5;
}

.emphasis-text {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 3rem;
}

/* Final CTA */
.final-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
    color: white;
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Additional Responsive Styles */
@media (max-width: 768px) {
    .model-content {
        grid-template-columns: 1fr;
    }

    .model-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .rep-grid {
        grid-template-columns: 1fr;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .why-partner,
    .core-solutions,
    .partnership-models,
    .faculty-representative,
    .implementation-support,
    .final-cta {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .intro-text {
        font-size: 1rem;
    }

    .model-block {
        padding: 2rem;
    }

    .model-header h3 {
        font-size: 1.5rem;
    }

    .support-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive Styles for Why Partner Section */
@media (max-width: 1200px) {
    .why-partner-grid {
        gap: 3rem;
    }

    .single-image-container {
        height: 400px;
    }

    .why-partner-content {
        height: 400px;
    }

    .section-main-title {
        font-size: 1.5rem;
    }

    .section-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    .why-partner-grid {
        gap: 2.5rem;
    }

    .single-image-container {
        height: 350px;
        gap: 0.75rem;
    }

    .why-partner-content {
        height: 350px;
    }

    .section-main-title {
        font-size: 1.4rem;
    }

    .benefit-item {
        padding: 0.75rem;
        gap: 0.6rem;
    }

    .benefit-number {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    .benefit-content h3 {
        font-size: 0.9rem;
    }

    .benefit-content p {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .why-partner {
        padding: 3rem 0;
    }

    .core-solutions {
        margin-bottom: 3rem;
    }

    .why-partner-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-partner-content {
        height: auto;
        order: 1;
    }

    .single-image-container {
        height: 300px;
        gap: 0.5rem;
        order: 2;
    }

    .section-tag {
        font-size: 0.9rem;
    }

    .section-main-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .section-description {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    .benefit-item {
        padding: 0.75rem;
        margin-bottom: 0.6rem;
    }

    .benefit-number {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    .benefit-content h3 {
        font-size: 0.95rem;
    }

    .benefit-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .why-partner {
        padding: 2.5rem 0;
    }

    .why-partner-grid {
        gap: 1.5rem;
    }

    .single-image-container {
        height: 250px;
        gap: 0.4rem;
    }

    .partner-image {
        border-radius: 12px;
    }

    .section-tag {
        font-size: 0.85rem;
    }

    .section-main-title {
        font-size: 1.5rem;
        margin-bottom: 0.6rem;
    }

    .section-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.5;
    }

    .numbered-benefits {
        gap: 0.5rem;
    }

    .benefit-item {
        padding: 0.6rem;
        gap: 0.6rem;
    }

    .benefit-number {
        width: 32px;
        height: 32px;
        font-size: 1rem;
        border-radius: 8px;
    }

    .benefit-content h3 {
        font-size: 0.9rem;
    }

    .benefit-content p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}

/* New Core Partnership Solutions Card Design */
.solutions-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.solutions-header {
    text-align: center;
    margin-bottom: 3rem;
}

.solutions-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.solutions-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.solutions-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

/* New Solution Card - Full Image with Overlay Design */
.solution-card-new {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 380px;
    display: flex;
    flex-direction: column;
}

.solution-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Image Wrapper - Full Card Background */
.solution-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.solution-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.solution-card-new:hover .solution-image {
    transform: scale(1.05);
}

/* Dark Overlay for Text Readability */
.solution-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

/* Badge */
.solution-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 3;
    backdrop-filter: blur(10px);
}

/* Info Section - Overlays at Bottom */
.solution-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 2;
    color: white;
}

/* Meta Tags */
.solution-meta {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.solution-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

/* Title */
.solution-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.3;
}

/* Description */
.solution-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    margin: 0;
}

/* Learn More Link */
.solution-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.solution-link svg {
    transition: transform 0.3s ease;
}

.solution-link:hover {
    gap: 0.75rem;
}

.solution-link:hover svg {
    transform: translateX(5px);
}

/* Arrow Icon in Bottom Right */
.solution-card-new::before {
    content: '↗';
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    z-index: 3;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.solution-card-new:hover::before {
    background: rgba(255, 255, 255, 0.3);
    transform: translate(3px, -3px);
}

/* Solutions Footer Text */
.solutions-footer-text {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 3rem;
    font-style: italic;
}

/* Responsive Design for Solutions Cards */
@media (max-width: 1200px) {
    .solutions-cards-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .solution-card-new {
        height: 360px;
    }
}

@media (max-width: 768px) {
    .core-solutions {
        padding: 3rem 0;
    }

    .solutions-title {
        font-size: 2rem;
    }

    .solutions-intro {
        font-size: 1rem;
    }

    .solutions-cards-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .solution-card-new {
        height: 340px;
    }

    .solution-info {
        padding: 1.5rem;
    }

    .solution-title {
        font-size: 1.3rem;
    }

    .solution-card-new::before {
        width: 36px;
        height: 36px;
        font-size: 1.3rem;
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 576px) {
    .solutions-header {
        margin-bottom: 2rem;
    }

    .solutions-title {
        font-size: 1.75rem;
    }

    .solutions-intro {
        font-size: 0.95rem;
    }

    .solution-card-new {
        height: 320px;
    }

    .solution-info {
        padding: 1.25rem;
        gap: 0.6rem;
    }

    .solution-title {
        font-size: 1.2rem;
    }

    .solution-desc {
        font-size: 0.85rem;
    }

    .solution-link {
        font-size: 0.85rem;
        margin-top: 0.25rem;
    }

    .solution-badge {
        font-size: 0.6rem;
        padding: 5px 10px;
    }

    .solution-tag {
        font-size: 0.6rem;
        padding: 4px 10px;
    }

    .solution-card-new::before {
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
    }
}
