/* Visa Consultant Website - Study Visa Adviser Style */

/* Global Styles */
:root {
    --primary-color: #1e40af;
    --secondary-color: #60a5fa;
    --accent-color: #93c5fd;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Top Contact Bar */
.top-contact-bar {
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    min-height: 40px;
}

.contact-info {
    display: flex;
    align-items: center;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    margin-right: 20px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.contact-info a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

.contact-info i {
    margin-right: 5px;
}

.social-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.social-links a {
    color: var(--white);
    margin-left: 15px;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* Mobile responsive for top contact bar */
@media (max-width: 768px) {
    .top-contact-bar {
        padding: 6px 0;
        min-height: 35px;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .contact-info a {
        margin-right: 0;
        font-size: 13px;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 5px;
    }
    
    .social-links a {
        margin: 0 8px;
        font-size: 14px;
    }
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 20px 0;
    background: white !important;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.navbar-logo {
    height: 60px !important;
    width: auto !important;
    max-height: 60px !important;
    margin-right: 0;
}

.logo-image-only {
    height: 80px !important;
    width: auto !important;
    max-height: 80px !important;
    margin-right: 0;
}

.logo-image {
    height: 50px !important;
    width: auto !important;
    max-height: 50px !important;
    margin-right: 12px;
}

.logo-icon {
    font-size: 32px;
    margin-right: 10px;
    color: var(--primary-color);
}

.navbar-brand .logo-text {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.navbar-nav {
    align-items: center;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 20px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
    font-size: 0.95rem;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.dropdown-toggle::after {
    margin-left: 8px;
    vertical-align: middle;
    border-top: 4px solid var(--text-dark);
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    border-bottom: 0;
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
}

.dropdown-toggle:hover::after {
    border-top-color: var(--primary-color);
}

.dropdown-toggle i {
    font-size: 12px;
    margin-left: 6px;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.dropdown-toggle:hover i {
    color: var(--primary-color);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 8px 0;
    margin-top: 8px;
}

.dropdown-item {
    padding: 10px 20px;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

/* Mega Dropdown Menu */
.mega-dropdown .dropdown-menu {
    width: 800px;
    padding: 0;
    border: 2px solid var(--accent-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    overflow: hidden;
    background: white;
    margin-top: 8px;
}

.popular-universities-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, #f1f5f9 100%);
    padding: 30px;
    position: relative;
    border-radius: 10px;
    margin: 0;
}

.popular-universities-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text x="10" y="20" font-size="12" fill="%23e2e8f0" opacity="0.3">🇬🇧</text><text x="80" y="40" font-size="12" fill="%23e2e8f0" opacity="0.3">🇬🇧</text><text x="20" y="80" font-size="12" fill="%23e2e8f0" opacity="0.3">🇬🇧</text><text x="70" y="10" font-size="12" fill="%23e2e8f0" opacity="0.3">🇬🇧</text><text x="50" y="60" font-size="12" fill="%23e2e8f0" opacity="0.3">🇬🇧</text></svg>');
    background-repeat: repeat;
    opacity: 0.4;
    pointer-events: none;
}

.section-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    text-align: left;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.universities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 25px;
}

.university-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.university-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 16px;
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 70px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    margin-bottom: 0;
    justify-content: flex-start;
}

.university-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.university-item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.university-logo {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: contain;
    background: white;
    border: 2px solid #e5e7eb;
    padding: 8px;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: block;
}

.university-item:hover .university-logo {
    border-color: var(--accent-color);
    transform: scale(1.08);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.university-name {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.4;
    flex: 1;
    text-align: left;
    padding-left: 5px;
}

.view-all-link {
    text-align: left;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid #e2e8f0;
}

.view-all-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.view-all-link a:hover {
    color: #06b6d4;
    background: rgba(255, 255, 255, 1);
    transform: translateX(3px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.view-all-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.view-all-link a:hover i {
    transform: translateX(3px);
}

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

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

.article-meta .badge {
    font-size: 0.8rem;
}

.article-body h2 {
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.article-body h3 {
    color: #34495e;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.article-body h4 {
    color: #34495e;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.article-body p {
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #555;
}

.article-body ul, .article-body ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.article-body li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.author-bio {
    background: #f8f9fa;
    border-left: 4px solid #007bff;
}

.related-articles .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-articles .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.sidebar .card {
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.sidebar .list-group-item {
    border: none;
    border-bottom: 1px solid #eee;
}

.sidebar .list-group-item:last-child {
    border-bottom: none;
}

.sidebar .list-group-item:hover {
    background-color: #f8f9fa;
}

.blog-posts .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-posts .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.featured-article .card {
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pagination .page-link {
    color: #007bff;
    border-color: #dee2e6;
}

.pagination .page-item.active .page-link {
    background-color: #007bff;
    border-color: #007bff;
}

/* Enhanced Blog Styles */
.blog-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="white" opacity="0.1"/><circle cx="80" cy="40" r="1.5" fill="white" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="white" opacity="0.1"/><circle cx="90" cy="90" r="2.5" fill="white" opacity="0.1"/></svg>');
    background-size: 50px 50px;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

.blog-posts {
    background: #f8f9fa;
    min-height: 100vh;
}

.featured-article .card {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-article .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.blog-posts .card {
    border-radius: 12px;
    transition: all 0.3s ease;
    background: white;
}

.blog-posts .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.sidebar .card {
    border-radius: 12px;
    background: white;
    transition: transform 0.3s ease;
}

.sidebar .card:hover {
    transform: translateY(-2px);
}

.sidebar .list-group-item:hover {
    background-color: #f8f9fa;
    transform: translateX(5px);
    transition: all 0.3s ease;
}

.sidebar .list-group-item {
    border-radius: 8px;
    margin-bottom: 5px;
}

.sidebar .card-title {
    font-weight: 600;
    color: #2c3e50;
}

.sidebar .badge {
    font-size: 0.75rem;
    padding: 0.4em 0.6em;
}

/* Full screen layout */
.container-fluid {
    max-width: 1400px;
}

/* Professional spacing */
.py-5 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

/* Enhanced typography */
.display-3 {
    font-weight: 800;
    letter-spacing: -0.02em;
}

.lead {
    font-weight: 400;
    line-height: 1.6;
}

/* Card improvements */
.card-title {
    font-weight: 600;
    line-height: 1.3;
}

.card-text {
    line-height: 1.5;
}

/* Button enhancements */
.btn {
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    color: white;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 10px 0;
}

.dropdown-item {
    padding: 8px 20px;
    transition: background-color 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--bg-light);
}

.apply-btn {
    background: var(--primary-color);
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
}

.apply-btn:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

/* Hero Section */
.hero-section {
    position: relative;
    color: var(--white);
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/hero-graduates.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.6);
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 35px;
    opacity: 0.95;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), 0 0 10px rgba(0, 0, 0, 0.5);
    color: var(--white);
    line-height: 1.6;
}

.consultation-btn {
    background: linear-gradient(135deg, #20bf6b 0%, #26de81 100%);
    border: none;
    padding: 18px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(32, 191, 107, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.consultation-btn:hover {
    background: linear-gradient(135deg, #26de81 0%, #20bf6b 100%);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(32, 191, 107, 0.6);
}

.hero-image {
    position: relative;
    z-index: 3;
}

.hero-image img {
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

/* Services Section */
.services-section {
    padding: 80px 0;
}

.service-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 15px;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 2rem;
}

.service-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Statistics Section */
.stats-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    height: 100%;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.author-info h5 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: var(--white);
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.footer-description {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-title {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
}

.contact-info p {
    color: #d1d5db;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.contact-info i {
    color: var(--accent-color);
    width: 16px;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 0;
}

.copyright {
    color: #9ca3af;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .footer-legal {
        flex-direction: column;
        gap: 10px;
        text-align: left;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 20px;
    }
    
    .footer .contact-info {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .footer .contact-item {
        justify-content: center;
        margin-bottom: 15px;
    }
    
    .footer .contact-item i {
        margin-right: 8px;
    }
    
    .contact-item-vertical {
        padding: 6px 10px;
        margin-bottom: 10px;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
        margin-right: 12px;
        box-shadow: 0 2px 6px rgba(30, 64, 175, 0.3);
    }
    
    .contact-icon i {
        color: white !important;
        font-size: 1rem !important;
        font-weight: 600;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .contact-label {
        font-size: 0.75rem;
        color: #1f2937;
    }
    
    .contact-value {
        font-size: 0.8rem;
        color: #374151;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    }
    
    .consultation-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card {
        margin-bottom: 30px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .navbar-nav {
        text-align: center;
        margin-top: 20px;
    }
    
    .apply-btn {
        width: 100%;
        margin-top: 15px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .footer .contact-info {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .footer .contact-item {
        justify-content: center;
        margin-bottom: 15px;
    }
    
    .footer .contact-item i {
        margin-right: 8px;
    }
    
    .contact-item-vertical {
        padding: 6px 8px;
        margin-bottom: 8px;
    }
    
    .contact-icon {
        width: 32px;
        height: 32px;
        margin-right: 10px;
        box-shadow: 0 2px 4px rgba(30, 64, 175, 0.3);
    }
    
    .contact-icon i {
        color: white !important;
        font-size: 0.9rem !important;
        font-weight: 600;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .contact-label {
        font-size: 0.7rem;
        color: #1f2937;
    }
    
    .contact-value {
        font-size: 0.75rem;
        color: #374151;
    }
    
    .social-links {
        text-align: center;
    }
    
    .educational-title {
        font-size: 2.2rem;
    }
    
    .educational-subtitle {
        font-size: 1rem;
    }
    
    .area-card {
        padding: 30px 15px;
        margin-bottom: 20px;
    }
    
    .area-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .dollar-sign {
        font-size: 2rem;
    }
    
    .arrow-up, .arrow-down {
        font-size: 1rem;
    }
    
    .journey-main-title {
        font-size: 2.5rem;
    }
    
    .journey-section-title {
        font-size: 1.8rem;
    }
    
    .journey-description {
        font-size: 1rem;
    }
    
    .institute-main-title {
        font-size: 2.2rem;
    }
    
    .institute-subtitle {
        font-size: 1rem;
    }
    
    .university-item {
        min-width: 150px;
        padding: 15px 10px;
    }
    
    .university-logo {
        height: 50px;
        max-width: 100px;
    }
    
    .university-name {
        font-size: 0.8rem;
    }
    
    .btn-institute {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Enhanced Mobile Responsive Design */
@media (max-width: 768px) {
    /* Hero Section Mobile */
    .hero-section {
        min-height: 70vh;
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
        text-align: center;
    }
    
    .consultation-btn {
        font-size: 1rem;
        padding: 14px 28px;
        width: 100%;
        max-width: 300px;
        display: block;
        margin: 0 auto;
    }
    
    /* Journey Section Mobile */
    .journey-main-title {
        font-size: 2rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .journey-section-title {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
        text-align: center;
    }
    
    .journey-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .journey-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
        text-align: center;
        height: auto;
    }
    
    .journey-card h4 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .journey-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* Educational Area Mobile */
    .educational-area-section {
        padding: 60px 0;
    }
    
    .educational-title {
        font-size: 2rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .educational-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
        text-align: center;
    }
    
    .area-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .area-card h4 {
        font-size: 1.2rem;
        margin-top: 1rem;
    }
    
    .area-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* Institute Section Mobile */
    .institute-main-title {
        font-size: 2rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .institute-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
        text-align: center;
    }
    
    .universities-scroll-container {
        margin: 2rem 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .universities-scroll {
        display: flex;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .university-item {
        padding: 1rem;
        margin: 0.5rem;
        min-width: 150px;
        flex-shrink: 0;
    }
    
    .university-logo {
        height: 40px;
        max-width: 80px;
        margin-bottom: 0.5rem;
    }
    
    .university-name {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    /* Consultation Section Mobile */
    .consultation-section {
        padding: 60px 0;
    }
    
    .consultation-title {
        font-size: 2rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .consultation-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
        text-align: center;
    }
    
    .consultation-features {
        margin: 2rem 0;
        text-align: center;
    }
    
    .consultation-features li {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .consultation-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .consultant-image {
        width: 180px;
        height: 180px;
        margin: 0 auto 1rem;
        display: block;
    }
    
    .rating {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .rating .stars {
        font-size: 1.1rem;
    }
    
    /* Button Mobile */
    .btn-educational {
        width: 100%;
        max-width: 300px;
        display: block;
        margin: 0 auto;
    }
    
    /* Container Mobile */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Section Padding Mobile */
    .py-5 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }
    
    /* Mobile responsive styles for navigation */
    .navbar-nav .nav-link {
        padding: 0.5rem 1rem;
        text-align: center;
    }
}

@media (max-width: 576px) {
    /* Hero Section Small Mobile */
    .hero-section {
        min-height: 60vh;
        padding: 30px 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .consultation-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
    }
    
    /* Journey Section Small Mobile */
    .journey-main-title {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }
    
    .journey-section-title {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .journey-description {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .journey-card {
        padding: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .journey-card h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .journey-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    /* Educational Area Small Mobile */
    .educational-title {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }
    
    .educational-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
        line-height: 1.5;
    }
    
    .area-card {
        padding: 1.2rem 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .area-card h4 {
        font-size: 1rem;
        margin-top: 0.8rem;
    }
    
    .area-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    /* Institute Section Small Mobile */
    .institute-main-title {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }
    
    .institute-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
        line-height: 1.5;
    }
    
    .university-item {
        padding: 0.8rem;
        margin: 0.3rem;
        min-width: 120px;
    }
    
    .university-logo {
        height: 35px;
        max-width: 70px;
        margin-bottom: 0.3rem;
    }
    
    .university-name {
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    /* Consultation Section Small Mobile */
    .consultation-title {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }
    
    .consultation-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
        line-height: 1.5;
    }
    
    .consultation-features li {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }
    
    .consultation-description {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
    
    .consultant-image {
        width: 150px;
        height: 150px;
        margin: 0 auto 0.8rem;
    }
    
    .rating {
        font-size: 0.8rem;
    }
    
    .rating .stars {
        font-size: 1rem;
    }
    
    /* Button Small Mobile */
    .btn-educational {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    /* Container Small Mobile */
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    /* Section Padding Small Mobile */
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    /* Small mobile responsive styles for navigation */
    .navbar-nav .nav-link {
        padding: 0.4rem 0.8rem;
        text-align: center;
        font-size: 0.9rem;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Study Journey Section */
.study-journey-section {
    padding: 80px 0;
    background: var(--white);
}

.journey-main-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    display: inline-block;
}

.journey-main-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.journey-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
}

.journey-description {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 500;
}

.journey-accent-line {
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: 0 auto 50px;
    border-radius: 2px;
}

.journey-card {
    background: var(--primary-color);
    color: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.journey-card:hover {
    transform: translateY(-5px);
}

.journey-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.journey-card p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Educational Area Section */
.educational-area-section {
    position: relative;
    padding: 100px 0;
    background-attachment: fixed;
}

.educational-area-section .text-center {
    position: relative;
    z-index: 10;
}

.educational-area-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.educational-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.7);
}

.educational-subtitle {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 30px;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.6);
}

.accent-line {
    width: 80px;
    height: 3px;
    background: var(--accent-color);
    margin: 0 auto 50px;
    border-radius: 2px;
}

.area-card {
    background: var(--white);
    padding: 40px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    border: 2px solid rgba(96, 165, 250, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.area-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.area-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(96, 165, 250, 0.3);
}

.area-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.business-icon {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.dollar-sign {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 5px;
}

.arrows {
    display: flex;
    gap: 8px;
}

.arrow-up, .arrow-down {
    font-size: 1.2rem;
    color: var(--white);
    font-weight: bold;
}

.btn-educational {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    border: none;
    color: var(--white);
    padding: 18px 45px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(96, 165, 250, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 10;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-educational:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(96, 165, 250, 0.4);
    color: var(--white);
}

/* Institute Section */
.institute-section {
    padding: 80px 0;
    background: var(--white);
}

.institute-main-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.institute-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 500;
}

.institute-accent-line {
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: 0 auto 50px;
    border-radius: 2px;
}

.universities-scroll-container {
    overflow-x: hidden;
    overflow-y: hidden;
    padding: 20px 0;
    margin: 0 -15px;
    position: relative;
}

.universities-scroll {
    display: flex;
    gap: 20px;
    padding: 0 15px;
    min-width: max-content;
    animation: scrollUniversities 60s linear infinite;
    cursor: pointer;
}

@keyframes scrollUniversities {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.university-item {
    flex: 0 0 auto;
    text-align: center;
    padding: 20px 15px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-width: 180px;
    border: 1px solid #f1f5f9;
}

.university-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.university-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.university-item-link:hover {
    text-decoration: none;
    color: inherit;
}

.university-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 15px;
    max-width: 120px;
}

.university-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
    margin: 0;
}

.btn-institute {
    background: var(--accent-color);
    border: none;
    color: var(--white);
    padding: 15px 35px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(96, 165, 250, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-institute:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(96, 165, 250, 0.4);
    color: var(--white);
}

/* Auto-scroll animation for universities */
.universities-scroll-container:hover .universities-scroll {
    animation-play-state: paused;
}

/* Help Section */
.help-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.help-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 20px;
    text-align: center;
}

.help-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 400;
}

.help-accent-line {
    width: 60px;
    height: 3px;
    background: #60a5fa;
    margin: 0 auto 50px;
    border-radius: 2px;
}

.help-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.help-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.help-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.help-card:hover .help-image {
    transform: scale(1.05);
}

.help-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px 20px 20px;
    color: white;
}

.help-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin: 0;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Articles Section */
.articles-section {
    padding: 80px 0;
}

.articles-section .row {
    display: flex;
    flex-wrap: wrap;
}

.articles-section .col-md-3 {
    display: flex;
    margin-bottom: 30px;
}

.article-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-5px);
}

.article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.article-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.4;
    min-height: 2.8rem;
    display: flex;
    align-items: center;
}

.article-author {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 500;
    margin: 0 0 5px 0;
}

.article-date {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
}

.testimonial-video {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.testimonial-video:hover {
    transform: translateY(-5px);
}

.video-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.testimonial-video:hover .play-overlay {
    background: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.testimonial-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px 15px 15px;
    color: white;
}

.testimonial-info h5 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: white;
}

.video-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.video-controls i {
    font-size: 16px;
    color: white;
    cursor: pointer;
    transition: color 0.3s ease;
}

.video-controls i:hover {
    color: var(--accent-color);
}

/* Consultation Section */
.consultation-section {
    padding: 80px 0;
}

.consultant-icon {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 20px;
    opacity: 0.9;
}

.consultant-icon i {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.consultation-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.consultation-subtitle {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.consultation-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.consultation-features li {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.consultation-features i {
    color: var(--primary-color);
    margin-right: 10px;
}

.consultation-description {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.consultant-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.rating {
    text-align: center;
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.rating p {
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.accordion-item {
    border: 1px solid #e5e7eb;
    border-radius: 10px !important;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-button {
    background: var(--white);
    border: none;
    font-weight: 600;
    color: var(--text-dark);
    padding: 20px;
}

.accordion-button:not(.collapsed) {
    background: var(--accent-color);
    color: var(--white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-body {
    padding: 20px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Footer CTA */
.footer-cta {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    padding: 40px 0;
    color: white;
}

.cta-text {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cta-btn:hover {
    background: #f8fafc;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.cta-btn i {
    font-size: 16px;
}

/* Footer Styles */
.footer-main {
    background: #f8fafc;
    color: var(--primary-color);
    position: relative;
    border-top: 1px solid #e2e8f0;
}

.footer-brand-section {
    margin-bottom: 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo-new {
    height: 80px !important;
    width: auto !important;
    max-height: 80px !important;
    margin-right: 0;
}

.footer-logo-image-only {
    height: 100px !important;
    width: auto !important;
    max-height: 100px !important;
    margin-right: 0;
}

.footer-logo-image {
    height: 60px !important;
    width: auto !important;
    max-height: 60px !important;
    margin-right: 15px;
}

.footer-logo .logo-icon {
    font-size: 2rem;
    margin-right: 10px;
}

.footer-logo .logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.footer-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #1e40af;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.3);
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 3px;
    background: #3b82f6;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Footer Contact Info */
.footer .contact-info {
    margin-bottom: 25px;
}

.footer .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer .contact-item i {
    width: 20px;
    margin-right: 10px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.footer .contact-item span {
    word-break: break-word;
}

/* Vertical Contact Info Layout */
.contact-info-vertical {
    margin-bottom: 25px;
}

.contact-item-vertical {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item-vertical:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.3);
    position: relative;
    z-index: 1;
}

.contact-icon i {
    color: white !important;
    font-size: 1.1rem !important;
    font-weight: 600;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.contact-details {
    flex: 1;
}

.contact-label {
    color: #1f2937;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.contact-value {
    color: #374151;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.3;
    word-break: break-word;
}

/* Footer Social Links Fix */
.footer .social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.footer .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.footer .social-link:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.3);
}

.newsletter-signup {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.newsletter-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.newsletter-text {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 15px;
}

.newsletter-form .input-group {
    display: flex;
}

.newsletter-form .form-control {
    border: 1px solid #e2e8f0;
    border-radius: 6px 0 0 6px;
    font-size: 0.9rem;
    padding: 10px 12px;
}

.newsletter-form .btn {
    border-radius: 0 6px 6px 0;
    padding: 10px 15px;
    border: 1px solid #1e40af;
}

.copyright-bar {
    background: var(--primary-color);
    padding: 25px 0;
    border-top: 3px solid var(--accent-color);
    position: relative;
    overflow: hidden;
}

.copyright-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.copyright {
    color: var(--white);
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.developer-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.developer-link:hover {
    color: var(--white);
    text-decoration: underline;
    transform: translateY(-1px);
}

.developer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.developer-link:hover::after {
    width: 100%;
}

.footer-legal {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-legal a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 6px;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.footer-legal a:hover {
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.whatsapp-btn:hover {
    background: #128C7E;
    color: white;
    text-decoration: none;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn i {
    font-size: 28px;
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover i {
    transform: scale(1.1);
}

/* WhatsApp Button Animation */
@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* WhatsApp Button Tooltip */
.whatsapp-btn::before {
    content: "Chat with us on WhatsApp";
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
}

.whatsapp-btn::after {
    content: "";
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #333;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
}

.whatsapp-btn:hover::before,
.whatsapp-btn:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Mobile Responsive WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-btn i {
        font-size: 24px;
    }
    
    .whatsapp-btn::before {
        right: 65px;
        font-size: 12px;
        padding: 6px 10px;
    }
    
    .whatsapp-btn::after {
        right: 55px;
    }
}

@media (max-width: 576px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-btn i {
        font-size: 22px;
    }
    
    .whatsapp-btn::before {
        right: 60px;
        font-size: 11px;
        padding: 5px 8px;
    }
    
    .whatsapp-btn::after {
        right: 50px;
    }
}

/* Footer Responsive Styles */
@media (max-width: 768px) {
    .footer-cta {
        padding: 30px 0;
        text-align: center;
    }
    
    .cta-text {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .cta-subtitle {
        margin-bottom: 20px;
    }
    
    .footer-main {
        padding: 40px 0 20px;
    }
    
    .footer-logo .logo-text {
        font-size: 1.6rem;
    }
    
    .footer-logo-new {
        height: 70px !important;
        max-height: 70px !important;
    }
    
    .footer-logo-image-only {
        height: 80px !important;
        max-height: 80px !important;
    }
    
    .footer-logo-image {
        height: 50px !important;
        max-height: 50px !important;
    }
    
    .navbar-logo {
        height: 50px !important;
        max-height: 50px !important;
    }
    
    .logo-image-only {
        height: 70px !important;
        max-height: 70px !important;
    }
    
    .footer-title {
        font-size: 1.1rem;
        margin-top: 30px;
    }
    
    .footer-title:first-child {
        margin-top: 0;
    }
    
    .social-links {
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .copyright-bar {
        padding: 20px 0;
    }
    
    .copyright {
        font-size: 0.9rem;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .footer-legal {
        gap: 15px;
        justify-content: center;
    }
    
    .footer-legal a {
        font-size: 0.85rem;
        padding: 6px 10px;
    }
    
    .copyright-bar {
        padding: 15px 0;
    }
    
    .copyright {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
    
    .footer-legal {
        gap: 10px;
    }
    
    .footer-legal a {
        font-size: 0.8rem;
        padding: 5px 8px;
    }
    
    .newsletter-signup {
        margin-top: 20px;
    }
    
    .footer-legal {
        justify-content: center;
        margin-top: 15px;
    }
    
    .copyright-bar .row {
        text-align: center;
    }
    
    .copyright-bar .col-md-6:last-child {
        text-align: center !important;
    }
}

@media (max-width: 576px) {
    .cta-text {
        font-size: 1.3rem;
    }
    
    .cta-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .footer-logo .logo-text {
        font-size: 1.4rem;
    }
    
    .footer-logo-image-only {
        height: 70px !important;
        max-height: 70px !important;
    }
    
    .footer-logo-image {
        height: 45px !important;
        max-height: 45px !important;
    }
    
    .navbar-logo {
        height: 45px !important;
        max-height: 45px !important;
    }
    
    .footer-logo-new {
        height: 60px !important;
        max-height: 60px !important;
    }
    
    .logo-image-only {
        height: 60px !important;
        max-height: 60px !important;
    }
    
    .logo-image {
        height: 45px !important;
        max-height: 45px !important;
    }
    
    .footer-title {
        font-size: 1rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .newsletter-form .input-group {
        flex-direction: column;
    }
    
    .newsletter-form .form-control {
        border-radius: 6px;
        margin-bottom: 10px;
    }
    
    .newsletter-form .btn {
        border-radius: 6px;
    }
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background: var(--primary-color) !important;
}

.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Blog Article Styles */
.blog-article {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.article-header {
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 20px;
}

.article-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
}

.article-meta .author {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.article-meta .date {
    color: var(--text-light);
    font-size: 1rem;
}

.article-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 30px 0 15px 0;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.article-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 25px 0 12px 0;
}

.article-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 20px 0 10px 0;
}

.article-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.article-content ul {
    margin: 15px 0;
    padding-left: 25px;
}

.article-content li {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.article-tags {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.tag {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-right: 10px;
    margin-bottom: 10px;
}

/* Article Link Styles */
.article-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex: 1;
    transition: transform 0.3s ease;
}

.article-link:hover {
    text-decoration: none;
    color: inherit;
    transform: translateY(-2px);
}

.article-link:hover .article-card {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Universities Page Styles */
.universities-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #212529;
    padding: 60px 0;
    border-bottom: 1px solid #dee2e6;
}

.universities-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #212529;
    letter-spacing: -0.02em;
}

.universities-hero .lead {
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 2rem;
    font-weight: 400;
}

.search-box {
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.search-box:focus-within {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.search-box .form-control {
    font-size: 1rem;
    padding: 0.75rem 1rem;
}

.search-box .form-control:focus {
    box-shadow: none;
    border: none;
}

.filter-sidebar {
    background: white;
    border-radius: 16px;
    border: 1px solid #e9ecef;
    padding: 2rem;
    position: sticky;
    top: 100px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.filter-sidebar h5 {
    color: #212529;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.filter-section h6 {
    color: #212529;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.filter-section .btn {
    border: 2px solid #e9ecef;
    background: white;
    color: #495057;
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
    text-align: left;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-section .btn:hover {
    background: #f8f9fa;
    border-color: #0d6efd;
    color: #0d6efd;
    transform: translateY(-1px);
}

.filter-section .btn.active {
    background: #0d6efd;
    border-color: #0d6efd;
    color: white;
}

.filter-section .form-check {
    margin-bottom: 0.75rem;
}

.filter-section .form-check-label {
    font-size: 0.9rem;
    color: #495057;
    cursor: pointer;
    font-weight: 500;
}

.filter-section .form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.filter-section .badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
}

.university-card {
    background: white;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    padding: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-width: 280px;
    margin-bottom: 2rem;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.university-card:hover {
    border-color: #0d6efd;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.university-image {
    position: relative;
    overflow: hidden;
    height: 120px;
}

.university-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.university-card:hover .university-image img {
    transform: scale(1.05);
}

.university-info {
    padding: 1.25rem;
    text-align: center;
}

.university-card h5 {
    color: #212529;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    line-height: 1.3;
    min-height: 2.6rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.university-card .text-muted {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #6c757d !important;
    font-weight: 500;
}

.rating-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.rating {
    display: flex;
    align-items: center;
    gap: 1px;
}

.rating i {
    font-size: 0.8rem;
    color: #ffc107;
}

.rating-score {
    font-size: 0.9rem;
    font-weight: 600;
    color: #212529;
    margin-top: 0.5rem;
}

.university-card .btn {
    border-radius: 20px;
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    background: #0d6efd;
    border: none;
}

.university-card .btn:hover {
    background: #0b5ed7;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-weight: 600;
}

/* Additional spacing for university cards */
.universities-grid .col-lg-6 {
    margin-bottom: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.universities-grid .col-lg-6:last-child {
    margin-bottom: 0;
}

.universities-grid .row {
    margin-left: -1rem;
    margin-right: -1rem;
}

/* Ensure proper spacing between cards */
.universities-grid .col-lg-6:first-child {
    padding-right: 1.5rem;
}

.universities-grid .col-lg-6:last-child {
    padding-left: 1.5rem;
}

.universities-grid .col-lg-6:not(:first-child):not(:last-child) {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

/* Universities Page Responsive */
@media (max-width: 768px) {
    .universities-hero h1 {
        font-size: 2.5rem;
    }
    
    .universities-hero .lead {
        font-size: 1.2rem;
    }
    
    .filter-sidebar {
        position: static;
        margin-bottom: 2rem;
    }
    
    .university-card {
        min-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    .universities-grid .col-lg-6 {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .university-card h5 {
        font-size: 1rem;
        min-height: 2.4rem;
    }
    
    .university-image img {
        height: 120px;
    }
    
    .university-info {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .universities-hero h1 {
        font-size: 2rem;
    }
    
    .search-box {
        padding: 0.75rem;
    }
    
    .university-card {
        min-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    .universities-grid .col-lg-6 {
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }
    
    .university-card h5 {
        font-size: 0.95rem;
        min-height: 2.2rem;
    }
    
    .university-image img {
        height: 100px;
    }
    
    .university-info {
        padding: 0.75rem;
    }
    
    .rating i {
        font-size: 0.8rem;
    }
    
    .badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
}

/* Universities Page Styles */
.universities-hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
}

/* Professional Search Styles */
.search-input-group {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    border: none !important;
    outline: none !important;
}

.search-input-group .input-group {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.search-input-group .form-control {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.search-input-group .input-group-text {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

.search-input-group .btn {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Override Bootstrap input group borders */
.search-input-group .input-group {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

.search-input-group .input-group > .form-control:not(:last-child) {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-right: none !important;
    border: none !important;
}

.search-input-group .input-group > .btn:not(:first-child) {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-left: none !important;
    border: none !important;
}

/* Force remove all borders from input group */
.search-input-group * {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.search-input-group .input-group {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

.search-input {
    border-radius: 0px !important;
    
    font-size: 1.1rem;
    border: none !important;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    outline: none !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.search-input::-webkit-input-placeholder {
    color: #6c757d;
}

.search-input::-moz-placeholder {
    color: #6c757d;
}

.search-input:-ms-input-placeholder {
    color: #6c757d;
}

.search-input::placeholder {
    color: #6c757d;
}

.search-input:focus {
    border: none !important;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 1);
    outline: none !important;
}

.search-btn {
    border-radius: 50px !important;
    padding: 15px 25px;
    margin-left: -5px;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.search-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    margin-top: 5px;
    max-height: 300px;
    overflow-y: auto;
    display: none;
}

.suggestion-item {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.suggestion-item:hover {
    background: #f8f9fa;
    transform: translateX(5px);
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item.no-results {
    color: #6c757d;
    font-style: italic;
}

.suggestion-item strong {
    color: var(--primary-color);
    font-size: 1rem;
}

.suggestion-item small {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Enhanced Filter Buttons */
.filter-btn {
    background: white;
    border: 2px solid #e9ecef;
    color: #6c757d;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0 5px 10px 0;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transition: left 0.3s ease;
    z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    left: 0;
}

.filter-btn:hover,
.filter-btn.active {
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Office Details Styling */
.office-details {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.office-details p {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.office-details p:last-child {
    margin-bottom: 0;
}

.office-details strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive Office Details */
@media (max-width: 768px) {
    .office-details {
        padding: 0.8rem;
        margin-top: 0.8rem;
    }
    
    .office-details p {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
    
    .location-actions {
        padding: 1rem;
    }
    
    .location-actions .btn-location {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Enhanced University Cards */
.university-card {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    background: white;
    position: relative;
}

.university-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.university-card-header {
    position: relative;
    overflow: hidden;
}

.university-image {
    transition: transform 0.3s ease;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.university-card:hover .university-image {
    transform: scale(1.05);
}

.university-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.university-card-body {
    padding: 25px;
}

.university-name {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.university-location {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.university-location i {
    color: var(--accent-color);
    margin-right: 8px;
}

.university-description {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.university-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.university-actions {
    display: flex;
    gap: 10px;
}

.btn-university {
    flex: 1;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-university::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-university:hover::before {
    left: 0;
}

.btn-university:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.universities-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.universities-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.search-box .input-group {
    max-width: 600px;
    margin: 0 auto;
}

.search-box .form-control {
    border: none;
    border-radius: 50px 0 0 50px;
    padding: 15px 25px;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.search-box .btn {
    border-radius: 0 50px 50px 0;
    padding: 15px 30px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Filter Section */
.filter-section {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 2px solid #e9ecef;
    color: #6c757d;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

/* University Cards */
.university-category {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.university-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    border: 1px solid #f1f5f9;
}

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

.university-card-header {
    position: relative;
    padding: 0;
    text-align: center;
    background: transparent;
    overflow: hidden;
}

.university-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.university-card:hover .university-image {
    transform: scale(1.05);
}

.university-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.university-card-body {
    padding: 2rem;
}

.university-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.university-location {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.university-location i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.university-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.university-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.stat {
    text-align: center;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.stat-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.university-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.university-actions .btn {
    flex: 1;
    min-width: 120px;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.university-actions .btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.university-actions .btn-primary:hover {
    background: #1e3a8a;
    border-color: #1e3a8a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.university-actions .btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.university-actions .btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

/* CTA Section */
.cta-section {
    background: var(--primary-color) !important;
    padding: 80px 0;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .universities-hero-title {
        font-size: 2.5rem;
    }
    
    .universities-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .search-box .form-control,
    .search-box .btn {
        padding: 12px 20px;
    }
    
    .filter-tabs {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .category-title {
        font-size: 2rem;
    }
    
    .university-card-header {
        padding: 0;
    }
    
    .university-image {
        height: 150px;
    }
    
    .university-card-body {
        padding: 1.5rem;
    }
    
    .university-name {
        font-size: 1.3rem;
    }
    
    .university-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .university-actions {
        flex-direction: column;
    }
    
    .university-actions .btn {
        flex: none;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        text-align: center;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .universities-hero-section {
        padding: 60px 0;
    }
    
    .universities-hero-title {
        font-size: 2rem;
    }
    
    .search-box .form-control,
    .search-box .btn {
        padding: 10px 15px;
        font-size: 1rem;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .university-card-header {
        padding: 0;
    }
    
    .university-card-body {
        padding: 1rem;
    }
    
    .university-image {
        height: 120px;
    }
    
    .university-name {
        font-size: 1.2rem;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
}

/* Visit Us Page Styles */
.visit-hero-section {
    padding: 80px 0;
    background: white;
}

.visit-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.visit-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.visit-hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Find Office Section */
.find-office-section {
    padding: 80px 0;
    background: var(--primary-color) !important;
}

.find-office-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.find-office-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0;
}

.find-office-icon {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
}

/* Country Sections */
.country-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.country-title-small {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.country-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Location Cards */
.location-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.location-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.location-card:hover .location-image img {
    transform: scale(1.05);
}

.location-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 2rem 1.5rem 1.5rem;
    color: white;
}

.location-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.location-actions {
    padding: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.location-actions .btn-location {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.location-actions .btn-location:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: white;
}

.btn-location {
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-location:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.btn-location i {
    font-size: 0.9rem;
}

/* International Locations */
.international-locations-section {
    background: #f8f9fa !important;
}

.international-location {
    height: 100%;
}

/* CTA Section */
.visit-cta-section {
    background: var(--accent-color) !important;
    padding: 30px 0;
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .visit-hero-title {
        font-size: 2.5rem;
    }
    
    .visit-hero-description {
        font-size: 1.1rem;
    }
    
    .find-office-title {
        font-size: 2rem;
    }
    
    .find-office-description {
        font-size: 1rem;
    }
    
    .find-office-icon {
        font-size: 3rem;
        margin-top: 2rem;
    }
    
    .country-title {
        font-size: 2rem;
    }
    
    .country-title-small {
        font-size: 1.5rem;
    }
    
    .country-description {
        font-size: 1rem;
    }
    
    .location-image {
        height: 200px;
    }
    
    .location-name {
        font-size: 1.3rem;
    }
    
    .btn-location {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .cta-title {
        font-size: 1.3rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .visit-cta-section .text-end {
        text-align: center !important;
    }
}

@media (max-width: 576px) {
    .visit-hero-section {
        padding: 60px 0;
    }
    
    .visit-hero-title {
        font-size: 2rem;
    }
    
    .find-office-section {
        padding: 60px 0;
    }
    
    .find-office-title {
        font-size: 1.8rem;
    }
    
    .country-title {
        font-size: 1.8rem;
    }
    
    .location-image {
        height: 180px;
    }
    
    .location-overlay {
        padding: 1.5rem 1rem 1rem;
    }
    
    .location-name {
        font-size: 1.2rem;
    }
    
    .btn-location {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .cta-title {
        font-size: 1.2rem;
    }
}



/* Hover Effects */
.journey-card:hover {
    transform: translateY(-10px) scale(1.02);
    transition: all 0.3s ease;
}

.university-item:hover {
    transform: translateY(-5px) scale(1.05);
    transition: all 0.3s ease;
}

.consultation-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}


/* Educational Area Icon Animations */
@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-8px) rotate(2deg);
    }
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes iconRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes iconBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes iconShake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    75% {
        transform: translateX(5px);
    }
}

@keyframes iconGlow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(30, 64, 175, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(30, 64, 175, 0.6), 0 0 30px rgba(30, 64, 175, 0.4);
    }
}

@keyframes dollarSignPulse {
    0%, 100% {
        transform: scale(1);
        color: #ffd700;
    }
    50% {
        transform: scale(1.2);
        color: #ffed4e;
    }
}

@keyframes arrowMove {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-3px) translateX(2px);
    }
}

@keyframes cameraFlash {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.1);
        filter: brightness(1.5);
    }
}

@keyframes atomSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes scalesBalance {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-5deg);
    }
    75% {
        transform: rotate(5deg);
    }
}

@keyframes titleSlideUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Icon Animation Classes */
.animate-icon-card {
    animation: iconFloat 4s ease-in-out infinite;
    transition: all 0.3s ease;
}

.animate-icon-card:hover {
    transform: translateY(-10px) scale(1.05);
    animation-play-state: paused;
}

.animate-business-icon {
    animation: iconPulse 3s ease-in-out infinite;
}

.animate-dollar-sign {
    animation: dollarSignPulse 2s ease-in-out infinite;
    display: inline-block;
}

.animate-arrow-up {
    animation: arrowMove 2s ease-in-out infinite;
    animation-delay: 0.5s;
}

.animate-arrow-down {
    animation: arrowMove 2s ease-in-out infinite;
    animation-delay: 1s;
}

.animate-camera-icon {
    animation: iconBounce 3s ease-in-out infinite;
}

.animate-camera {
    animation: cameraFlash 2s ease-in-out infinite;
}

.animate-science-icon {
    animation: iconGlow 4s ease-in-out infinite;
}

.animate-atom {
    animation: atomSpin 8s linear infinite;
}

.animate-law-icon {
    animation: iconShake 3s ease-in-out infinite;
}

.animate-scales {
    animation: scalesBalance 3s ease-in-out infinite;
}

.animate-icon-title {
    animation: titleSlideUp 1s ease-out forwards;
    opacity: 0;
    animation-delay: 0.5s;
}

/* Staggered animations for cards */
.animate-icon-card:nth-child(1) {
    animation-delay: 0s;
}

.animate-icon-card:nth-child(2) {
    animation-delay: 0.5s;
}

.animate-icon-card:nth-child(3) {
    animation-delay: 1s;
}

.animate-icon-card:nth-child(4) {
    animation-delay: 1.5s;
}

/* Enhanced hover effects */
.area-card:hover .area-icon {
    transform: scale(1.2) rotate(5deg);
    transition: all 0.3s ease;
}

.area-card:hover .animate-dollar-sign {
    animation: dollarSignPulse 0.5s ease-in-out infinite;
}

.area-card:hover .animate-camera {
    animation: cameraFlash 0.3s ease-in-out infinite;
}

.area-card:hover .animate-atom {
    animation: atomSpin 2s linear infinite;
}

.area-card:hover .animate-scales {
    animation: scalesBalance 0.5s ease-in-out infinite;
}

/* Apply Now Page Styles */
.apply-hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.apply-main-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.apply-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.apply-accent-line {
    width: 100px;
    height: 4px;
    background: var(--accent-color);
    margin: 0 auto;
    border-radius: 2px;
}

/* Simplified Form Styles */
.application-form-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-bottom: 30px;
}

.form-header {
    margin-bottom: 30px;
}

.form-title {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.form-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-control, .form-select {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(30, 64, 175, 0.25);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    border-radius: 8px;
    padding: 15px 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 64, 175, 0.3);
}

.contact-info-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
    margin-top: 30px;
}

.contact-item {
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 10px;
    height: 100%;
}

.contact-item:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(30, 64, 175, 0.2));
}

.contact-icon {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 18px;
    display: block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(30, 64, 175, 0.1);
    transition: all 0.3s ease;
}

.contact-item h5 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
    word-break: break-word;
}

/* Responsive adjustments for contact info */
@media (max-width: 768px) {
    .contact-info-card {
        padding: 30px 20px;
    }
    
    .contact-item {
        padding: 20px 10px;
        margin-bottom: 20px;
    }
    
    .contact-icon {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .contact-item h5 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .contact-item p {
        font-size: 0.9rem;
    }
}

.feature-card {
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h4 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}
