/* Main Section */
        .seo-institute-section {
            position: relative;
            background-image: url('../img/individual-course/seo-muj.png.webp');
            background-size: cover;
            background-position: center right;
            background-repeat: no-repeat;
            overflow: hidden;
            padding: 160px 0;
        }
        
        .seo-institute-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /* background: linear-gradient(135deg, rgba(245, 241, 235, 0.95) 0%, rgba(232, 221, 212, 0.9) 70%, rgba(232, 221, 212, 0.7) 100%); */
            z-index: 1;
        }

        .seo-institute-section2 {
            position: relative;
            background-image: url('../img/individual-course/seo-smu.png.webp');
            background-size: cover;
            background-position: center right;
            background-repeat: no-repeat;
            overflow: hidden;
            padding: 80px 0;
        }
        
        .seo-institute-section2::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /* background: linear-gradient(135deg, rgba(245, 241, 235, 0.95) 0%, rgba(232, 221, 212, 0.9) 70%, rgba(232, 221, 212, 0.7) 100%); */
            z-index: 1;
        }

        .section-mb {
            margin-bottom: 60px;
        }

        .institute-wrap {
            position: relative;
            z-index: 2;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* First Row */
        .first-row {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            margin-bottom: 60px;
        }

        /* .left {
            flex: 1;
            max-width: 800px;
            padding-right: 40px;
        }

        .right {
            flex: 1;
            min-height: 100px;
        } */

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .left p {
            font-size: 1.1rem;
            color: #5a6c7d;
            line-height: 1.7;
            margin-bottom: 0;
        }

        /* Statistics Section */
        .statistic-wrap {
            margin-bottom: 50px;
        }

        .leading-cards {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }

        .leading-card-item {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 30px 20px;
            text-align: center;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
        }

        .leading-card-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        }

        .leading-card-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
            border-radius: 15px;
            pointer-events: none;
        }

        .lead-count {
            font-size: 3rem;
            font-weight: 800;
            color: #e67e22;
            margin-bottom: 10px;
            line-height: 1;
        }

        .lead-title {
            font-size: 0.95rem;
            color: #2c3e50;
            font-weight: 600;
            line-height: 1.4;
        }

        /* Button */
        .primaryBtn {
            display: inline-block;
            background: linear-gradient(45deg, #e67e22, #f39c12);
            color: white;
            padding: 15px 40px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .primaryBtn2 {
            background: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 50px;
            padding: 10px 25px;
            font-family: 'Queens-Medium', sans-serif;
            font-size: 16px;
            font-weight: 500;
            color: #333;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }  

        .primaryBtn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
            background: linear-gradient(45deg, #d35400, #e67e22);
        }

        /* Institute Image */
        .institute-image {
            display: none;
        }

        /* Card Animation */
        .leading-card-item {
            animation: fadeInUp 0.6s ease forwards;
        }

        .leading-card-item:nth-child(1) { animation-delay: 0.1s; }
        .leading-card-item:nth-child(2) { animation-delay: 0.2s; }
        .leading-card-item:nth-child(3) { animation-delay: 0.3s; }
        .leading-card-item:nth-child(4) { animation-delay: 0.4s; }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Tablet Styles */
        @media screen and (max-width: 1024px) {
            .seo-institute-section {
                padding: 60px 0;
            }

            .seo-institute-section2 {
                padding: 60px 0;
            }

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

            .left {
                padding-right: 20px;
                max-width: 700px;
            }

            .leading-cards {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }

            .institute-image {
                display: none;
            }

            .lead-count {
                font-size: 2.5rem;
            }

            .leading-card-item {
                padding: 25px 15px;
            }
        }

        /* Mobile Styles */
        @media screen and (max-width: 768px) {
            .seo-institute-section {
                padding: 40px 0;
            }

            .seo-institute-section2 {
                padding: 40px 0;
            }

            .container {
                padding: 0 15px;
            }

            .first-row {
                flex-direction: column;
                margin-bottom: 40px;
            }

            .left {
                padding-right: 0;
                margin-bottom: 30px;
                text-align: center;
            }

            .section-title {
                font-size: 1.8rem;
                margin-bottom: 15px;
            }

            .left p {
                font-size: 1rem;
                text-align: left;
            }

            .leading-cards {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .leading-card-item {
                padding: 20px 15px;
            }

            .lead-count {
                font-size: 2.2rem;
            }

            .lead-title {
                font-size: 0.85rem;
            }

            .institute-image {
                display: none;
            }

            .primaryBtn {
                padding: 12px 30px;
                font-size: 0.9rem;
            }
        }

        /* Small Mobile Styles */
        @media screen and (max-width: 480px) {
            .seo-institute-section {
                padding: 30px 0;
            }

            .seo-institute-section2 {
                padding: 30px 0;
            }

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

            .left p {
                font-size: 0.95rem;
            }

            .leading-cards {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .leading-card-item {
                padding: 25px 20px;
            }

            .lead-count {
                font-size: 2.5rem;
            }

            .lead-title {
                font-size: 0.9rem;
            }

            .primaryBtn {
                padding: 12px 25px;
                font-size: 0.85rem;
            }

            .statistic-wrap {
                margin-bottom: 30px;
            }
        }

        /* Extra Small Mobile */
        @media screen and (max-width: 320px) {
            .container {
                padding: 0 10px;
            }

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

            .lead-count {
                font-size: 2rem;
            }

            .leading-card-item {
                padding: 20px 15px;
            }
        }

        /* Large Desktop */
        @media screen and (min-width: 1400px) {
            /* .container {
                max-width: 1400px;
            } */

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

            .left p {
                font-size: 1.2rem;
            }

            .leading-cards {
                gap: 40px;
            }

            .leading-card-item {
                padding: 40px 25px;
            }

            .lead-count {
                font-size: 3.5rem;
            }

            .lead-title {
                font-size: 1rem;
            }
        }