/* 
* Chancenkarte Visa Landing Page - Main Stylesheet
* M4 Investment
*/

:root {
    --primary-color: #2154cf; /* Updated primary color */
    --secondary-color: #d96a2f; /* Updated secondary color */
    --dark-color: #000000;
    --light-color: #f8f9fa;
    --border-radius: 10px;
    --box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    --box-shadow-lg: 0 15px 30px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

/* Base Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

.btn {
    border-radius: 8px;
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #1a44a3; /* Adjusted hover color */
    border-color: #1a44a3;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(33, 84, 207, 0.3);
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--light-color);
}

.btn-secondary:hover {
    background-color: #b55624; /* Adjusted hover color */
    border-color: #b55624;
    color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(217, 106, 47, 0.3);
}

.btn-outline-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.badge {
    font-weight: 500;
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

/* German Flag Strip */
.german-flag-strip {
    height: 8px;
    background: linear-gradient(
        to right,
        #000 33.33%,
        #FF0000 33.33%,
        #FF0000 66.66%,
        #FFCC00 66.66%
    );
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
}

.navbar .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    color: #333;
}

.navbar .nav-link:hover {
    color: var(--primary-color) !important;
}

.rounded-pill {
    border-radius: 50px !important;
}

.navbar-brand:focus{
    outline: none !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(
            rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.7)
        ),
        url('../img/free-banner.png') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 80px 0;
}
.round1{
    border-radius: 50% !important;
    background-color: var(--bs-red) !important;
}
.spn_or{
    color:#ec8b3d;
}

.hero-section h1 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-size: 3rem;
}

.hero-section .lead {
    opacity: 0.9;
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.hero-section .emoji-marker {
    font-size: 1.5rem;
    vertical-align: middle;
    margin-right: 0.5rem;
}

/* Form Card */
.form-card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-lg);
    transition: var(--transition);
}

.form-card:hover {
    transform: translateY(-5px);
}

.form-card .card-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.form-control, .form-select {
    padding: 0.75rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.form-control:focus, .form-select:focus {
    box-shadow: 0 0 0 3px rgba(189, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-required:after {
    content: '*';
    color: var(--primary-color);
    margin-left: 4px;
}

/* Stats Section */
.stat-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--border-radius);
    background-color: white;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

.stat-card {
    background-color: #fff;
    border-top: 4px solid var(--primary-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--box-shadow);
}

.stat-card h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: var(--dark-color);
    font-weight: 500;
}

/* Section Headings */
.section-heading {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
    font-size: 2.25rem;
}

.section-heading:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #e57d34;
}

.section-subheading {
    text-align: center;
    margin-bottom: 40px;
    color: #555;
    font-size: 1.1rem;
}

/* Benefits Section */
.benefit-card {
    border: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    padding: 1.5rem;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    display: inline-block;
}

.benefit-title {
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.benefit-check {
    color: #28a745;
    margin-right: 10px;
}

.limited-spots {
    border-radius: var(--border-radius);
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-color) 0%, #7a0000 100%);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
    color: white;
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: center;
    box-shadow: var(--box-shadow);
}

.limited-spots .emoji-rocket {
    font-size: 1.5rem;
    margin: 0 0.75rem;
    vertical-align: middle;
}

/* Eligibility Section */
.eligibility-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    border: none;
    box-shadow: var(--box-shadow);
}

.eligibility-heading {
    background-color: var(--primary-color);
    color: white;
    padding: 1.25rem;
    text-align: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin: -1px;
}

.eligibility-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
@media (min-width: 768px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1250px !important;
    }
}
.eligibility-item:last-child {
    border-bottom: none;
}

.eligibility-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #007bff, #00c6ff);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
    color: var(--primary-color);
    border-radius: 50%;
    margin-right: 20px;
    flex-shrink: 0;
    font-size: 1.25rem;
}
.right-icon{
    padding: 0.45rem 0.5rem !important;
    background: linear-gradient(135deg, #007bff, #00c6ff);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}
.eligibility-icon i{
    color: #fff;
}
.blueCol{
    color:#008bff !important;
}
.eligibility-content h5 {
    font-weight: 600;
    margin-bottom: 5px;
}

.eligibility-cta {
    text-align: center;
    padding: 1.25rem;
    background-color: #f8f9fa;
}

.eligibility-cta .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
}

.eligibility-lightbulb {
    font-size: 1.5rem;
    vertical-align: middle;
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

/* Process Steps */
.process-step {
    position: relative;
    padding-bottom: 30px;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 60px;
    bottom: 0;
    left: 50%;
    border-left: 2px dashed var(--primary-color);
    transform: translateX(-50%);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #ffc928;
    color: #1d1d1d;
    border-radius: 50%;
    display: flex
;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.25rem;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.process-card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 1.5rem;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.process-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
}

.process-title {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.process-emoji {
    font-size: 1.75rem;
    display: inline-block;
    margin-bottom: 1rem;
}
 /* Inline styles for quick adjustments */
 .benefit-icon i,
 .process-step .step-number,
 .document-icon i,
 .contact-icon i,
 .feature-card .rounded-circle i {
     font-size: 1.7rem;
 }
 .rounded-circle{
    background: linear-gradient(135deg, #007bff, #00c6ff);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
 }
.process-cta {
    text-align: center;
    margin-top: 2rem;
}

.process-cta .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
}

.phone-emoji {
    font-size: 1.5rem;
    vertical-align: middle;
    margin-right: 0.5rem;
}

/* Document Cards */
.document-section {
    background-color: #f8f9fa;
}

.document-card {
    transition: var(--transition);
    border-radius: var(--border-radius);
    border: none;
    padding: 1.5rem;
    height: 100%;
    box-shadow: var(--box-shadow);
}

.document-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.document-item {
    margin-bottom: 1.25rem;
    display: flex;
    align-items: flex-start;
}

.document-item:last-child {
    margin-bottom: 0;
}

.document-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #007bff, #00c6ff);
        box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
        color: var(--primary-color);
        border-radius: 50%;
        margin-right: 15px;
        flex-shrink: 0;
}

.document-icon i{
    color:#fff !important;
}

.document-content h6 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.document-content p {
    color: #666;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.guidance-note {
    background-color: rgba(33, 84, 207, 0.05); /* Adjusted background */
    color: var(--primary-color);
    padding: 15px;
    border-radius: var(--border-radius);
    font-weight: 500;
    display: flex;
    align-items: center;
    margin-top: 2rem;
}

.guidance-note i, .guidance-note .emoji {
    font-size: 1.5rem;
    margin-right: 1rem;
}

/* Features/Why Choose Us Cards */
.feature-card {
    transition: var (--transition);
    border-radius: var(--border-radius);
    border: none;
    padding: 1.5rem;
    height: 100%;
    box-shadow: var(--box-shadow);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    display: inline-block;
}

.feature-title {
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.features-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.features-cta .btn {
    padding: 0.75rem 2.5rem;
    font-weight: 600;
}

.target-emoji {
    font-size: 1.5rem;
    vertical-align: middle;
    margin-right: 0.5rem;
}

/* Testimonials */
.testimonial-card {
    transition: var(--transition);
    border-radius: var(--border-radius);
    border: none;
    padding: 1.5rem;
    box-shadow: var(--box-shadow);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.testimonial-quote {
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
    border: 3px solid var(--primary-color);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h6 {
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.testimonial-info small {
    color: #666;
}

.testimonial-rocket {
    font-size: 1.5rem;
    vertical-align: middle;
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

.testimonials-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.testimonials-cta .btn {
    padding: 0.75rem 2.5rem;
    font-weight: 600;
}

.megaphone-emoji {
    font-size: 1.5rem;
    vertical-align: middle;
    margin-right: 0.5rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #7a0000 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-heading {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-subheading {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons .btn {
    margin: 0 0.5rem 1rem;
    padding: 0.75rem 2rem;
    font-weight: 600;
}

.fire-emoji {
    font-size: 1.5rem;
    vertical-align: middle;
    margin: 0 0.5rem;
}

/* Contact Form Section */
.contact-section {
    background-color: #f8f9fa;
}

.contact-form-card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-lg);
    overflow: hidden;
}

.contact-form-header {
    background-color: var(--primary-color);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.contact-form-header h3 {
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-form-header p {
    margin-bottom: 0;
    opacity: 0.9;
}

.contact-form-body {
    padding: 2rem;
}

.contact-methods {
    transition: var(--transition);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    height: 100%;
    background-color: white;
    box-shadow: var(--box-shadow);
}

.contact-methods:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-methods h5 {
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.contact-info {
    margin-bottom: 0;
    color: #666;
}

.contact-form .form-label {
    font-weight: 500;
}

.custom-file-upload {
    border: 1px dashed #ddd;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background-color: #f8f9fa;
}

.custom-file-upload:hover {
    border-color: var(--primary-color);
    background-color: rgba(189, 0, 0, 0.05);
}

.custom-file-upload i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    display: block;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-logo {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.footer-description {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
}

.footer-heading {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}


.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
    display: block;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-links a i {
    margin-right: 0.5rem;
}

.social-icons {
    margin-top: 1.5rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
    color: white;
}

.social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    margin-top: 3rem;
}

.footer-copyright {
    color: rgba(255,255,255,0.6);
    margin-bottom: 0;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.6);
    margin-left: 1.5rem;
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: white;
}

/* Back to Top Button */
.back-to-top {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    transition: var(--transition);
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    position: fixed;
    bottom: 20px;
    right: 20px;
    border: none;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(189, 0, 0, 0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.7s ease forwards;
}

.animate-delay-100 {
    animation-delay: 0.1s;
}

.animate-delay-200 {
    animation-delay: 0.2s;
}

.animate-delay-300 {
    animation-delay: 0.3s;
}

.animate-delay-400 {
    animation-delay: 0.4s;
}

.animate-delay-500 {
    animation-delay: 0.5s;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
    
    .feature-card, .benefit-card, .document-card, .testimonial-card {
        margin-bottom: 1.5rem;
    }
    
    .contact-methods {
        margin-bottom: 1.5rem;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .limited-spots {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
    
    .eligibility-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .eligibility-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .document-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .document-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .cta-heading {
        font-size: 2rem;
    }
    
    .footer {
        text-align: center;
    }
    
    .footer-heading {
        margin-top: 2rem;
    }
    
    .social-icons {
        justify-content: center;
        display: flex;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom-links {
        margin-top: 1rem;
        display: block;
    }
    
    .footer-bottom-links a {
        margin: 0 0.75rem;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .hero-section .btn:last-child {
        margin-bottom: 0;
    }
    
    .hero-section .d-flex {
        flex-direction: column;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .contact-form-body {
        padding: 1.5rem;
    }
    
    .limited-spots .emoji-rocket {
        display: block;
        margin: 0.5rem auto;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-image {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .eligibility-card {
        margin-bottom: 1.5rem;
    }
    
    .custom-file-upload {
        padding: 1rem;
    }
    
    .guidance-note {
        flex-direction: column;
        text-align: center;
    }
    
    .guidance-note i, .guidance-note .emoji {
        margin-right: 0;
        margin-bottom: 0.75rem;
    }
}