/** SECTION INTRO */
.intro {
	padding: 0 120px;
	width: 100%;
	margin-bottom: 40px;
}

.intro-heading {
    font-size: 1.5rem;
    margin-bottom: 30px;
    border-left: 4px solid #004aad;
    padding-left: 10px;
}

.intro-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

.intro-image {
	border: 2px solid #e0e0e0;
	border-radius: 12px;
	padding: 20px;
	background: linear-gradient(135deg, #DBEAFE 0%, #BEDBFF 100%);
	display: inline-block;
	width: auto;
	height: auto;
    position: relative;
}

.intro-image img {
	width: 100%;
	border-radius: 8px;
	display: block;
	max-width: 100%;
	height: auto;
}

.intro-text {
	font-size: 17px;
	font-weight: 400;
	line-height: 160%;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
}
.intro-text p {
	margin-bottom: 0;
}

.features {
    list-style: none;
    margin-top: 20px;
}
.features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 10px;
}
.blue {
    background: #004aad;
}
.green {
    background: #28a745;
}
.yellow {
    background: #ffc107;
}

.bubble {
    position: absolute;
    border-radius: 8px;
    color: #fff;
    text-align: center;
    padding: 10px 15px;
    font-weight: bold;
}

.bubble-students {
    top: -24px;
    right: -20px;
    background-color: #5cb8e4;
}

.bubble-students .count {
    font-size: 24px;
}

.bubble-students .label {
    font-size: 14px;
}

.bubble-partners {
    bottom: -20px;
    left: -20px;
    background-color: #7ad1c3;
}

.bubble-partners .count {
    font-size: 24px;
}

.bubble-partners .label {
    font-size: 14px;
}

/* Decorative Circles */
.circle {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(92, 184, 228, 0.5);
    z-index: -1;
}

.circle-top-left {
    width: 150px;
    height: 150px;
    top: -50px;  
    left: -50px; 
}

.circle-bottom-right {
    width: 100px;
    height: 100px;
    bottom: -30px;
    left: 430px;
    background-color: rgba(200, 200, 220, 0.5);
}

/* Responsive */
@media (max-width: 600px) {
	.intro {
		padding: 20px 40px;
		margin-bottom: 0;
	}
	.intro-content {
		grid: none;
		flex-direction: column;
	}
}
@media (min-width: 601px) and (max-width: 1024px) {
    .intro {
		padding: 20px 40px;
		margin-bottom: 0;
	}
	.intro-content {
		grid: none;
		flex-direction: column;
	}
}
@media (min-width: 1025px) and (max-width: 9999px) {
	.intro {
		padding: 40px 60px;
		margin-bottom: 0;
	}
}