﻿.country-flag {
            width: 40px;
            height: 28px;
            border-radius: 4px;
            margin-right: 10px;
            object-fit: cover;
        }

        .course-item {
            /*background: var(--color-white);*/
            box-shadow: var(--box-shadow);
            padding: 20px;
            border-radius: 20px;
            position: relative;
            border: solid 2px #c21d00;
            padding: 20px;
            min-height: 400px;
            background-size: cover;
            background-position: bottom;
            background-repeat: no-repeat;
            border-radius: 10px;
        }

        .job-btn {
            margin-top: 0px;
            border: 2px solid #ffffff;
            color: #ffffff;
            padding: 2px 25px;
            border-radius: 50px;
            font-weight: bold;
            transition: var(--transition);
        }

        .pricing-feature li i {
            color: #ffffff;
            margin-right: 10px;
        }

        .course-content {
            padding-top: 280px;
        }

        .course-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-top: 1px solid var(--border-info-color);
            padding-top: 5px;
            margin-top: 5px;
        }
.college-table {
            width: 100%;
            border-collapse: collapse;
            font-family: 'Segoe UI', sans-serif;
            margin: 20px 0;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }

            .college-table th {
                background: linear-gradient(135deg, #b8d8ff, #d6f0ff);
                color: #1f2d3d;
                padding: 14px;
                font-size: 15px;
                text-transform: uppercase;
                border: 1px solid #dce6f0;
            }

            .college-table td {
                padding: 12px 14px;
                border: 1px solid #e4e4e4;
                font-size: 14px;
                font-weight: 600;
                color: #2c3e50;
            }

            .college-table tr:nth-child(odd) td {
                background: #fff7f2;
            }

            .college-table tr:nth-child(even) td {
                background: #eef7ff;
            }

            .college-table tr:hover td {
                background: #e8f8ec;
            }

        .serial-no {
            width: 60px;
            text-align: center;
            font-weight: bold;
            color: #ff6b6b;
            background: #fff3cd !important;
        }

        .college-name::before {
            content: "🎓 ";
        }

        .city-name {
            color: #0b7285;
            font-weight: 700;
        }

        .state-name {
            color: #2b8a3e;
            font-weight: 700;
        }

        @media (max-width:768px) {
            .college-table td,
            .college-table th {
                font-size: 13px;
                padding: 10px;
            }
        }