/* Custom Styles */
.hero-gradient {
    background: linear-gradient(135deg, #1a365d 0%, #2563eb 100%);
}

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

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

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
        overflow-x: hidden;
    }

    body {
        overflow-x: hidden;
        width: 100%;
    }

    .hero-first-text {
        font-size: 4rem !important;
    }

    .hero-second-text {
        font-size: 2.5rem !important;
    }
}

/* Custom Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Custom Button Styles */
.btn-primary {
    transition: all 0.3s ease;
    background: linear-gradient(to right, #374151, #4B5563);
}

.btn-primary:hover {
    background: linear-gradient(to right, #4B5563, #6B7280);
    transform: translateY(-1px);
}

.btn-secondary {
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Custom Card Styles */
.service-card {
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #2563eb;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8fafc;
}

.hero-bg {
    background: linear-gradient(rgb(77 84 93 / 88%), rgba(17, 24, 39, 0.65)), url(hero.jpg);
    background-size: cover;
    background-position: center;
    min-height: 75vh;
}

.breadcrumb-bg {
    background: linear-gradient(rgb(77 84 93 / 88%), rgba(17, 24, 39, 0.75)), url(hero.jpg);
    background-size: cover;
    background-position: center;
    height: 360px;
}

/* Fix horizontal scroll on mobile */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .container {
        max-width: 640px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 768px;
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
    }
}

.header-bg {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.step-number {
    background: linear-gradient(135deg, #4B5563, #374151);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.step-line {
    height: 2px;
    background: linear-gradient(90deg, #4B5563 0%, rgba(75, 85, 99, 0.3) 100%);
}

.official-badge {
    background: linear-gradient(135deg, #374151, #4B5563);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.trust-badge {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.section-description {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #9CA3AF;
    margin-bottom: 1.5rem;
}

/* Benefits Section */
.benefits-section {
    background-color: #f9fafb;
    padding: 5rem 0;
}

.benefit-card {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.benefit-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1.5rem;
    color: #6b7280;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.benefit-description {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
}

/* Visa Options Section */
.visa-card {
    background: white;
    border: 1px solid #f3f4f6;
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.visa-card:hover {
    border-color: #e5e7eb;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.visa-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.visa-description {
    color: #6b7280;
    line-height: 1.625;
    margin-bottom: 2rem;
}

.visa-button {
    background: #ef4444;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.visa-button:hover {
    background: #dc2626;
    transform: translateY(-1px);
}

/* Section Title Styles */
.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-subtitle {
    color: #6b7280;
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 3rem;
    line-height: 1.625;
}

.theme-btn {
    background-color: #ef3340 !important;
}

.theme-color {
    color: #ef3340 !important;
}

/* Tab Active Style */
.tabActive {
    background-color: #111827 !important;
    color:#f8fafc;
}

.processing-tab .w-5.h-5.border-2.border-gray-300.rounded-full.items-center.justify-center.mr-2 {
    display: none;
}
.processing-tab{
    text-align: center!important;
}
.price{
    color:#ef3340 !important;
    font-weight: bold;
}
input[name=processing]:checked + label {
    border-color: #ef3340 !important;
}

@media(max-width:768px){
    .breadcrumb-bg .container.px-24.lg\:px-24 {
        padding-left: 1.3rem !important;
        padding-right: 1rem !important;
    }
    .breadcrumb-bg .official-badge.inline-flex.items-center.gap-2.bg-white\/10.backdrop-blur.text-white.px-4.py-2.rounded-full.text-sm.font-medium.mb-6{
        display:none!important;
    }

}

