<style>
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Q50,80 0,100 Z" fill="%230d6efd" opacity="0.05"/></svg>') no-repeat;
    background-size: cover;
}

.stats-card {
    bottom: -20px;
    left: 20px;
    z-index: 2;
}

.shadow-hover {
    transition: all 0.3s ease;
}

.shadow-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}

.service-card {
    border-radius: 15px;
    transition: all 0.3s ease;
}

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

.icon-wrapper {
    transition: all 0.3s ease;
}

.service-card:hover .icon-wrapper {
    transform: scale(1.1);
}

.country-card {
    border-radius: 15px;
    overflow: hidden;
}

.country-card:hover .card-img-top {
    transform: scale(1.05);
    transition: transform 0.5s ease;
}

.card-img-top {
    transition: transform 0.5s ease;
}

.process-step {
    position: relative;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 40px;
    right: -20px;
    width: 40px;
    height: 2px;
    background: #dee2e6;
}

@media (max-width: 768px) {
    .process-step::before {
        display: none;
    }
}

.testimonial-card {
    border-radius: 15px;
    border: 1px solid rgba(0,0,0,0.05);
}

.cta-section {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="white" opacity="0.05"/></svg>') repeat;
}

.stats-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.stat-item h2 {
    font-weight: 700;
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-info) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.empty-state {
    padding: 3rem;
    background: rgba(0,0,0,0.02);
    border-radius: 15px;
}

.rating i {
    font-size: 0.9rem;
}
</style>
/* assets/css/style.css */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.navbar-brand i {
    margin-right: 10px;
}

.feature-icon {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 50%;
    display: inline-block;
}

.card {
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.study-option-card {
    flex: 1;
    min-width: 150px;
    transition: all 0.3s;
}

.study-option-card:hover {
    background: #f8f9fa;
    border-color: #0d6efd;
}

.rating-card {
    background: #f8f9fa;
    border-radius: 10px;
}

.contact-icon {
    width: 50px;
    text-align: center;
}

.service-icon {
    color: #0d6efd;
}

.badge {
    font-size: 0.8em;
    padding: 5px 10px;
}

.tab-content {
    min-height: 200px;
}

/* Responsive */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2.5rem;
    }
    .lead {
        font-size: 1rem;
    }
}