/* Services Pages Styles */

/* Service Hero Section */
.service-hero {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.service-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.service-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.9) 0%, rgba(13, 71, 161, 0.85) 100%);
}

.service-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.service-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.service-icon i {
    font-size: 2.5rem;
    color: white;
}

.service-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.service-hero-content p {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* Service Overview */
.service-overview {
    padding: 5rem 0;
    background: #f8fafc;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-content h2 {
    font-size: 2.2rem;
    color: #1a237e;
    margin-bottom: 1.5rem;
}

.overview-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.overview-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a237e;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

.overview-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Service Features */
.service-features {
    padding: 5rem 0;
}

.service-features h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #1a237e;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: #1a237e;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
}

/* Study Programs */
.study-programs {
    padding: 5rem 0;
    background: #f8fafc;
}

.study-programs h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #1a237e;
    margin-bottom: 3rem;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.program-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #1a237e;
}

.program-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.program-icon i {
    font-size: 1.5rem;
    color: white;
}

.program-card h3 {
    font-size: 1.2rem;
    color: #1a237e;
    margin-bottom: 1rem;
}

.program-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.program-card ul li {
    padding: 0.5rem 0;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
}

.program-card ul li:last-child {
    border-bottom: none;
}

.program-duration {
    color: #1a237e;
    font-weight: 600;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.program-duration i {
    margin-right: 0.5rem;
}

/* Admission Process */
.admission-process {
    padding: 5rem 0;
}

.admission-process h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #1a237e;
    margin-bottom: 3rem;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #1a237e, #0d47a1);
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(26, 35, 126, 0.3);
}

.step-content {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    flex: 1;
}

.step-content h3 {
    font-size: 1.2rem;
    color: #1a237e;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

/* Service Destinations */
.service-destinations {
    padding: 5rem 0;
    background: #f8fafc;
}

.service-destinations h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #1a237e;
    margin-bottom: 3rem;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.destination-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.destination-card img {
    width: 60px;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.destination-card h3 {
    font-size: 1rem;
    color: #1a237e;
    margin-bottom: 0.5rem;
}

.destination-card p {
    font-size: 0.85rem;
    color: #666;
}

/* Conference Features */
.conference-features {
    padding: 5rem 0;
    background: #f8fafc;
}

.conference-features h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #1a237e;
    margin-bottom: 3rem;
}

/* Conference Types */
.conference-types {
    padding: 5rem 0;
}

.conference-types h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #1a237e;
    margin-bottom: 3rem;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.type-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.type-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.type-card-content {
    padding: 1.5rem;
}

.type-card h3 {
    font-size: 1.3rem;
    color: #1a237e;
    margin-bottom: 0.5rem;
}

.type-card p {
    color: #666;
    line-height: 1.6;
}

/* Work Benefits */
.work-benefits {
    padding: 5rem 0;
    background: #f8fafc;
}

.work-benefits h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #1a237e;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.2rem;
    color: #1a237e;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: #666;
}

/* Work Countries */
.work-countries {
    padding: 5rem 0;
}

.work-countries h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #1a237e;
    margin-bottom: 3rem;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.country-work-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.country-work-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.country-work-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.country-work-content {
    padding: 1.5rem;
}

.country-work-content h3 {
    font-size: 1.3rem;
    color: #1a237e;
    margin-bottom: 0.5rem;
}

.country-work-content p {
    color: #666;
    margin-bottom: 1rem;
}

.country-work-content ul {
    list-style: none;
    padding: 0;
}

.country-work-content ul li {
    padding: 0.3rem 0;
    color: #555;
    font-size: 0.9rem;
}

.country-work-content ul li i {
    color: #1a237e;
    margin-right: 0.5rem;
}

/* Visa Types */
.visa-types {
    padding: 5rem 0;
    background: #f8fafc;
}

.visa-types h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #1a237e;
    margin-bottom: 3rem;
}

.visa-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.visa-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #1a237e;
    transition: all 0.3s ease;
}

.visa-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.visa-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.visa-icon i {
    font-size: 2rem;
    color: white;
}

.visa-card h3 {
    font-size: 1.3rem;
    color: #1a237e;
    margin-bottom: 0.5rem;
}

.visa-card p {
    color: #666;
    margin-bottom: 1rem;
}

.visa-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.visa-card ul li {
    padding: 0.4rem 0;
    color: #555;
    font-size: 0.9rem;
}

.visa-card ul li i {
    color: #4caf50;
    margin-right: 0.5rem;
}

/* Visa Requirements */
.visa-requirements {
    padding: 5rem 0;
}

.visa-requirements h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #1a237e;
    margin-bottom: 3rem;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.requirement-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.requirement-card h3 {
    font-size: 1.3rem;
    color: #1a237e;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.requirement-card h3 i {
    color: #0d47a1;
}

.requirement-card ul {
    list-style: none;
    padding: 0;
}

.requirement-card ul li {
    padding: 0.5rem 0;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.requirement-card ul li:last-child {
    border-bottom: none;
}

.requirement-card ul li i {
    color: #1a237e;
    font-size: 0.8rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .features-grid,
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .destinations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-hero {
        height: 350px;
    }
    
    .service-hero-content h1 {
        font-size: 2rem;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .overview-image {
        order: -1;
    }
    
    .overview-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .features-grid,
    .programs-grid,
    .types-grid,
    .countries-grid,
    .visa-grid,
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline::before {
        left: 20px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* RTL Support */
[dir="rtl"] .process-timeline::before {
    left: auto;
    right: 30px;
}

[dir="rtl"] .step-content {
    text-align: right;
}

[dir="rtl"] .feature-card,
[dir="rtl"] .program-card,
[dir="rtl"] .requirement-card {
    text-align: right;
}

[dir="rtl"] .program-duration i,
[dir="rtl"] .country-work-content ul li i,
[dir="rtl"] .visa-card ul li i,
[dir="rtl"] .requirement-card ul li i {
    margin-right: 0;
    margin-left: 0.5rem;
}

[dir="rtl"] .requirement-card h3 {
    flex-direction: row-reverse;
}
