@charset "utf-8";
/* CSS Document */
		.scholarships-section {
            padding: 60px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .section-subtitle {
            text-align: center;
            color: #666;
            font-size: 16px;
            margin-bottom: 50px;
            font-weight: 400;
        }
		
		.scholarships-section h2 {
		  font-family: roboto;
		  font-size: 23px;
		  margin-bottom: 30px;
		  color: #fff;
		  font-weight: 700;
		  background: linear-gradient(45deg, #fa7b2f 0%, #fa7b2f 20%, #efefef00 20%, #efefef00 100%, #efefef00 100%);
		  padding: 6px 17px 3px;
		  border-bottom: 3px solid #fa7b2f;
		}

        .line-inner {
            position: relative;
            margin: 0 auto 35px;
            width: 150px;
            height: 3px;
            background-image: linear-gradient(91deg, rgba(42,72,108,1) 0%, rgba(80,125,179,0) 100%);
        }

        .scholarship-card {
            background: white;
            border-radius: 15px;
            padding: 30px 20px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .scholarship-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(250, 123, 47, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .scholarship-card:hover::before {
            left: 100%;
        }

        .scholarship-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .scholarship-logo {
            width: 120px;
            height: 120px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #fa7b2f 0%, #ff9f5a 100%);
            border-radius: 50%;
            box-shadow: 0 5px 15px rgba(250, 123, 47, 0.3);
            transition: all 0.3s ease;
        }

        .scholarship-card:hover .scholarship-logo {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(250, 123, 47, 0.4);
        }

        .scholarship-logo i {
            font-size: 50px;
            color: white;
        }

        .scholarship-name {
            font-size: 18px;
            font-weight: 600;
            color: #2d79b0;
            margin-bottom: 15px;
            min-height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .scholarship-link {
            display: inline-block;
            padding: 10px 30px;
            background: linear-gradient(135deg, #fa7b2f 0%, #ff9f5a 100%);
            color: white;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(250, 123, 47, 0.3);
        }

        .scholarship-link:hover {
            background: linear-gradient(135deg, #212331 0%, #3a3d54 100%);
            box-shadow: 0 6px 20px rgba(33, 35, 49, 0.4);
            transform: scale(1.05);
            color: white;
        }

        .scholarship-link i {
            margin-left: 5px;
            transition: margin-left 0.3s ease;
        }

        .scholarship-link:hover i {
            margin-left: 10px;
        }

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

        .scholarship-card {
            animation: fadeInUp 0.6s ease-out;
            animation-fill-mode: both;
        }

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

        @media (max-width: 768px) {
            .scholarships-section {
                padding: 40px 0;
            }

            .scholarships-section h2 {
                font-size: 24px;
            }

            .scholarship-logo {
                width: 100px;
                height: 100px;
            }

            .scholarship-logo i {
                font-size: 40px;
            }

            .scholarship-name {
                font-size: 16px;
                min-height: 40px;
            }
        }

