/* index.php */

.banner-seven-inner-content {
        padding-bottom: 80px;
    }

    .service-card-simple {
        background: white;
        padding: 2rem;
        border-radius: 12px;
        text-align: center;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        height: 100%;
    }

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

    .service-card-simple .icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #3b82f6, #1d4ed8);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
    }

    .service-card-simple .icon i {
        font-size: 1.5rem;
        color: white;
    }

    .service-card-simple h5 {
        margin-bottom: 1rem;
        font-size: 1.25rem;
        font-weight: 600;
    }

    .service-card-simple p {
        color: #64748b;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .learn-more {
        color: #3b82f6;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
    }

    .learn-more:hover {
        color: #1d4ed8;
    }

    .cta-style-two-area {
        text-align: center;
        padding: 4rem 2rem;
    }

    .cta-style-two-area .title {
        margin-bottom: 1.5rem;
    }

    .cta-style-two-area .disc {
        margin-bottom: 2rem;
        font-size: 1.1rem;
        opacity: 0.9;
    }

    @media (max-width: 768px) {
        .cta-style-two-area {
            padding: 3rem 1rem;
        }
    }

/* Success Stories Background and Layout */
    .success-stories-container {
        min-height: 600px;
        z-index: 0;
    }

    .hero-background {
        background-attachment: fixed;
    }

    /* Responsive Title Sizing */
    .title-responsive {
        font-size: 2rem;
    }

    .subtitle-responsive {
        font-size: 1rem;
    }

    /* Dotted Line Responsive */
    .divider-line {
        border-top: 3px dotted white !important;
    }

    /* Central Vertical Dotted Line for Large Screens */
    .central-dotted-line {
        position: absolute;
        left: 50%;
        top: 45%;
        bottom: 15%;
        width: 3px;
        background-image: repeating-linear-gradient(to bottom,
                white 0px,
                white 8px,
                transparent 8px,
                transparent 16px);
        transform: translateX(-50%);
        z-index: 2;
        opacity: 0.8;
    }

    /* Floating Cards for Large Screens - Alternating Design */
    .floating-card {
        transition: all 0.3s ease;
    }

    .floating-card:hover {
        transform: rotate(0deg) scale(1.05) !important;
        z-index: 10 !important;
    }

    /* Individual Card Animations */
    .floating-card:nth-child(1):hover {
        transform: rotate(-1deg) scale(1.05) translateY(-5px) !important;
    }

    .floating-card:nth-child(2):hover {
        transform: rotate(1deg) scale(1.05) translateY(-5px) !important;
    }

    .floating-card:nth-child(3):hover {
        transform: rotate(0.5deg) scale(1.05) translateY(-5px) !important;
    }

    .floating-card:nth-child(4):hover {
        transform: rotate(-0.5deg) scale(1.05) translateY(-5px) !important;
    }

    @media (max-width: 768px) {
        .title-responsive {
            font-size: 1.4rem;
        }

        .subtitle-responsive {
            font-size: 0.85rem;
        }

        .success-stories-container {
            min-height: 450px;
        }

        .divider-line {
            width: 180px !important;
            margin: 15px auto !important;
        }
    }

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

        .subtitle-responsive {
            font-size: 0.75rem;
        }

        .success-stories-container {
            min-height: 400px;
        }

        .divider-line {
            width: 150px !important;
            margin: 12px auto !important;
        }
    }

    /* Grid Cards for Smaller Screens */
    .success-metric-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .success-metric-card:hover {
        transform: translateY(-3px);
    }

    /* Glassmorphism Effect Support */
    @supports (backdrop-filter: blur(10px)) {

        .floating-card-large,
        .success-metric-card {
            backdrop-filter: blur(10px);
        }
    }

    /* Fallback for browsers without backdrop-filter */
    @supports not (backdrop-filter: blur(10px)) {
        .floating-card-large {
            background: rgba(255, 255, 255, 0.25) !important;
        }

        .success-metric-card {
            background: rgba(255, 255, 255, 0.25) !important;
        }
    }

    /* Responsive Grid Adjustments */
    @media (max-width: 768px) {
        .grid-cards-layout {
            width: 90% !important;
        }

        .grid-cards-layout .col-6 {
            padding: 0.15rem;
        }

        .success-metric-card {
            padding: 12px !important;
        }

        .success-metric-card h4 {
            font-size: 14px !important;
        }

        .success-metric-card h6 {
            font-size: 9px !important;
        }

        .success-metric-card p {
            font-size: 8px !important;
        }
    }

    @media (max-width: 576px) {
        .grid-cards-layout {
            width: 95% !important;
        }

        .success-metric-card {
            padding: 10px !important;
        }

        .success-metric-card .icon {
            width: 35px !important;
            height: 35px !important;
            padding: 6px !important;
        }

        .success-metric-card .icon i {
            font-size: 12px !important;
        }
    }
