@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* CSS Variables */
:root {
    --primary-color: #4F46E5;
    --primary-dark: #4338CA;
    --secondary-color: #6366F1;
    --accent-color: #F59E0B;
    --success-color: #10B981;
    --danger-color: #EF4444;
    --light-gray: #F8FAFC;
    --medium-gray: #E2E8F0;
    --dark-gray: #64748B;
    --text-dark: #1E293B;
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(255, 255, 255, 0.9);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --bs-primary-rgb: 79, 70, 229;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #f5f7fa 0%, #fafcff 100%);
    font-family: "Poppins", sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

p {
    font-weight: 400;
    line-height: 1.6;
    color: var(--dark-gray);
}

/* Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
}

.navbar-brand i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.navbar .nav-link {
    font-size: 15px;
}
.navbar .btn {
    font-weight: 600;
    padding:7px 20px;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    font-size: 15px;
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.2);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #fcfbf6 0%, #ffffff 50%, #f8faff 100%);
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Background Shapes */
.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    top: -150px;
    right: -100px;
    animation: floatShape 20s infinite ease-in-out;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    bottom: -100px;
    left: -50px;
    animation: floatShape 15s infinite ease-in-out reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    top: 50%;
    right: 10%;
    animation: floatShape 25s infinite ease-in-out;
}

.shape-4 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    bottom: 20%;
    left: 5%;
    animation: floatShape 18s infinite ease-in-out reverse;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(99, 102, 241, 0.1));
    border: 1px solid rgba(79, 70, 229, 0.2);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Hero Title */
.hero-title-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 0;
    position: relative;
}

.title-line {
    display: block;
    position: relative;
}

.title-line.highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-border {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.title-border::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid var(--secondary-color);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 35px;
    line-height: 1.6;
    max-width: 550px;
}

.highlight-text {
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    border-radius: 2px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-hero {
    position: relative;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-hero .btn-text {
    position: relative;
    z-index: 2;
}

.btn-hero i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-hero:hover i {
    transform: translateX(5px);
}

.btn-primary  {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
    border-color: #4338CA;
}

.btn-primary.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.4);
}

.btn-secondary.btn-hero {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    position: relative;
}

.btn-secondary.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transition: left 0.3s ease;
    z-index: 1;
}

.btn-secondary.btn-hero:hover::before {
    left: 0;
}

.btn-secondary.btn-hero:hover {
    color: white;
    transform: translateY(-3px);
}

.btn-secondary.btn-hero .btn-text,
.btn-secondary.btn-hero i {
    position: relative;
    z-index: 2;
}

/* Hero Stats */
.stats-container {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(79, 70, 229, 0.1);
    min-width: 150px;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(99, 102, 241, 0.1));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.stat-content {
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--dark-gray);
    font-weight: 500;
}

.stat-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-border {
    transform: scaleX(1);
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-text {
    color: var(--dark-gray);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-logos {
    display: flex;
    gap: 20px;
}

.trust-logos i {
    font-size: 1.5rem;
    color: var(--dark-gray);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.trust-logos i:hover {
    opacity: 1;
    color: var(--primary-color);
    transform: scale(1.2);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper {
    position: relative;
    max-width: 500px;
}

.image-border {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid transparent;
    border-radius: 20px;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, var(--primary-color), var(--secondary-color)) border-box;
    animation: borderRotate 10s linear infinite;
}

@keyframes borderRotate {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.border-decoration {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
}

.border-1 { top: -10px; left: -10px; border-radius: 0 0 20px 0; }
.border-2 { top: -10px; right: -10px; border-radius: 0 0 0 20px; }
.border-3 { bottom: -10px; left: -10px; border-radius: 0 20px 0 0; }
.border-4 { bottom: -10px; right: -10px; border-radius: 20px 0 0 0; }

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    background: white;
    border-radius: 15px;
    padding: 15px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.float-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.float-2 {
    bottom: 20%;
    left: -15%;
    animation-delay: 2s;
}

.float-3 {
    top: 60%;
    right: -5%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.float-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.float-content i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.float-content span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
}

/* CV Preview */
.cv-preview {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    background: white;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 4;
    animation: slideUp 1s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cv-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e7eb;
}

.cv-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.cv-info h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--text-dark);
}

.cv-info p {
    font-size: 0.75rem;
    color: var(--dark-gray);
    margin: 0;
}

.cv-skill {
    margin-bottom: 10px;
}

.cv-skill span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
    display: block;
    margin-bottom: 5px;
}

.skill-bar {
    width: 100%;
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
    animation: skillLoad 2s ease-out;
}

@keyframes skillLoad {
    from { width: 0; }
}

/* Background Pattern */
.bg-pattern {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background-image: radial-gradient(circle, rgba(79, 70, 229, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 1;
    opacity: 0.5;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.scroll-text {
    font-size: 0.85rem;
    color: var(--dark-gray);
    font-weight: 500;
    margin-bottom: 5px;
}

.scroll-arrow {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Sections */
.steps-section, .features-section {
    padding: 50px 0;
    background-color: white;
}

.templates-section {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.faq-section {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Step Cards */
.step-card {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    background-color: var(--light-gray);
    color: var(--primary-color);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.step-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.step-description {
    color: var(--dark-gray);
}

/* Template Cards */
.template-card {
    background-color: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.template-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.template-image {
    max-height: 400px;
    overflow: hidden;
    position: relative;
}

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

.template-card:hover .template-image img {
    transform: scale(1.05);
}

.template-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--accent-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.template-content {
    padding: 1.5rem;
}

.template-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.template-users {
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.template-btn {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.template-btn:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.template-btn i {
    margin-left: 0.5rem;
}

/* Feature Cards */
.feature-card {
    text-align: center;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: var(--light-gray);
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-description {
    color: var(--dark-gray);
}

/* FAQ Accordion */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 0.5rem !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    background-color: white;
    color: var(--text-dark);
    font-weight: 600;
    padding: 1.25rem;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button:not(.collapsed)::after{
    filter: brightness(0) invert(1);
}

.accordion-body {
    padding: 1.25rem;
    color: var(--dark-gray);
}

/* CTA Section */
.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.btn-light {
    background-color: white;
    color: var(--primary-color);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
    background-color: var(--light-gray);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: white;
    padding: 80px 0 30px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.footer-logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.footer-description {
    color: #94a3b8;
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
    display: inline-block;
}

.social-icons {
    display: flex;
    gap: 1rem; 
}

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

.social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.copyright {
    text-align: center; 
    margin-top: 15px; 
    color: #94a3b8;
}

/* Modern Footer Styles */
.modern-footer {
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
    color: white;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="40" stroke="rgba(255,255,255,0.03)" stroke-width="0.5" fill="none"/></svg>');
    background-size: 100px 100px;
    z-index: 0;
}

.modern-footer .container {
    position: relative;
    z-index: 1;
}

/* Footer Top Section */
.footer-top {
    background: rgba(79, 70, 229, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 15px;
    margin-bottom: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #fff, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.newsletter-desc {
    color: #cbd5e1;
    margin-bottom: 0;
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 20px;
    border-radius: 50px 0 0 50px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(79, 70, 229, 0.25);
    color: white;
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    padding: 12px 25px;
    font-weight: 600;
}

/* Footer Content */
.footer-content {
    padding-bottom: 40px;
}

.footer-brand {
    padding-right: 20px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.footer-logo i {
    margin-right: 0.5rem;
    font-size: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-description {
    color: #94a3b8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-info {
    margin-top: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #cbd5e1;
}

.contact-item i {
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Footer Links Cards */
.footer-links-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.footer-links-header { 
    margin-bottom: 15px;
}

.footer-links-header i {
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: baseline;
}

.footer-links a i {
    margin-right: 8px;
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links a:hover i {
    opacity: 1;
}

/* App Download Section */
.footer-app {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.app-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.app-desc {
    color: #cbd5e1;
    margin-bottom: 0;
}

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

.app-button {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px 15px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.app-button:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    color: white;
}

.app-button i {
    font-size: 1.8rem;
    margin-right: 10px;
}

.app-button-text span {
    display: block;
    font-size: 0.7rem;
    opacity: 0.8;
}

.app-button-text strong {
    font-size: 0.9rem;
}

/* Footer Bottom */
.footer-bottom { 
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-methods {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.payment-title {
    color: #94a3b8;
    margin-right: 10px;
}

.payment-methods i {
    font-size: 1.5rem;
    color: #cbd5e1;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* Form Components */
.form-container {
    padding: 40px 0;
}

.form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.form-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}

/* Form Header */
.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.form-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 30px;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.form-subtitle {
    color: var(--dark-gray);
    font-size: 16px;
    margin-top: 15px;
}

/* Progress Section */
.progress-container {
    margin-bottom: 40px;
    position: relative;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--dark-gray);
}

.progress {
    height: 8px;
    background-color: var(--medium-gray);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    transition: width 0.5s ease;
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Form Sections */
.form-section {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    border-radius: 5px 0 0 5px;
}

.section-title {
    font-size: 30px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-title i {
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 24px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.section-count {
    background-color: var(--light-gray);
    color: var(--dark-gray);
    font-size: 14px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 20px;
}

/* Form Groups */
.form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.form-label.required::after {
    content: '*';
    color: var(--danger-color);
    margin-left: 4px;
}

.form-control {
    background-color: white;
    border: 1px solid var(--medium-gray);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 15px;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: var(--shadow-sm);
}

.form-control:focus {
    background-color: white;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
    outline: none;
}

.form-control::placeholder {
    color: var(--dark-gray);
    opacity: 0.7;
}

.form-control:hover {
    border-color: var(--secondary-color);
}

.form-select {
    background-color: white;
    border: 1px solid var(--medium-gray);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 15px;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: var(--shadow-sm);
}

.form-select:focus {
    background-color: white;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
    outline: none;
}

.form-select:hover {
    border-color: var(--secondary-color);
}

/* Photo Upload Section */
.photo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
}

.photo-upload-container {
    position: relative;
    margin-bottom: 15px;
}

.photo-upload-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--light-gray), white);
    border: 3px dashed var(--medium-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.photo-upload-circle:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.photo-upload-circle i {
    font-size: 32px;
    color: var(--dark-gray);
    transition: all 0.3s ease;
}

.photo-upload-circle:hover i {
    color: var(--primary-color);
}

.photo-upload-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.photo-label {
    font-size: 14px;
    color: var(--dark-gray);
    font-weight: 500;
    text-align: center;
}

.photo-hint {
    font-size: 12px;
    color: var(--dark-gray);
    margin-top: 5px;
    text-align: center;
}

/* Input Icon */
.input-icon {
    position: absolute;
    right: 15px;
    top: 42px;
    color: var(--dark-gray);
    pointer-events: none;
}

/* Job Position with Switch */
.job-position-wrapper {
    position: relative;
}

.job-position-switch {
    position: absolute;
    right: 15px;
    top: 38px;
    display: flex;
    align-items: center;
    z-index: 10;
}

.form-check-input {
    width: 44px;
    height: 24px;
    background-color: var(--medium-gray);
    border: none;
    cursor: pointer;
    border-radius: 24px;
    position: relative;
    transition: all 0.3s ease;
}

.form-check-input:checked {
    background-color: var(--primary-color);
}

.form-check-input::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: white;
    top: 3px;
    left: 3px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.form-check-input:checked::before {
    transform: translateX(20px);
}

.form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.25);
    outline: none;
}

.switch-text {
    font-size: 13px;
    color: var(--dark-gray);
    margin-left: 10px;
    white-space: nowrap;
    user-select: none;
    font-weight: 500;
}

/* Date Section */
.date-section {
    background-color: var(--light-gray);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 24px;
}

.date-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.date-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.date-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: white;
}

.date-row {
    display: flex;
    gap: 15px;
    align-items: flex-end;
}

.date-group {
    flex: 1;
}

.date-group-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--dark-gray);
    margin-bottom: 6px;
}

.date-selects {
    display: flex;
    gap: 10px;
}

.date-select {
    flex: 1;
}

/* Present Checkbox */
.present-checkbox {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: var(--shadow-sm);
    margin-top: 15px;
    transition: all 0.3s ease;
}

.present-checkbox:hover {
    box-shadow: var(--shadow-md);
}

.form-check-label {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    user-select: none;
    cursor: pointer;
}

/* Description Section */
.description-section {
    position: relative;
}

.description-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.char-count {
    font-size: 12px;
    color: var(--dark-gray);
    font-weight: 400;
}

.form-control.textarea {
    min-height: 120px;
    resize: vertical;
}

/* Language Section */
.language-section {
    margin-bottom: 30px;
}

.language-container {
    margin-bottom: 30px;
}

.language-box {
    background-color: white;
    border: 1px solid var(--medium-gray);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.language-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    border-radius: 5px 0 0 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.language-box:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.language-box:hover::before {
    opacity: 1;
}

.language-box.completed {
    background-color: rgba(16, 185, 129, 0.05);
    border-color: var(--success-color);
}

.language-box.completed::before {
    background: var(--success-color);
    opacity: 1;
}

.language-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.language-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 600;
}

.language-actions {
    display: flex;
    gap: 8px;
}

/* Hobbies Section */
.hobbies-section {
    margin-bottom: 30px;
}

.hobby-input-container {
    position: relative;
    margin-bottom: 30px;
}

.hobby-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.hobby-input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 2px solid var(--medium-gray);
    border-radius: 15px;
    font-size: 16px;
    background-color: white;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.hobby-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
    outline: none;
}

.hobby-input-icon {
    position: absolute;
    right: 15px;
    color: var(--primary-color);
    font-size: 20px;
    pointer-events: none;
}

.hobby-input:focus + .hobby-input-icon {
    animation: pulse 1s infinite;
}

/* Selected Hobbies */
.selected-hobbies {
    margin-bottom: 30px;
}

.selected-hobbies-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hobby-count {
    background-color: var(--light-gray);
    color: var(--dark-gray);
    font-size: 14px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 20px;
}

.selected-hobbies-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    min-height: 60px;
    padding: 15px;
    background-color: var(--light-gray);
    border-radius: 15px;
    border: 2px dashed var(--medium-gray);
}

.hobby-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
    animation: fadeIn 0.3s ease;
}

.hobby-tag i {
    margin-left: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.hobby-tag i:hover {
    transform: scale(1.2);
}

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
    font-style: italic;
    padding: 20px;
    margin: auto;
}

.empty-state i {
    font-size: 24px;
    margin-bottom: 8px;
    opacity: 0.7;
}

/* Chips */
.chips-container {
    background-color: var(--light-gray);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
}

.chips-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.chips-title i {
    margin-right: 8px;
    color: var(--primary-color);
}

.chips-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background-color: white;
    border: 1px solid var(--medium-gray);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
}

.chip i {
    margin-right: 6px;
    font-size: 16px;
    color: var(--primary-color);
}

.chip:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.chip:hover i {
    color: white;
}

.chip.added, .chip.selected {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.chip.added i, .chip.selected i {
    color: white;
}

/* Buttons */

.btn-siguiente, .btn-next {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 10px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-md);
}

.btn-siguiente:hover, .btn-next:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-siguiente i, .btn-next i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-siguiente:hover i, .btn-next:hover i {
    transform: translateX(3px);
}

.btn-back {
    background: transparent;
    color: var(--dark-gray);
    border: 1px solid var(--medium-gray);
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.btn-back:hover {
    background-color: var(--light-gray);
    border-color: var(--dark-gray);
}

.btn-back i {
    margin-right: 8px;
}

.btn-delete {
    background-color: transparent;
    color: var(--danger-color);
    border: 1px solid var(--danger-color);
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.btn-delete:hover {
    background-color: var(--danger-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-delete i {
    margin-right: 8px;
}

.btn-completed {
    background-color: transparent;
    color: var(--success-color);
    border: 1px solid var(--success-color);
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.btn-completed:hover {
    background-color: var(--success-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-completed i {
    margin-right: 8px;
}

.btn-completed.active {
    background-color: var(--success-color);
    color: white;
}

.btn-add-language {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(99, 102, 241, 0.1));
    border: 2px dashed var(--primary-color);
    color: var(--primary-color);
    border-radius: 12px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 25px;
}

.btn-add-language:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-add-language i {
    margin-right: 8px;
    font-size: 18px;
}

.btn-add-hobby {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(99, 102, 241, 0.1));
    border: 2px dashed var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-add-hobby:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-add-hobby i {
    margin-right: 8px;
    font-size: 18px;
}

.btn-ai-suggestions {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--accent-color), #f59e0b);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.btn-ai-suggestions:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-ai-suggestions i {
    margin-right: 8px;
    font-size: 18px;
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--medium-gray);
}

.action-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--medium-gray);
}

.btn-group {
    display: flex;
    gap: 15px;
}

/* Alert Styling */
.alert {
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 25px;
    border: none;
    display: flex;
    align-items: center;
}

.alert-danger {
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--danger-color);
}

.alert-danger i {
    margin-right: 10px;
    font-size: 20px;
}

.alert ul {
    margin: 0;
    padding-left: 20px;
}

/* AI Suggestions Modal */
.ai-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.ai-modal.show {
    display: flex;
}

.ai-modal-content {
    background-color: white;
    border-radius: 20px;
    padding: 30px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

.ai-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.ai-modal-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
}

.ai-modal-title i {
    margin-right: 10px;
    color: var(--accent-color);
    font-size: 24px;
}

.ai-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark-gray);
    cursor: pointer;
    transition: all 0.2s ease;
}

.ai-modal-close:hover {
    color: var(--danger-color);
    transform: rotate(90deg);
}

.ai-modal-body {
    margin-bottom: 20px;
}

.ai-suggestion-list, .ai-suggestions-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ai-suggestion-item, .ai-suggestion-chip {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    background-color: var(--light-gray);
    border: 1px solid var(--medium-gray);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.ai-suggestion-item i, .ai-suggestion-chip i {
    margin-right: 8px;
    color: var(--accent-color);
}

.ai-suggestion-item:hover, .ai-suggestion-chip:hover {
    background-color: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.ai-suggestion-item.selected, .ai-suggestion-chip.selected {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.ai-suggestion-item.selected i, .ai-suggestion-chip.selected i {
    color: white;
}

.ai-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.btn-apply-suggestions {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-apply-suggestions:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-cancel-suggestions {
    background-color: transparent;
    color: var(--dark-gray);
    border: 1px solid var(--medium-gray);
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cancel-suggestions:hover {
    background-color: var(--light-gray);
}

/* Floating Labels */
.floating-label {
    position: relative;
}

.floating-label .form-control {
    padding-top: 20px;
}

.floating-label label {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 15px;
    color: var(--dark-gray);
    pointer-events: none;
    transition: all 0.2s ease;
}

.floating-label .form-control:focus + label,
.floating-label .form-control:not(:placeholder-shown) + label {
    top: 8px;
    left: 12px;
    font-size: 12px;
    color: var(--primary-color);
    background-color: white;
    padding: 0 4px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-section {
        padding: 80px 0 60px;
        min-height: auto;
    }
    
    .stats-container {
        justify-content: center;
    }
    
    .floating-element {
        display: none;
    }
    
    .cv-preview {
        display: none;
    }
}

@media (max-width: 768px) {
    .form-card {
        padding: 30px 20px;
    }
    
    .form-title {
        font-size: 24px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-secondary {
        margin-left: 0;
        margin-top: 1rem;
        display: block;
        width: 100%;
    }
    
    .job-position-switch {
        position: static;
        transform: none;
        margin-top: 10px;
        justify-content: flex-end;
    }
    
    .job-position-wrapper .form-control {
        padding-right: 16px;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-siguiente, .btn-back {
        width: 100%;
    }
    
    .date-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-group {
        width: 100%;
        justify-content: space-between;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .language-actions {
        margin-top: 10px;
    }
    
    .chips-list {
        justify-content: center;
    }
    
    .footer-top {
        padding: 30px 20px;
    }
    
    .newsletter-title {
        font-size: 1.5rem;
    }
    
    .footer-app {
        padding: 20px;
    }
    
    .app-buttons {
        justify-content: center;
    }
    
    .footer-bottom .row > div {
        text-align: center !important;
        margin-bottom: 20px;
    }
    
    .payment-methods {
        margin-bottom: 10px;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-add-hobby, .btn-ai-suggestions {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-hero {
        width: 100%;
        justify-content: center;
    }
    
    .trust-indicators {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Animation for form elements */
.form-group {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.5s ease forwards;
}

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }
.form-group:nth-child(4) { animation-delay: 0.4s; }
.form-group:nth-child(5) { animation-delay: 0.5s; }
.form-group:nth-child(6) { animation-delay: 0.6s; }
.form-group:nth-child(7) { animation-delay: 0.7s; }
.form-group:nth-child(8) { animation-delay: 0.8s; }

.language-box {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.5s ease forwards;
}

.language-box:nth-child(1) { animation-delay: 0.1s; }
.language-box:nth-child(2) { animation-delay: 0.2s; }
.language-box:nth-child(3) { animation-delay: 0.3s; }
.language-box:nth-child(4) { animation-delay: 0.4s; }

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

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

/* Loading state */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    width: 30px;
    height: 30px;
    border: 3px solid var(--medium-gray);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Form Switch Customization */
.form-switch .form-check-input {
    width: 45px;
}
.language-actions .btn-delete i{
    margin-right: 0;
}
.errormessage{
    list-style-type: none;
    color: #EF4444;
    padding-left: 0;
}
body .btn{
    padding: 12px 30px;
}
/* Dropdown Menu Styles */
 

.dropdown.show .dropdown-menu {
    opacity: 1; 
    border: 1px solid #ffffff;
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
    border-left: 3px solid transparent;
}

.dropdown-item i {
    margin-right: 12px;
    font-size: 16px;
    color: var(--dark-gray);
    width: 20px;
    text-align: center;
}

.dropdown-item:hover {
    background-color: rgba(79, 70, 229, 0.05);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}

.dropdown-item:hover i {
    color: var(--primary-color);
}

.dropdown-item.active {
    background-color: rgba(79, 70, 229, 0.1);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}

.dropdown-item.active i {
    color: var(--primary-color);
}

.dropdown-divider {
    height: 1px;
    background-color: var(--medium-gray);
    margin: 8px 0;
}

.dropdown-header {
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* Pricing Hero Section */
.pricing-hero-section {
    background: linear-gradient(135deg, #fcfbf6 0%, #ffffff 50%, #f8faff 100%);
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.pricing-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.pricing-title .highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-subtitle {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.trust-indicators {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--text-dark);
}

.trust-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Pricing Toggle Section */
.pricing-toggle-section {
    padding: 30px 0;
    background-color: white;
}

.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.toggle-label {
    font-weight: 500;
    color: var(--text-dark);
}

.discount-badge {
    background-color: var(--accent-color);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 5px;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
}

.toggle-input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-label-switch {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--medium-gray);
    transition: 0.4s;
    border-radius: 34px;
}

.toggle-label-switch:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.toggle-input:checked + .toggle-label-switch {
    background-color: var(--primary-color);
}

.toggle-input:checked + .toggle-label-switch:before {
    transform: translateX(30px);
}

/* Pricing Cards Section */
.pricing-cards-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.pricing-card {
    background-color: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.premium {
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
    color: white;
}

.pricing-card.premium .plan-name,
.pricing-card.premium .plan-description,
.pricing-card.premium .feature-title,
.pricing-card.premium .feature-item span {
    color: white;
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.plan-description {
    color: var(--dark-gray);
    margin-bottom: 0;
}

.pricing-price {
    text-align: center;
    margin-bottom: 30px;
}

.price-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-card.premium .currency {
    color: white;
}

.price {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.pricing-card.premium .price {
    color: white;
}

.period {
    font-size: 1.2rem;
    color: var(--dark-gray);
    font-weight: 500;
}

.pricing-card.premium .period {
    color: rgba(255, 255, 255, 0.8);
}

.annual-savings {
    font-size: 0.9rem;
    color: var(--success-color);
    font-weight: 600;
    margin-top: 5px;
}

.pricing-cta {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-cta .btn {
    width: 100%;
    padding: 15px;
    font-weight: 600;
    border-radius: 50px;
}

.pricing-features {
    margin-top: 20px;
}

.feature-group {
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-align: center;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.feature-item i {
    color: var(--success-color);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Comparison Section */
.comparison-section {
    padding: 80px 0;
    background-color: white;
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 15px;
    overflow: hidden;
}

.table {
    margin-bottom: 0;
}

.table th {
    background-color: var(--light-gray);
    font-weight: 600;
    color: var(--text-dark);
    padding: 15px;
    text-align: center;
}

.table th:first-child {
    text-align: left;
    border-top-left-radius: 15px;
}

.table th:last-child {
    border-top-right-radius: 15px;
}

.table td {
    padding: 15px;
    vertical-align: middle;
    text-align: center;
}

.table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--text-dark);
}

.table i {
    font-size: 1.2rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.testimonial-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-content {
    margin-bottom: 20px;
    flex-grow: 1;
}

.testimonial-content p {
    font-style: italic;
    color: var(--dark-gray);
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--text-dark);
}

.author-info p {
    font-size: 0.85rem;
    color: var(--dark-gray);
    margin: 0;
}

.testimonial-rating {
    color: var(--accent-color);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: white;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

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

.btn-outline-light {
    border-color: white;
    color: white;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 991px) {
    .pricing-title {
        font-size: 2.5rem;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .comparison-table {
        overflow-x: auto;
    }
    
    .table {
        min-width: 600px;
    }
}

@media (max-width: 768px) {
    .pricing-title {
        font-size: 2rem;
    }
    
    .billing-toggle {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* CV List Section Styles */
.cv-list-container {
    padding: 2rem 0;
}

.cv-item {
    background-color: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.cv-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(99, 102, 241, 0.05) 100%);
    z-index: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cv-item:hover::before {
    opacity: 1;
}

.cv-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.cv-item-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cv-info h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.cv-info p {
    font-size: 1rem;
    color: var(--dark-gray);
    margin-bottom: 0;
}

.cv-actions {
    display: flex;
    gap: 15px;
}

.cv-actions .btn {
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cv-actions .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
}

.cv-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
}

.cv-actions .btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.cv-actions .btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
}

.empty-state {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--dark-gray);
}

.empty-state i {
    font-size: 4rem;
    color: var(--medium-gray);
    margin-bottom: 1rem;
}

.empty-state h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.empty-state p {
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
b, strong{
    font-weight: 700;
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .cv-item-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .cv-actions {
        width: 100%;
        justify-content: flex-start;
    }
    
    .cv-actions .btn {
        flex: 1;
        justify-content: center;
    }
}


/* Contact Main Section */
.contact-main-section {
    margin-top: -50px;
    position: relative;
    z-index: 10;
}
.contact-form-card, .contact-info-card, .social-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    margin-bottom: 30px; 
}
.form-title, .info-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.form-subtitle, .info-subtitle {
    color: #6c757d;
    margin-bottom: 30px;
}
.contact-form .form-control {
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    padding: 12px 15px;
    font-size: 1rem;
}
.contact-form .form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}
.contact-form .form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* Contact Info Items */
.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}
.info-item:last-child {
    margin-bottom: 0;
}
.info-icon {
    background-color: #f0f4ff;
    color: #667eea;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}
.info-icon i {
    font-size: 1.25rem;
}
.info-content h5 {
    font-weight: 600;
    margin-bottom: 5px;
}
.info-content p, .info-content a {
    color: #6c757d;
    margin-bottom: 0;
    text-decoration: none;
}
.info-content a:hover {
    color: #667eea;
}

/* Social Card */
.social-title {
    font-weight: 600;
    margin-bottom: 20px;
}
.social-links {
    display: flex;
    gap: 15px;
}
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #f0f4ff;
    color: #667eea;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}
.social-link:hover {
    background-color: #667eea;
    color: #fff;
    transform: translateY(-3px);
}

/* Map Section */
.map-section {
    padding: 0;
}
.map-container {
    height: 450px;
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
.newsletter-error{
    color:var(--danger-color);
}
.newsletter-success{
    color:var(--success-color);
}


@media (min-width: 1200px) and (max-width: 1399px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1170px;
    }
}