/* styles.css */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body { 
    color: #1a202c; 
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; 
}
 
/* Section */
.section { 
    padding: 80px 20px; 
    text-align: center; 
}

.section h2 { 
    font-size: 36px; 
    font-weight: 700; 
    margin-bottom: 16px; 
}

.section p.lead { 
    font-size: 18px; 
    color: #718096; 
    margin-bottom: 40px; 
}

/* Services Cards */
.services-grid { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 24px; 
    max-width: 1200px; 
    margin: 0 auto; 
}

.service-card { 
    width: 320px; 
    background: white; 
    padding: 32px; 
    border-radius: 12px; 
    border: 1px solid #e2e8f0; 
    transition: all 0.3s; 
}

.service-card:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1); 
}

.service-card h3 { 
    font-size: 16px; 
    margin-bottom: 16px; 
    min-height: 30px; 
}

.service-card p { 
    font-size: 12px; 
    color: #718096; 
    margin-bottom: 20px;
    min-height: 50px;

}

.service-card .btn { 
    padding: 8px 16px; 
    background: whitesmoke; 
    color: rgb(77, 77, 77); 
    border: none; 
    border-radius: 12px; 
    font-weight: 600; 
    cursor: pointer; 
    text-decoration: none; 
    display: inline-block; 
    transition: all 0.3s; 
    font-size: 0.875rem; 
}

.service-card .btn:hover { 
    transform: translateY(-2px); 
    background: linear-gradient(135deg, #6C2BD9 0%, #E11D48 100%); 
    color: white; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); 
}

/* Countries Section */
.countries-grid { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 24px; 
    max-width: 1200px; 
    margin: 0 auto; 
}

.country-card { 
    width: 320px; 
    height: 400px; 
    border-radius: 12px; 
    overflow: hidden; 
    position: relative; 
    cursor: pointer; 
    transition: transform 0.3s; 
}

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

.country-card img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

.country-overlay { 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    right: 0; 
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent); 
    padding: 24px; 
    color: white; 
}

.country-overlay h3 { 
    font-size: 24px; 
    margin-bottom: 12px; 
}

.country-overlay p { 
    font-size: 14px; 
    margin-bottom: 16px; 
}

.country-overlay .btn { 
    padding: 8px 20px; 
    background: white; 
    color: #1a202c; 
    border: none; 
    border-radius: 8px; 
    font-weight: 600; 
    cursor: pointer; 
    text-decoration: none; 
    display: inline-block; 
}

.country-overlay .btn:hover { 
    transform: translateY(-2px); 
    background: linear-gradient(135deg, #6C2BD9 0%, #E11D48 100%); 
    color: white; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); 
}
/* Contact Section */
.contact-section { 
    background: #f5f7fa; 
    padding: 80px 20px; 
}

.contact-container { 
    display: flex; 
    justify-content: center; 
    gap: 40px; 
    max-width: 1200px; 
    margin: 0 auto; 
    flex-wrap: wrap; 
}

.contact-info { 
    flex: 1; 
    max-width: 500px; 
}

.contact-info h2 { 
    font-size: 32px; 
    margin-bottom: 20px; 
}

.contact-info p { 
    font-size: 16px; 
    color: #718096; 
    margin-bottom: 16px; 
}

.contact-form-wrapper { 
    flex: 1; 
    max-width: 500px; 
    background: white; 
    padding: 40px; 
    border-radius: 16px; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); 
}

.contact-form-wrapper h3 { 
    font-size: 24px; 
    margin-bottom: 24px; 
}

.contact-form-wrapper label { 
    display: block; 
    font-size: 14px; 
    font-weight: 600; 
    margin-bottom: 8px; 
}

.contact-form-wrapper input, 
.contact-form-wrapper textarea { 
    width: 100%; 
    padding: 12px; 
    border: 1px solid #e2e8f0; 
    border-radius: 8px; 
    margin-bottom: 16px; 
    font-family: inherit; 
}

.contact-form-wrapper button { 
    width: 100%; 
    padding: 14px; 
    background: linear-gradient(135deg, #6C2BD9 0%, #E11D48 100%); 
    color: white; 
    border: none; 
    border-radius: 8px; 
    font-weight: 600; 
    cursor: pointer; 
    transition: all 0.3s; 
}

.contact-form-wrapper button:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); 
}


.floating-whatsapp {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    z-index: 999;
    opacity: 0;
    transform: scale(1);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.floating-whatsapp.show {
    opacity: 1;
}

.floating-whatsapp.pop {
    transform: scale(1.4);
}

.gradient-text { 
    background: linear-gradient(90deg, #6C2BD9 0%, #E11D48 100%); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    font-weight: 700; 
}   

.gradient-btn {
    padding: 8px 16px; 
    background: whitesmoke; 
    color: rgb(77, 77, 77); 
    border: none; 
    border-radius: 6px; 
    font-weight: 400; 
    cursor: pointer; 
    text-decoration: none; 
    display: inline-block; 
    transition: all 0.3s; 
    font-size: 0.875rem; 
}

.gradient-btn:hover {
    transform: translateY(-2px); 
    background: linear-gradient(135deg, #6C2BD9 0%, #E11D48 100%); 
    color: white; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); 
}


.pagination {
    gap: 0.5rem;
    
}

.pagination .page-item {
    margin: 0;
}

.pagination .page-link {
    border-radius: 0;
    color: rgb(58, 58, 58);
}

.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #6C2BD9 0%, #E11D48 100%);
    color: white;
    border-color: transparent;
    border-radius: 0.3rem;
}
.tag-pill {
  display: inline-block;
  padding: 4px 10px;
  background: linear-gradient(135deg, #3e75ffff 0%, #5500FF 100%); 
  color: white;  
  border-radius: 20px;
  margin: 5px;
  margin-left: 0%;
  font-size: 0.7rem;
  }   
      .image-wrapper {
        width: 100%;
        height: 180px; /* Adjust as needed */
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        background: #f8f8f8; /* Optional */
    }

    .image-wrapper img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        display: block;
    }
 