/* Services Page Specific Styles */
:root {
    --primary-color: #0b1120;
    --secondary-color: #d4af37; /* Golden */
    --accent-color: #f8f9fa;
    --text-white: #ffffff;
    --text-gray: #a0aec0;
}

/* ==========================================================================
   Services Hero Section
   ========================================================================== */
.services-hero-section {
    background-color: var(--primary-color);
    background-image: url('/images/service.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 160px 0 100px;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.services-hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    /* Reduced opacity so background image shines through beautifully */
    background: linear-gradient(180deg, rgba(11, 17, 32, 0.4) 0%, rgba(11, 17, 32, 0.7) 100%);
    z-index: 0;
}

.services-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.hero-tag .tag-line {
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.hero-tag .tag-text {
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    font-weight: 600;
}

.services-hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    color: var(--text-white);
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.services-hero-title span {
    color: var(--secondary-color);
}

.services-hero-desc {
    font-size: 1.15rem;
    color: #f1f5f9;
    line-height: 1.8;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
    max-width: 700px;
    margin: 0 auto;
}

/* ==========================================================================
   Process Of Work Section
   ========================================================================== */
.process-section {
    background-image: url('/images/our service.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 100px 0;
    background-color: #f7fbff;
}

.process-section .container {
    position: relative;
    z-index: 1;
}

.process-header {
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.process-tag {
    display: inline-block;
    background-color: rgba(26, 115, 232, 0.1);
    color: var(--primary-color);
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.process-tag i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.process-header .section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}
.process-header .section-title span {
    color: #1a73e8; /* Blue accent */
    border-bottom: 4px solid var(--secondary-color);
    padding-bottom: 2px;
}

.process-subtitle {
    font-size: 1.1rem;
    color: #5f6368;
    line-height: 1.8;
}

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

/* Card Base */
.process-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 50px 30px 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 4px solid transparent;
}
.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Colors Configuration */
.card-color-1 { --card-theme: #1a73e8; } /* Blue */
.card-color-2 { --card-theme: #34a853; } /* Green */
.card-color-3 { --card-theme: #f9ab00; } /* Yellow/Gold */

.process-card {
    border-bottom-color: var(--card-theme);
}

/* Number Badge */
.card-number-badge {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--card-theme);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 10px 20px;
    border-radius: 0 0 20px 0;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
}
.card-number-badge::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0; 
    height: 0; 
    border-left: 10px solid transparent;
    border-right: 0px solid transparent;
    border-top: 10px solid var(--card-theme);
    filter: brightness(0.7);
}

/* Dotted Decoration */
.card-dots-decor {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    background-image: radial-gradient(var(--card-theme) 15%, transparent 16%);
    background-size: 8px 8px;
    opacity: 0.3;
}

/* Icon Box */
.process-icon-box {
    width: 65px;
    height: 65px;
    background-color: var(--card-theme);
    opacity: 0.15;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
}
/* Actual icon overlay since we used opacity on the background box */
.process-card::before {
    content: '';
}
/* Let's fix icon box to have solid text and faint background */
.process-card .process-icon-box {
    position: relative;
    background: transparent;
    opacity: 1;
    margin-bottom: 20px;
}
.process-card .process-icon-box::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: var(--card-theme);
    opacity: 0.15;
    border-radius: 50%;
    z-index: 0;
}
.process-card .process-icon-box i {
    color: var(--card-theme);
    font-size: 1.6rem;
    position: relative;
    z-index: 1;
}

.process-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.4;
}

.process-card-desc {
    color: #5f6368;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.process-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.process-card-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #5f6368;
    line-height: 1.5;
}

.process-card-list li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--card-theme);
    font-size: 0.85rem;
}





/* ==========================================================================
   Visa Banner Section
   ========================================================================== */
.visa-banner-section {
    position: relative;
    background-image: url('/images/about.jpg'); /* Reuse existing relevant image if exact not found, but let's assume it's set in inline style if needed, or we just use primary color */
    background-color: var(--primary-color);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    color: var(--text-white);
}

.visa-banner-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, rgba(11,17,32,0.95) 0%, rgba(11,17,32,0.8) 50%, rgba(11,17,32,0.4) 100%);
    z-index: 0;
}

.visa-banner-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.visa-banner-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
}

.visa-banner-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e2e8f0;
    margin-bottom: 30px;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .visa-banner-section::before {
        background: rgba(11, 17, 32, 0.85); /* Solid overlay for better mobile readability */
    }
}

@media (max-width: 767px) {
    .services-hero-title { font-size: 2.5rem; }
    .process-header .section-title { font-size: 2.2rem; }
    .process-grid { grid-template-columns: 1fr; }
    .visa-banner-content h2 { font-size: 2rem; }
}
