/* Our Experts Section Styles with Circular Images */
.expert-profile {
    position: relative;
    overflow: hidden;
    text-align: center;
}

.expert-image {
    position: relative;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.circle-image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #1a4b8c;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.expert-profile:hover .circle-image img {
    transform: scale(1.1);
}

.expert-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 75, 140, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    width: 140px;
    height: 140px;
    margin: 0 auto;
}

.expert-profile:hover .expert-overlay {
    opacity: 1;
}

.expert-contact {
    display: flex;
    gap: 12px;
}

.expert-contact a {
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a4b8c;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.expert-contact a:hover {
    background: #1a4b8c;
    color: white;
    transform: translateY(-2px);
}

.expert-title {
    color: #1a4b8c;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.expert-details {
    margin-bottom: 15px;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.85rem;
    text-align: left;
    justify-content: flex-start;
}

.detail-item i {
    width: 20px;
    color: #1a4b8c;
    margin-right: 10px;
    text-align: center;
}

.expert-specialization {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #666;
    border: 3px solid #1a4b8c;
	    margin-top: 10px;
}

.service-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 600;
}


/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
}

/* Desktop Navigation */
.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.desktop-nav .nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
}

.desktop-nav .nav-link:hover {
    color: #1a4b8c;
}

.auth-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    border: 2px solid #1a4b8c;
    transition: all 0.3s;
    display: inline-block;
    text-align: center;
}

.btn {
    background: #1a4b8c;
    color: white;
}

.btn:hover {
    background: #153a6d;
}

.btn-outline {
    background: transparent;
    color: #1a4b8c;
}

.btn-outline:hover {
    background: #1a4b8c;
    color: white;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    padding: 5px;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 9999;
    transition: left 0.3s ease;
    padding: 80px 30px 40px;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    left: 0;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    padding: 10px;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav li {
    margin-bottom: 15px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 15px;
}

.mobile-nav a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: 500;
    display: block;
    padding: 10px 0;
}

.mobile-nav a:hover {
    color: #1a4b8c;
}

.mobile-auth {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: auto;
}

.mobile-auth .btn {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(26, 75, 140, 0.85), rgba(26, 75, 140, 0.75)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 0 80px;
    margin-top: 70px;
    text-align: center;
    position: relative;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero .btn {
    background: transparent;
    border-color: white;
    color: white;
    padding: 12px 30px;
    font-size: 16px;
}

.hero .btn:hover {
    background: white;
    color: #1a4b8c;
}

.hero .btn-outline {
    background: rgba(255, 255, 255, 0.1);
}

.hero .btn-outline:hover {
    background: white;
    color: #1a4b8c;
}

/* Trust Indicators */
.trust-indicators {
    padding: 60px 0;
    background: #f8fafc;
}

.indicators-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.indicator {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.indicator i {
    font-size: 40px;
    color: #1a4b8c;
    margin-bottom: 15px;
}

.indicator h3 {
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 10px;
}

.indicator p {
    color: #64748b;
    font-weight: 500;
    margin: 0;
}

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

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1e293b;
}

.section-title p {
    font-size: 18px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.service-card {
    background: white;
    padding: 20px 15px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: #1a4b8c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 32px;
    color: white;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1e293b;
}

.service-content p {
    color: #64748b;
    margin-bottom: 20px;
}

/* Page Hero for other pages */
.page-hero {
    background: linear-gradient(rgba(26, 75, 140, 0.85), rgba(26, 75, 140, 0.75)), url('images/page-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0 60px;
    margin-top: 70px;
    text-align: center;
    position: relative;
}

.page-hero h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* Page Content */
.page-content {
    padding: 60px 0;
}

.content-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

/* About Page Specific */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
}

.about-image {
    text-align: center;
}

.about-image i {
    font-size: 120px;
    color: #1a4b8c;
    opacity: 0.8;
}

.highlight-box {
    background: #f0f9ff;
    border-left: 4px solid #1a4b8c;
    padding: 25px;
    margin: 25px 0;
    border-radius: 0 8px 8px 0;
}

.highlight-box p {
    margin: 0;
    color: #1e293b;
}

/* Visa Section */
.visa-section {
    padding: 80px 0;
    background: #f8fafc;
}

.visa-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    border-bottom: 1px solid #e2e8f0;
}

.tab-btn {
    background: none;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}

.tab-btn.active {
    color: #1a4b8c;
    border-bottom-color: #1a4b8c;
}

.tab-btn:hover {
    color: #1a4b8c;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.visa-content {
    max-width: 800px;
    margin: 0 auto;
}

.visa-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1e293b;
}

.requirements-list {
    list-style: none;
    margin: 30px 0;
}

.requirements-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #64748b;
    font-size: 16px;
}

.requirements-list i {
    color: #10b981;
    margin-right: 15px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: white;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    background: #f8fafc;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: relative;
}

.testimonial::before {
    content: '"';
    font-size: 80px;
    color: #1a4b8c;
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 25px;
    color: #1e293b;
    line-height: 1.7;
}

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

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #1a4b8c;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.author-avatar i {
    font-size: 24px;
    color: white;
}

.author-info h4 {
    margin-bottom: 5px;
    color: #1e293b;
}

.author-info p {
    color: #64748b;
    margin: 0;
}

/* Footer */
footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    margin-bottom: 20px;
    color: white;
    font-size: 20px;
}

.footer-column p {
    color: #94a3b8;
    line-height: 1.6;
}

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

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

.footer-links a, .footer-links li {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: white;
}

.footer-links i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #1a4b8c;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    color: #94a3b8;
    margin: 0;
}

.footer-bottom a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Header Mobile */
    .desktop-nav, .auth-buttons {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .header-container {
        padding: 0 15px;
    }
    
    .logo-img {
        height: 35px;
    }
    
    /* Hero Mobile */
    .hero {
        padding: 120px 0 60px;
        margin-top: 60px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero .btn {
        width: 100%;
        max-width: 280px;
    }
    
    /* Trust Indicators Mobile */
    .trust-indicators {
        padding: 40px 0;
    }
    
    .indicators-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .indicator {
        padding: 25px 15px;
    }
    
    .indicator i {
        font-size: 32px;
    }
    
    .indicator h3 {
        font-size: 28px;
    }
    
    .indicator p {
        font-size: 14px;
    }
    
    /* Services Mobile */
    .services-section {
        padding: 60px 0;
    }
    
    .section-title {
        margin-bottom: 40px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .section-title p {
        font-size: 16px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon i {
        font-size: 28px;
    }
    
    /* Page Hero Mobile */
    .page-hero {
        padding: 100px 0 50px;
        margin-top: 60px;
    }
    
    .page-hero h1 {
        font-size: 28px;
    }
    
    .page-hero p {
        font-size: 16px;
    }
    
    /* About Content Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .about-image i {
        font-size: 80px;
    }
    
    /* Content Box Mobile */
    .content-box {
        padding: 25px 20px;
    }
    
    /* Visa Section Mobile */
    .visa-section {
        padding: 60px 0;
    }
    
    .visa-tabs {
        flex-direction: column;
        border-bottom: none;
    }
    
    .tab-btn {
        border-bottom: 1px solid #e2e8f0;
        text-align: left;
        border-bottom: 3px solid transparent;
    }
    
    .tab-btn.active {
        border-bottom-color: #1a4b8c;
    }
    
    .requirements-list li {
        font-size: 14px;
    }
    
    .highlight-box {
        padding: 20px;
    }
    
    /* Testimonials Mobile */
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonial {
        padding: 30px 20px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .author-avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-column h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }
    
    .indicators-grid {
        grid-template-columns: 1fr;
    }
}

/* Prevent body scroll when mobile menu is open */
body.no-scroll {
    overflow: hidden;
}