/* 
    Check Mig Colombia - Main Stylesheet
    Colors:
    - Primary: #1A3A6E (Navy Blue)
    - Accent: #F39C12 (Golden/Orange)
    Font: Poppins
*/

/* Import Poppins font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #1A3A6E;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-top: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: #1A3A6E;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #F39C12;
    text-decoration: none;
}

.btn-primary {
    background-color: #1A3A6E;
    border-color: #1A3A6E;
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #15305d;
    border-color: #15305d;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-accent {
    background-color: #F39C12;
    border-color: #F39C12;
    color: white;
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accent:hover {
    background-color: #e08e0b;
    border-color: #e08e0b;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Application Button - Pulsating effect */
.btn-application {
    background-color: #F39C12;
    border-color: #F39C12;
    color: white;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
}

.btn-application:hover {
    background-color: #e08e0b;
    border-color: #e08e0b;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(243, 156, 18, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(243, 156, 18, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(243, 156, 18, 0);
    }
}

/* Top Bar */
.top-bar {
    background-color: #1A3A6E;
    color: white;
    padding: 10px 0;
}

.top-bar a {
    color: white;
}

.top-bar a:hover {
    color: #F39C12;
}

.top-bar .contact-info {
    text-align: right;
}

/* Logo */
.logo {
    max-width: 220px;
    max-height: 120px;
}

/* Navigation */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar-nav .nav-link {
    color: #1A3A6E;
    font-weight: 500;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-item.active .nav-link {
    color: #F39C12;
}

.navbar-toggler {
    border: none;
    outline: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Hero Section */
.hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 150px 0;
    color: white;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Parallax Section */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
    position: relative;
    color: white;
    text-align: center;
}

.parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
}

.parallax h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.parallax p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Content Sections */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #F39C12;
}

.section-bg-light {
    background-color: #f8f9fa;
}

.section-bg-dark {
    background-color: #1A3A6E;
    color: white;
}

.section-bg-dark h2,
.section-bg-dark h3 {
    color: white;
}

/* Feature Boxes */
.feature-box {
    text-align: center;
    margin-bottom: 30px;
    padding: 30px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-box i {
    font-size: 3em;
    color: #F39C12;
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Info Cards */
.info-card {
    margin-bottom: 30px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.info-card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.info-card-content {
    padding: 20px;
    background-color: white;
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* Breadcrumbs */
.breadcrumb-section {
    background-color: #f0f0f0;
    padding: 15px 0;
}

.breadcrumb {
    margin-bottom: 0;
    background-color: transparent;
    padding: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
}

/* FAQ Accordion */
.accordion-button:not(.collapsed) {
    background-color: #e8f0fe;
    color: #1A3A6E;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.125);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231A3A6E'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Footer */
.footer {
    background-color: #1A3A6E;
    color: white;
    padding: 60px 0 30px;
}

.footer h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #F39C12;
}

.footer ul {
    list-style: none;
    padding-left: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer a {
    color: #ddd;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: #F39C12;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: white;
        padding: 15px;
        border-radius: 5px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .hero {
        padding: 100px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .parallax {
        background-attachment: scroll;
    }
}

@media (max-width: 767.98px) {
    .top-bar .contact-info {
        text-align: center;
        margin-top: 10px;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section {
        padding: 60px 0;
    }
}

/* Utility Classes */
.text-primary {
    color: #1A3A6E !important;
}

.text-accent {
    color: #F39C12 !important;
}

.bg-primary {
    background-color: #1A3A6E !important;
}

.bg-accent {
    background-color: #F39C12 !important;
}

.shadow-sm {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
}

.shadow-md {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
}

.rounded-lg {
    border-radius: 10px !important;
}

.mark, mark {
    background-color: rgba(243, 156, 18, 0.2);
    padding: 0.2em 0.4em;
}

/* Custom Styling for Specific Elements */
.highlight-box {
    background-color: #f8f9fa;
    border-left: 4px solid #F39C12;
    padding: 20px;
    margin-bottom: 30px;
}

.step-box {
    display: flex;
    margin-bottom: 30px;
}

.step-number {
    background-color: #1A3A6E;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-content {
    flex-grow: 1;
}

.step-content h3 {
    margin-top: 0;
}

.partners a{
    color: #fff !important;
    margin-top: 10px;;
}
.partners{
    margin-top: 10px !important;
}