/* 
=====================
    EXPORT MARKETS SECTION Styling:
=====================
 */
 
.services-page-section {
    padding: 80px 0 !important ;
    background-color: #f9f9f9;
}

.section-main-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: var(--primary-blue, #0A192F);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.section-main-title::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background-color: var(--primary-gold, #C49B3B);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Service Card Styling */
.service-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-gold, #C49B3B);
}

/* Image Wrapper with Zoom Animation */
.service-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-img-wrapper img {
    transform: scale(1.1);
}

/* Card Content */
.service-content {
    padding: 25px;
    flex-grow: 1;
    /* Pushes button to bottom */
    display: flex;
    flex-direction: column;
}

.service-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 19px;
    color: var(--primary-blue, #0A192F);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: var(--primary-gold, #C49B3B);
}

.service-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* View Details Button */
.btn-view-service {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: var(--primary-gold, #C49B3B);
    background: transparent;
    border: 2px solid var(--primary-gold, #C49B3B);
    padding: 10px 20px;
    border-radius: 4px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    align-self: flex-start;
    cursor: pointer;
}

.btn-view-service:hover {
    background: var(--primary-gold, #C49B3B);
    color: #ffffff;
}

/* --- Premium Modal (Popup) Styling --- */
.modal-content {
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

.modal-header {
    background-color: var(--primary-blue, #0A192F);
    color: #ffffff;
    border-bottom: 3px solid var(--primary-gold, #C49B3B);
    padding: 20px 25px;
}

.modal-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 20px;
}

.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.modal-body {
    padding: 30px;
}

.modal-body img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
}

.modal-body p {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #444444;
    line-height: 1.7;
}

.modal-footer {
    border-top: 1px solid #eaeaea;
    padding: 15px 25px;
}