/* ============================================
   PRSH TECHNOLOGIES - MAIN WEBSITE CSS
   ============================================ */

/* ============= CSS VARIABLES ============= */
:root {
    --blue-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --green-gradient: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    --orange-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --purple-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --shadow-sm: 0 1px 6px rgba(0,0,0,0.04);
    --shadow-md: 0 3px 15px rgba(0,0,0,0.06);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.1);
    --shadow-xl: 0 15px 45px rgba(0,0,0,0.12);
}

/* ============= PAGINATION STYLES ============= */
.pagination-wrapper .pagination {
    gap: 5px;
}

.pagination-wrapper .page-link {
    border: 2px solid #e0e0e0;
    color: #333;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    min-width: 44px;
    text-align: center;
}

.pagination-wrapper .page-link:hover:not(.disabled) {
    background-color: #f0f8ff;
    border-color: #007bff;
    color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

.pagination-wrapper .page-item.active .page-link {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border-color: #0056b3;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
}

.pagination-wrapper .page-item.disabled .page-link {
    background-color: #f8f9fa;
    border-color: #dee2e6;
    color: #6c757d;
    cursor: not-allowed;
    opacity: 0.6;
}

.pagination-wrapper .page-link:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

@media (max-width: 576px) {
    .pagination-wrapper .pagination {
        flex-wrap: wrap;
        gap: 3px;
    }

    .pagination-wrapper .page-link {
        padding: 6px 10px;
        font-size: 0.875rem;
        min-width: 38px;
    }
}

/* ============= FORM MESSAGE STYLES ============= */
.form-result {
    margin-top: 10px;
}

.form-result.error,
.form-result.error p {
    color: #dc3545;
}

.form-result.success,
.form-result.success p {
    color: #28a745;
    font-weight: 500;
}

#msgSubmit {
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 20px;
}

#msgSubmit.text-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

#msgSubmit.text-danger {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.help-block.with-errors {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
}

/* ============= CONTACT FORM STYLES ============= */
.contacts-form-hidden {
    display: none !important;
}

/* ============= MAP STYLES ============= */
.map-area iframe {
    border: 0;
}

/* ============= TAB STYLES ============= */
.tab-box {
    display: none;
}

.tab-box.active,
#tab-1 {
    display: block;
}

/* ============= MODERN IMAGE CARD STYLES ============= */
.modern-image-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.modern-image-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.modern-image-card img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.modern-image-card:hover img {
    transform: scale(1.03);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-image-card:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
}

.overlay-content i {
    font-size: 28px;
}

/* ============= CONTENT CARD STYLES ============= */
.content-card {
    background: white;
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 22px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--blue-gradient);
    transition: all 0.3s ease;
}

.content-card:hover {
    box-shadow: var(--shadow-lg);
}

.content-card:hover::before {
    width: 100%;
    opacity: 0.05;
}

.intro-card::before {
    background: var(--blue-gradient);
}

.approach-card::before {
    background: var(--purple-gradient);
}

.why-choose-card::before {
    background: var(--green-gradient);
}

.deliverables-card::before {
    background: var(--orange-gradient);
}

/* ============= CARD ICON STYLES ============= */
.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 16px;
    color: white;
}

.card-icon.blue {
    background: var(--blue-gradient);
}

.card-icon.user-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

/* ============= GRADIENT HEADING STYLES ============= */
.gradient-heading {
    background: var(--blue-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin-bottom: 16px;
    font-size: 24px;
}

.blue-gradient {
    background: var(--blue-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.purple-gradient {
    background: var(--purple-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.green-gradient {
    background: var(--green-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.orange-gradient {
    background: var(--orange-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============= LEAD TEXT STYLES ============= */
.lead-text {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

/* ============= SECTION HEADER STYLES ============= */
.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid transparent;
}

.purple-header {
    border-image: var(--purple-gradient) 1;
}

.green-header {
    border-image: var(--green-gradient) 1;
}

.orange-header {
    border-image: var(--orange-gradient) 1;
}

.header-icon {
    width: 45px;
    height: 45px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #333;
    flex-shrink: 0;
}

/* ============= MODERN FEATURES GRID STYLES ============= */
.modern-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin: 22px 0;
}

.feature-card {
    background: white;
    padding: 22px;
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.blue-card {
    border-image: var(--blue-gradient) 1;
}

.blue-card:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, rgba(118, 75, 162, 0.03) 100%);
}

.green-card {
    border-image: var(--green-gradient) 1;
}

.green-card:hover {
    background: linear-gradient(135deg, rgba(17, 153, 142, 0.03) 0%, rgba(56, 239, 125, 0.03) 100%);
}

.orange-card {
    border-image: var(--orange-gradient) 1;
}

.orange-card:hover {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.03) 0%, rgba(245, 87, 108, 0.03) 100%);
}

.purple-card {
    border-image: var(--purple-gradient) 1;
}

.purple-card:hover {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.03) 0%, rgba(0, 242, 254, 0.03) 100%);
}

/* ============= FEATURE ICON STYLES ============= */
.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #333;
    margin-bottom: 14px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.08);
}

.feature-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.feature-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.card-corner {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, transparent 0%, rgba(0,0,0,0.04) 100%);
    border-radius: 14px 0 14px 0;
}

/* ============= MODERN LIST STYLES ============= */
.modern-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.list-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.list-item:hover {
    background: white;
    box-shadow: var(--shadow-sm);
}

.item-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.blue-bg {
    background: var(--blue-gradient);
}

.green-bg {
    background: var(--green-gradient);
}

.purple-bg {
    background: var(--purple-gradient);
}

.orange-bg {
    background: var(--orange-gradient);
}

/* ============= BLOG DETAIL IMAGE STYLES ============= */
.blog-comment-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
}

.blog-featured-image {
    background-size: cover;
    background-position: center;
}

/* ============= UTILITY CLASSES ============= */
.hidden {
    display: none !important;
}
