/* ==========================================================================
   SA INFOTECHS - SERVICES.CSS
   ========================================================================== */

/* --------------------------------------------------------------------------
   10. Services Section
   -------------------------------------------------------------------------- */
.services-section .section-title {
    color: #000000 !important;
}

.services-section .section-title .gradient-text {
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: initial !important;
    color: #000000 !important;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 30px 24px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.service-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-brand);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-glow);
}

.service-card:hover .service-card-glow {
    opacity: 1;
}

.service-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.service-icon-box {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: rgba(0, 114, 255, 0.08);
    color: var(--logo-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: all var(--transition-fast);
}

.service-card:hover .service-icon-box {
    background: var(--gradient-brand);
    color: #ffffff;
    transform: scale(1.06);
}

.service-index {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: #cbd5e1;
}

.service-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; line-height: 1.35; color: var(--text-primary); }
.service-desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 20px; flex-grow: 1; }
.service-tags { margin-bottom: 22px; display: flex; flex-direction: column; gap: 6px; }

.service-tags li {
    font-size: 0.8rem;
    color: var(--text-muted);
    position: relative;
    padding-left: 14px;
}

.service-tags li::before {
    content: '•';
    color: var(--logo-blue);
    position: absolute;
    left: 0;
    font-size: 1rem;
    line-height: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--logo-blue);
    margin-top: auto;
    transition: gap var(--transition-fast);
}

.service-link:hover { gap: 12px; color: var(--logo-purple); }

@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .service-card {
        padding: 24px 18px;
    }
    .service-title {
        font-size: 1.12rem;
        margin-bottom: 8px;
    }
    .service-desc {
        font-size: 0.86rem;
        margin-bottom: 16px;
    }
    .service-tags {
        margin-bottom: 18px;
    }
}




/* ==========================================================================
   DATABASE MANAGEMENT SECTION & PAGE VIEW STYLES
   Faithful to User-Uploaded Reference Image
   ========================================================================== */

/* Services Section Headings - Solid Black */
.db-services-section .section-title,
.db-tech-section .section-title,
.db-engines-title,
.db-process-section .section-title,
.managed-services-section .section-title,
.ms-why-choose-section .section-title,
.onsite-offerings-section .section-title,
.webdev-main-section .section-title,
.webdev-why-section .section-title,
.webdev-packages-section .section-title,
.webdev-work-section .section-title,
#software-offerings .section-title,
.soft-portfolio-section .section-title,
#mobile-offerings .section-title,
.mobile-platforms-section .section-title,
.app-process-section .section-title,
#digital-marketing-offerings .section-title,
.dm-process-section .section-title,
.gd-services-section .section-title,
.gd-packages-section .section-title,
.gd-portfolio-section .section-title,
.sms-packages-section .section-title,
.sms-why-choose-section .section-title {
    color: #000000 !important;
}

.db-services-section .section-title .gradient-text,
.db-tech-section .section-title .gradient-text,
.db-engines-title .gradient-text,
.db-process-section .section-title .gradient-text,
.managed-services-section .section-title .gradient-text,
.ms-why-choose-section .section-title .gradient-text,
.onsite-offerings-section .section-title .gradient-text,
.webdev-main-section .section-title .gradient-text,
.webdev-why-section .section-title .gradient-text,
.webdev-packages-section .section-title .gradient-text,
.webdev-work-section .section-title .gradient-text,
#software-offerings .section-title .gradient-text,
.soft-portfolio-section .section-title .gradient-text,
#mobile-offerings .section-title .gradient-text,
.mobile-platforms-section .section-title .gradient-text,
.app-process-section .section-title .gradient-text,
#digital-marketing-offerings .section-title .gradient-text,
.dm-process-section .section-title .gradient-text,
.gd-services-section .section-title .gradient-text,
.gd-packages-section .section-title .gradient-text,
.gd-portfolio-section .section-title .gradient-text,
.sms-packages-section .section-title .gradient-text,
.sms-why-choose-section .section-title .gradient-text {
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: initial !important;
    color: #000000 !important;
}

.db-showcase-section {
    padding: 30px 0 60px;
}

.db-hero-card {
    position: relative;
    background: linear-gradient(135deg, #1b2480 0%, #25328f 50%, #2c3998 100%);
    border-radius: var(--radius-lg);
    padding: 72px 40px 64px;
    box-shadow: 0 20px 50px rgba(27, 36, 128, 0.32);
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.db-hero-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 650px;
    height: 420px;
    background: radial-gradient(circle, rgba(70, 162, 224, 0.22) 0%, transparent 70%);
    pointer-events: none;
}

.db-hero-content {
    position: relative;
    z-index: 2;
    max-width: 960px;
    margin: 0 auto;
}

.db-hero-title {
    font-size: clamp(2.3rem, 4.6vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 22px;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.db-hero-desc {
    font-size: clamp(1.02rem, 1.8vw, 1.15rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
    max-width: 820px;
    margin: 0 auto 52px;
    font-weight: 400;
}

.db-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-top: 10px;
}

.db-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.db-stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4.2vw, 3.2rem);
    font-weight: 800;
    color: #46a2e0; /* Exact cyan from uploaded image */
    line-height: 1.1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 14px rgba(70, 162, 224, 0.35);
}

.db-stat-label {
    font-size: 0.98rem;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.01em;
}

/* Database Pillars Grid matching reference layout */
.db-services-section {
    position: relative;
    overflow: hidden;
    padding: 105px 0 115px;
    background: radial-gradient(ellipse at 20% 20%, rgba(0, 114, 255, 0.12) 0%, transparent 45%),
                radial-gradient(ellipse at 80% 30%, rgba(0, 198, 255, 0.10) 0%, transparent 45%),
                radial-gradient(ellipse at 50% 90%, rgba(5, 19, 71, 0.05) 0%, transparent 55%),
                linear-gradient(180deg, #f8fafc 0%, #f0f7ff 50%, #f8fafc 100%);
    background-size: 100% 100%;
    background-position: center top, right top, center bottom, center center;
    border-top: 1px solid rgba(0, 114, 255, 0.14);
    border-bottom: 1px solid rgba(0, 114, 255, 0.14);
}

/* Ambient Glowing Orbs */
.db-services-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(0, 114, 255, 0.18) 0%, rgba(0, 114, 255, 0.04) 60%, transparent 80%);
    border-radius: 50%;
    filter: blur(65px);
    pointer-events: none;
    z-index: 0;
}

.db-services-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 540px;
    height: 540px;
    background: radial-gradient(circle, rgba(0, 198, 255, 0.15) 0%, rgba(0, 114, 255, 0.03) 60%, transparent 80%);
    border-radius: 50%;
    filter: blur(65px);
    pointer-events: none;
    z-index: 0;
}

.db-services-section .container {
    position: relative;
    z-index: 2;
}

.db-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 45px;
}

.db-pillar-card {
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.db-pillar-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glow);
    box-shadow: 0 18px 40px rgba(0, 114, 255, 0.14);
}

.db-pillar-img-box {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: #0f172a;
}

.db-pillar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.db-pillar-card:hover .db-pillar-img {
    transform: scale(1.05);
}

.db-pillar-body {
    padding: 28px 24px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.db-pillar-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.db-pillar-icon {
    font-size: 1.5rem;
    color: var(--logo-blue);
    flex-shrink: 0;
}

.db-pillar-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    margin: 0;
}

.db-pillar-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 24px;
    min-height: 48px;
}

.db-pillar-list {
    list-style: none;
    padding: 0;
    margin: auto 0 0 0;
}

.db-pillar-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-top: 1px solid #f1f5f9;
    font-size: 0.92rem;
    color: #334155;
    font-weight: 500;
}

.db-pillar-list li:first-child {
    border-top: 1px solid var(--border-subtle);
}

.db-pillar-list li i {
    color: #0072ff;
    font-size: 1.05rem;
    flex-shrink: 0;
}

/* Database Services Cards Grid matching uploaded image */
.db-svc-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 42px;
    margin-bottom: 50px;
}

.db-svc-card {
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    border-left: 4px solid #00c6ff; /* Cyan accent strip matching screenshot */
    border-radius: var(--radius-md);
    padding: 34px 28px 30px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    position: relative;
}

.db-svc-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-glow);
    border-left-color: #0072ff;
    box-shadow: 0 16px 36px rgba(0, 114, 255, 0.12);
}

.db-svc-icon-box {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.55rem;
    margin-bottom: 22px;
    box-shadow: 0 8px 18px rgba(0, 180, 216, 0.28);
    transition: all var(--transition-fast);
}

.db-svc-card:hover .db-svc-icon-box {
    transform: scale(1.06);
    background: linear-gradient(135deg, #0072ff 0%, #7928ca 100%);
    box-shadow: 0 10px 22px rgba(0, 114, 255, 0.32);
}

.db-svc-title {
    font-size: 1.32rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.db-svc-desc {
    font-size: 0.94rem;
    line-height: 1.65;
    color: #475569;
    margin-bottom: 24px;
    flex-grow: 1;
}

.db-svc-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0284c7;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all var(--transition-fast);
    margin-top: auto;
}

.db-svc-link i {
    transition: transform var(--transition-fast);
    font-size: 0.85rem;
}

.db-svc-link:hover {
    color: var(--logo-blue);
}

.db-svc-link:hover i {
    transform: translateX(5px);
}

.db-engines-wrapper {
    padding-top: 45px;
    border-top: 1px dashed var(--border-subtle);
}

.db-engines-header {
    text-align: center;
    margin-bottom: 32px;
}

.db-engines-title {
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.db-engines-subtitle {
    font-size: 0.98rem;
    font-weight: 400;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Category Cards Grid (4 columns matching screenshot) */
.db-tech-cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 15px;
}

.db-tech-cat-card {
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 34px 22px 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
    transition: all var(--transition-base);
}

.db-tech-cat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(0, 114, 255, 0.1);
    border-color: rgba(0, 180, 216, 0.4);
}

.db-tech-cat-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 22px;
    box-shadow: 0 8px 18px rgba(0, 180, 216, 0.25);
    transition: all var(--transition-fast);
}

.db-tech-cat-card:hover .db-tech-cat-icon {
    transform: scale(1.08);
    background: linear-gradient(135deg, #0072ff 0%, #7928ca 100%);
}

.db-tech-cat-title {
    font-size: 1.16rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.35;
}

.db-tech-cat-desc {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.db-specialized-header {
    text-align: center;
    margin: 55px 0 32px;
}

.db-specialized-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.01em;
}

/* Supported Database Technologies */
.db-tech-section {
    position: relative;
    overflow: hidden;
    padding: 105px 0 115px;
    background: radial-gradient(ellipse at 20% 20%, rgba(0, 114, 255, 0.12) 0%, transparent 45%),
                radial-gradient(ellipse at 80% 30%, rgba(0, 198, 255, 0.10) 0%, transparent 45%),
                radial-gradient(ellipse at 50% 90%, rgba(5, 19, 71, 0.05) 0%, transparent 55%),
                linear-gradient(180deg, #f8fafc 0%, #f0f7ff 50%, #f8fafc 100%);
    background-size: 100% 100%;
    background-position: center top, right top, center bottom, center center;
    border-top: 1px solid rgba(0, 114, 255, 0.14);
    border-bottom: 1px solid rgba(0, 114, 255, 0.14);
}

/* Ambient Glowing Orbs */
.db-tech-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(0, 114, 255, 0.18) 0%, rgba(0, 114, 255, 0.04) 60%, transparent 80%);
    border-radius: 50%;
    filter: blur(65px);
    pointer-events: none;
    z-index: 0;
}

.db-tech-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 540px;
    height: 540px;
    background: radial-gradient(circle, rgba(0, 198, 255, 0.15) 0%, rgba(0, 114, 255, 0.03) 60%, transparent 80%);
    border-radius: 50%;
    filter: blur(65px);
    pointer-events: none;
    z-index: 0;
}

.db-tech-section .container {
    position: relative;
    z-index: 2;
}

/* Database Management Process Section */
.db-process-section {
    padding: 85px 0 95px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border-top: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;
}

.db-process-pipeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-top: 50px;
    position: relative;
}

.db-process-step {
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Step Header & Connecting Beam */
.db-step-header {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 22px;
    height: 44px;
}

.db-step-number-badge {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #00c6ff;
    color: #0072ff;
    font-weight: 800;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 198, 255, 0.22);
    z-index: 3;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.db-step-connector {
    flex-grow: 1;
    height: 3px;
    background: linear-gradient(90deg, #00c6ff 0%, #cbd5e1 100%);
    margin-left: 6px;
    position: relative;
}

.db-step-connector.last {
    background: transparent;
}

.db-process-step:hover .db-step-number-badge {
    background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    color: #ffffff;
    border-color: #0072ff;
    transform: scale(1.12);
    box-shadow: 0 0 20px rgba(0, 114, 255, 0.45);
}

/* Step Card */
.db-step-card {
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    border-radius: 18px;
    padding: 30px 20px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.05);
    transition: all var(--transition-base);
    overflow: hidden;
}

.db-step-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    opacity: 0.9;
    transition: all var(--transition-fast);
}

.db-step-watermark {
    position: absolute;
    right: 12px;
    top: 10px;
    font-size: 3.2rem;
    font-weight: 900;
    color: rgba(15, 23, 42, 0.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    transition: color var(--transition-fast);
}

.db-process-step:hover .db-step-watermark {
    color: rgba(0, 114, 255, 0.08);
}

.db-process-step:hover .db-step-card {
    transform: translateY(-8px);
    border-color: rgba(0, 198, 255, 0.5);
    box-shadow: 0 16px 36px rgba(0, 114, 255, 0.12);
}

.db-process-step:hover .db-step-card-accent {
    height: 6px;
    background: linear-gradient(90deg, #00c6ff, #7928ca);
}

.db-step-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(0, 114, 255, 0.08);
    color: #0072ff;
    font-size: 1.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: all var(--transition-fast);
}

.db-process-step:hover .db-step-icon-box {
    background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    color: #ffffff;
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 8px 18px rgba(0, 114, 255, 0.3);
}

.db-step-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.35;
}

.db-step-desc {
    font-size: 0.88rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.db-step-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #0284c7;
    background: rgba(2, 132, 199, 0.08);
    padding: 6px 11px;
    border-radius: 8px;
    margin-top: auto;
    width: fit-content;
}

.db-step-tag i {
    font-size: 0.8rem;
    color: #0072ff;
}

/* Action Bar */
.db-process-action-bar {
    margin-top: 55px;
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 30px 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.db-action-bar-text h4 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.db-action-bar-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

.db-action-bar-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.db-tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 10px;
}

.db-tech-badge {
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.db-tech-badge i {
    font-size: 1.4rem;
    color: var(--logo-blue);
}

.db-tech-badge:hover {
    transform: translateY(-4px);
    border-color: var(--logo-blue);
    box-shadow: var(--shadow-md);
}

.btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    padding: 13px 26px;
    border-radius: var(--radius-full);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    color: #ffffff;
}

/* Responsive Styles for Database View */
@media (max-width: 1199px) {
    .db-process-pipeline {
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
    }
    .db-step-connector {
        display: none;
    }
}

@media (max-width: 991px) {
    .db-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    .db-pillars-grid,
    .db-svc-cards-grid,
    .db-tech-cat-grid,
    .db-process-pipeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .db-tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .db-hero-card {
        padding: 45px 20px 35px;
    }
    .db-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .db-pillars-grid,
    .db-svc-cards-grid,
    .db-tech-cat-grid,
    .db-tech-grid,
    .db-process-pipeline {
        grid-template-columns: 1fr;
    }
    .db-pillar-img-box {
        height: 190px;
    }
    .db-process-action-bar {
        flex-direction: column;
        text-align: center;
        padding: 28px 20px;
    }
    .db-action-bar-buttons {
        flex-direction: column;
        width: 100%;
    }
    .db-action-bar-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .db-hero-card {
        padding: 36px 16px 28px;
    }
    .db-stats-grid {
        gap: 16px;
    }
    .db-stat-number {
        font-size: 2rem;
    }
    .db-stat-label {
        font-size: 0.84rem;
    }
}

/* ==========================================
   Managed IT Services Section Styles
   ========================================== */
.managed-services-section {
    padding: 75px 0 95px;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
}

.ms-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 40px;
}

.ms-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 26px 22px 22px;
    border: 1.5px solid #e2e8f0;
    box-shadow: 0 8px 24px -5px rgba(0, 0, 0, 0.04);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.ms-card:hover {
    transform: translateY(-5px);
    border-color: #3d5af1;
    box-shadow: 0 16px 36px -8px rgba(61, 90, 241, 0.16);
}

.ms-icon-box {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #4353ff 0%, #2f3fc9 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #ffffff;
    font-size: 1.3rem;
    box-shadow: 0 8px 18px -4px rgba(67, 83, 255, 0.35);
    transition: transform 0.3s ease;
}

.ms-card:hover .ms-icon-box {
    transform: scale(1.08);
}

.ms-card-title {
    font-size: 1.12rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 8px;
    line-height: 1.3;
}

.ms-card-desc {
    font-size: 0.85rem;
    color: #64748b;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 18px;
    min-height: 52px;
}

.ms-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #edf2f7;
    margin-top: auto;
}

.ms-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid #edf2f7;
    font-size: 0.85rem;
    color: #334155;
    font-weight: 500;
}

.ms-features-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ms-features-list li i {
    color: #4353ff;
    font-size: 0.8rem;
    flex-shrink: 0;
    width: 14px;
    text-align: center;
}

/* Responsive Styles for Managed IT Services */
@media (max-width: 1100px) {
    .ms-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 680px) {
    .ms-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .ms-card {
        padding: 22px 18px 18px;
    }
    .ms-card-desc {
        min-height: auto;
    }
}

/* Why Choose SA Infotech Section */
.ms-why-choose-section {
    padding: 85px 0 95px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-top: 1px solid var(--border-subtle);
    position: relative;
}

.ms-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 45px;
}

.ms-why-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 24px 26px;
    border: 1.5px solid #e2e8f0;
    border-left: 4.5px solid #1e3a8a;
    box-shadow: 0 8px 24px -5px rgba(0, 0, 0, 0.04);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    text-align: left;
    position: relative;
}

.ms-why-card:hover {
    transform: translateY(-5px);
    border-left-color: #3d5af1;
    box-shadow: 0 18px 36px -8px rgba(61, 90, 241, 0.16);
}

.ms-why-icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4353ff 0%, #1e3a8a 100%);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 20px;
    box-shadow: 0 6px 16px -3px rgba(30, 58, 138, 0.32);
    transition: transform 0.3s ease;
}

.ms-why-card:hover .ms-why-icon-box {
    transform: scale(1.08);
}

.ms-why-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
    line-height: 1.35;
}

.ms-why-card-desc {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1100px) {
    .ms-why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 680px) {
    .ms-why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .ms-why-card {
        padding: 24px 20px 22px;
    }
}

/* ==========================================================================
   ONSITE IT SERVICES HERO & PAGE STYLES
   ========================================================================== */
.onsite-hero-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 36px;
}

.onsite-hero-btn,
.btn.onsite-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #ffffff !important;
    color: #1b2480 !important;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25), 0 0 20px rgba(255, 255, 255, 0.35);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    border: 2px solid #ffffff;
}

.onsite-hero-btn:hover,
.btn.onsite-hero-btn:hover {
    background: #46a2e0 !important;
    color: #ffffff !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 32px rgba(70, 162, 224, 0.55);
    border-color: #46a2e0;
}

.onsite-hero-btn i,
.btn.onsite-hero-btn i {
    font-size: 0.95rem;
    transition: transform 0.25s ease;
    color: inherit;
}

.onsite-hero-btn:hover i,
.btn.onsite-hero-btn:hover i {
    transform: translateX(4px);
}

@media (max-width: 640px) {
    .onsite-hero-btn {
        width: 100%;
        max-width: 320px;
        padding: 14px 24px;
        font-size: 0.98rem;
    }
}

/* ==================== Onsite Service Image Cards Grid ==================== */
.onsite-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.onsite-service-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1.5px solid #e2e8f0;
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05), 0 2px 6px -1px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.onsite-service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 38px -6px rgba(15, 23, 42, 0.12), 0 10px 18px -4px rgba(15, 23, 42, 0.06);
    border-color: #cbd5e1;
}

.onsite-card-image {
    position: relative;
    width: 100%;
    height: 205px;
    overflow: hidden;
    background: #0f172a;
}

.onsite-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.onsite-service-card:hover .onsite-card-image img {
    transform: scale(1.06);
}

.onsite-card-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    color: #1b2480;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    z-index: 2;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease;
}

.onsite-service-card:hover .onsite-card-badge {
    transform: scale(1.1);
    color: #2563eb;
}

.onsite-card-body {
    padding: 24px 24px 26px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.onsite-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.onsite-card-desc {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 22px;
    min-height: 66px;
}

.onsite-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 26px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.onsite-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    color: #334155;
    font-weight: 500;
}

.onsite-checklist li i {
    color: #f59e0b;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.onsite-learn-btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content;
    padding: 10px 24px;
    border-radius: 50px;
    background: #1b2480;
    color: #ffffff !important;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    border: none;
}

.onsite-learn-btn:hover {
    background: #141b63;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(27, 36, 128, 0.35);
    color: #ffffff !important;
}

.onsite-learn-btn i {
    font-size: 0.82rem;
    transition: transform 0.25s ease;
    color: inherit;
}

.onsite-learn-btn:hover i {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .onsite-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 680px) {
    .onsite-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.onsite-hero-btn:hover,
.btn.onsite-hero-btn:hover {
    background: #46a2e0 !important;
    color: #ffffff !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 32px rgba(70, 162, 224, 0.55);
    border-color: #46a2e0;
}

.onsite-hero-btn i,
.btn.onsite-hero-btn i {
    font-size: 0.95rem;
    transition: transform 0.25s ease;
    color: inherit;
}

.onsite-hero-btn:hover i,
.btn.onsite-hero-btn:hover i {
    transform: translateX(4px);
}

@media (max-width: 640px) {
    .onsite-hero-btn {
        width: 100%;
        max-width: 320px;
        padding: 14px 24px;
        font-size: 0.98rem;
    }
}

/* ==================== Onsite Service Image Cards Grid ==================== */
.onsite-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.onsite-service-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1.5px solid #e2e8f0;
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05), 0 2px 6px -1px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.onsite-service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 38px -6px rgba(15, 23, 42, 0.12), 0 10px 18px -4px rgba(15, 23, 42, 0.06);
    border-color: #cbd5e1;
}

.onsite-card-image {
    position: relative;
    width: 100%;
    height: 205px;
    overflow: hidden;
    background: #0f172a;
}

.onsite-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.onsite-service-card:hover .onsite-card-image img {
    transform: scale(1.06);
}

.onsite-card-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    color: #1b2480;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    z-index: 2;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease;
}

.onsite-service-card:hover .onsite-card-badge {
    transform: scale(1.1);
    color: #2563eb;
}

.onsite-card-body {
    padding: 24px 24px 26px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.onsite-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.onsite-card-desc {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 22px;
    min-height: 66px;
}

.onsite-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 26px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.onsite-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    color: #334155;
    font-weight: 500;
}

.onsite-checklist li i {
    color: #f59e0b;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.onsite-learn-btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content;
    padding: 10px 24px;
    border-radius: 50px;
    background: #1b2480;
    color: #ffffff !important;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    border: none;
}

.onsite-learn-btn:hover {
    background: #141b63;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(27, 36, 128, 0.35);
    color: #ffffff !important;
}

.onsite-learn-btn i {
    font-size: 0.82rem;
    transition: transform 0.25s ease;
    color: inherit;
}

.onsite-learn-btn:hover i {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .onsite-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 680px) {
    .onsite-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .onsite-card-image {
        height: 195px;
    }

    .onsite-card-body {
        padding: 20px 20px 24px;
    }

    .onsite-card-desc {
        min-height: auto;
    }
}

/* ==================== Website Development Page Banner ==================== */
.page-banner-webdev {
    background: linear-gradient(rgba(7, 12, 26, 0.72), rgba(12, 15, 36, 0.82)), url('assets/images/services/website-dev-banner.jpg') center center / cover no-repeat;
}

/* ==================== Website Development Services Grid ==================== */
.webdev-main-section {
    padding: 60px 0 115px !important;
    background: var(--bg-base);
    position: relative;
    z-index: 2;
}

.webdev-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1140px;
    margin: 45px auto 0;
    padding: 0 16px;
    position: relative;
    z-index: 5;
}

.webdev-service-card {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px -4px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    user-select: none;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.35s ease, 
                background 0.4s ease, 
                color 0.35s ease;
}

/* Hover / Focus / Active State - Color Effect (matching Recent Work interaction) */
.webdev-service-card:hover,
.webdev-service-card:focus-visible,
.webdev-service-card.is-active,
.webdev-service-card.webdev-card-dark {
    transform: translateY(-8px);
    background: linear-gradient(180deg, #202c61 0%, #17214d 100%);
    border-color: #2e3d7a;
    box-shadow: 0 24px 48px -6px rgba(15, 23, 42, 0.32), 0 10px 24px -4px rgba(32, 44, 97, 0.35);
}

.webdev-service-card:focus-visible {
    outline: 2px solid #3b82f6;
    outline-offset: 3px;
}

.webdev-service-card .webdev-card-title {
    font-size: 1.38rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
    line-height: 1.3;
    transition: color 0.35s ease;
}

.webdev-service-card:hover .webdev-card-title,
.webdev-service-card:focus-visible .webdev-card-title,
.webdev-service-card.is-active .webdev-card-title,
.webdev-service-card.webdev-card-dark .webdev-card-title {
    color: #ffffff;
}

.webdev-service-card .webdev-card-desc {
    font-size: 0.93rem;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 0;
    flex-grow: 1;
    transition: color 0.35s ease;
}

.webdev-service-card:hover .webdev-card-desc,
.webdev-service-card:focus-visible .webdev-card-desc,
.webdev-service-card.is-active .webdev-card-desc,
.webdev-service-card.webdev-card-dark .webdev-card-desc {
    color: #cbd5e1;
}

.webdev-card-media {
    position: relative;
    width: 100%;
    height: 220px;
    background: #0f172a;
}

.webdev-img-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.webdev-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.webdev-service-card:hover .webdev-img-wrap img,
.webdev-service-card:focus-visible .webdev-img-wrap img,
.webdev-service-card.is-active .webdev-img-wrap img,
.webdev-service-card.webdev-card-dark .webdev-img-wrap img {
    transform: scale(1.06);
}

.webdev-floating-badge {
    position: absolute;
    bottom: -31px;
    left: 50%;
    transform: translateX(-50%);
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #202c61;
    color: #ffffff;
    border: 4px solid #ffffff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    z-index: 10;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                background 0.35s ease, 
                border-color 0.35s ease, 
                box-shadow 0.35s ease;
}

.webdev-floating-badge i {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.webdev-service-card:hover .webdev-floating-badge,
.webdev-service-card:focus-visible .webdev-floating-badge,
.webdev-service-card.is-active .webdev-floating-badge,
.webdev-service-card.webdev-card-dark .webdev-floating-badge {
    transform: translateX(-50%) scale(1.08);
    background: #3b82f6;
    border-color: #202c61;
    box-shadow: 0 10px 26px rgba(59, 130, 246, 0.35);
}

.webdev-card-content {
    position: relative;
    padding: 48px 28px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
    z-index: 2;
}

/* Corner decorative curve for light cards matching screenshot */
.webdev-corner-accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 95px;
    height: 95px;
    border-radius: 50%;
    background: rgba(108, 123, 168, 0.18);
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.35s ease;
}

.webdev-service-card:hover .webdev-corner-accent,
.webdev-service-card:focus-visible .webdev-corner-accent,
.webdev-service-card.is-active .webdev-corner-accent,
.webdev-service-card.webdev-card-dark .webdev-corner-accent {
    opacity: 0;
}

@media (min-width: 1025px) and (max-width: 1280px) {
    .webdev-services-grid {
        max-width: 980px;
        gap: 24px;
    }
}

@media (max-width: 1024px) {
    .webdev-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        max-width: 680px;
        margin: 40px auto 0;
        padding: 0 20px;
    }
}

@media (max-width: 680px) {
    .webdev-services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 100%;
        margin: 35px auto 0;
        padding: 0 16px;
    }
    
    .webdev-card-content {
        padding: 40px 22px 30px;
    }

    .webdev-main-section {
        padding: 50px 0 100px !important;
    }
}

/* ==================== Website Development Why Choose Section ==================== */
.webdev-why-section {
    padding: 85px 0 95px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    position: relative;
}

.webdev-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    margin-top: 45px;
}

.webdev-why-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 18px;
    padding: 38px 24px 34px;
    text-align: center;
    box-shadow: 0 8px 24px -4px rgba(15, 23, 42, 0.05);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.webdev-why-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 36px -6px rgba(15, 23, 42, 0.12);
    border-color: #cbd5e1;
}

.webdev-why-icon-box {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: #3b4991;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 24px;
    box-shadow: 0 8px 20px rgba(59, 73, 145, 0.28);
    transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.webdev-why-card:hover .webdev-why-icon-box {
    transform: scale(1.1) rotate(5deg);
    background: #202c61;
    box-shadow: 0 10px 24px rgba(32, 44, 97, 0.35);
}

.webdev-why-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #202c61;
    margin-bottom: 14px;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.webdev-why-card-desc {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 1100px) {
    .webdev-why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 680px) {
    .webdev-why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .webdev-why-card {
        padding: 32px 20px 28px;
    }
}

/* ==================== Website Development Packages Grid ==================== */
.webdev-packages-section {
    padding: 85px 0 100px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    position: relative;
}

.webdev-packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 50px;
    align-items: stretch;
}

.webdev-pkg-card {
    position: relative;
    background: linear-gradient(180deg, #17214d 0%, #0e1435 100%);
    border: 1.5px solid #233069;
    border-radius: 22px;
    padding: 44px 32px 38px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 14px 34px -6px rgba(15, 23, 42, 0.18);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.webdev-pkg-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px -8px rgba(15, 23, 42, 0.28);
    border-color: #3b82f6;
}

/* Featured / Most Popular Card */
.webdev-pkg-card.pkg-featured {
    border: 2px solid #00d2ff;
    box-shadow: 0 18px 45px -4px rgba(0, 210, 255, 0.22), 0 0 20px rgba(0, 210, 255, 0.12);
    transform: scale(1.02);
}

.webdev-pkg-card.pkg-featured:hover {
    transform: scale(1.02) translateY(-8px);
    box-shadow: 0 26px 55px -6px rgba(0, 210, 255, 0.32), 0 0 25px rgba(0, 210, 255, 0.2);
}

.webdev-popular-badge {
    position: absolute;
    top: 18px;
    right: 20px;
    background: #00d2ff;
    color: #081126;
    font-size: 0.76rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 14px rgba(0, 210, 255, 0.4);
}

.webdev-pkg-icon-badge {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #ffffff;
    color: #17214d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    margin-bottom: 22px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.35s ease;
}

.webdev-pkg-card:hover .webdev-pkg-icon-badge {
    transform: scale(1.1);
}

.webdev-pkg-title {
    font-size: 1.45rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.webdev-pkg-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.webdev-pkg-price .currency {
    font-size: 1.85rem;
    font-weight: 700;
    margin-right: 2px;
}

.webdev-pkg-subtext {
    font-size: 0.88rem;
    color: #94a3b8;
    font-weight: 500;
    margin-top: 4px;
    margin-bottom: 28px;
    display: block;
}

.webdev-pkg-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: flex;
    flex-direction: column;
    gap: 13px;
    text-align: left;
    width: 100%;
    flex-grow: 1;
}

.webdev-pkg-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.93rem;
    color: #cbd5e1;
    line-height: 1.45;
}

.webdev-pkg-features li i {
    color: #00d2ff;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.webdev-pkg-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 24px;
    border-radius: 12px;
    background: #ffffff;
    color: #17214d !important;
    font-size: 0.96rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.28s ease;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    margin-top: auto;
}

.webdev-pkg-btn:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(255, 255, 255, 0.25);
}

.webdev-pkg-btn i {
    font-size: 0.95rem;
    color: inherit;
    transition: transform 0.25s ease;
}

.webdev-pkg-btn:hover i {
    transform: scale(1.15);
}

@media (max-width: 1024px) {
    .webdev-packages-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
        gap: 32px;
    }

    .webdev-pkg-card.pkg-featured {
        transform: none;
    }

    .webdev-pkg-card.pkg-featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 640px) {
    .webdev-packages-grid {
        gap: 24px;
    }
    .webdev-pkg-card {
        padding: 32px 20px 28px;
        border-radius: 18px;
    }
}

/* ==================== Website Development Recent Work Grid ==================== */
.webdev-work-section {
    padding: 85px 0 100px;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    position: relative;
}

.webdev-work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.webdev-work-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px -4px rgba(15, 23, 42, 0.1);
    background: #0f172a;
    cursor: pointer;
    outline: none;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.webdev-work-card:hover,
.webdev-work-card:focus-visible,
.webdev-work-card.is-active {
    transform: translateY(-8px);
    box-shadow: 0 22px 46px -6px rgba(15, 23, 42, 0.22);
}

.webdev-work-img-wrap {
    position: relative;
    width: 100%;
    height: 310px;
    overflow: hidden;
}

.webdev-work-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.webdev-work-card:hover .webdev-work-img-wrap img,
.webdev-work-card:focus-visible .webdev-work-img-wrap img,
.webdev-work-card.is-active .webdev-work-img-wrap img {
    transform: scale(1.08);
    filter: brightness(0.85);
}

/* Semi-transparent blue/navy overlay revealing information on hover / click */
.webdev-work-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 29, 78, 0.82) 0%, rgba(13, 18, 52, 0.94) 100%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
    z-index: 2;
}

.webdev-work-card:hover .webdev-work-overlay,
.webdev-work-card:focus-visible .webdev-work-overlay,
.webdev-work-card.is-active .webdev-work-overlay {
    opacity: 1;
    visibility: visible;
}

.webdev-work-overlay-content {
    text-align: center;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(16px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.webdev-work-card:hover .webdev-work-overlay-content,
.webdev-work-card:focus-visible .webdev-work-overlay-content,
.webdev-work-card.is-active .webdev-work-overlay-content {
    transform: translateY(0);
}

.webdev-work-tag {
    display: inline-block;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #00d2ff;
    background: rgba(0, 210, 255, 0.14);
    border: 1px solid rgba(0, 210, 255, 0.35);
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.webdev-work-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 14px;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.webdev-work-desc {
    font-size: 1.02rem;
    color: #ffffff;
    opacity: 0.95;
    line-height: 1.55;
    max-width: 310px;
    margin: 0;
}

.webdev-work-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    border-radius: 50px;
    background: #00d2ff;
    color: #081126 !important;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 6px 18px rgba(0, 210, 255, 0.4);
}

.webdev-work-btn:hover {
    background: #ffffff;
    color: #17214d !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(255, 255, 255, 0.35);
}

.webdev-work-btn i {
    font-size: 0.82rem;
    transition: transform 0.25s ease;
}

.webdev-work-btn:hover i {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .webdev-work-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 680px) {
    .webdev-work-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .webdev-work-img-wrap {
        height: 290px;
    }
}

/* ==========================================================================
   SOFTWARE DEVELOPMENT SERVICES SECTION (MODERN BG & SLIDER LAYOUT)
   ========================================================================== */
.soft-offerings-section {
    position: relative;
    padding: 75px 0 95px;
    background: #f8fafc;
    overflow: hidden;
    border-top: 1px solid rgba(226, 232, 240, 0.7);
    border-bottom: 1px solid rgba(226, 232, 240, 0.7);
}

.soft-offerings-section .section-title {
    font-size: clamp(1.85rem, 3.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.25;
    color: #0f172a;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    word-break: normal;
    overflow-wrap: break-word;
}

.soft-offerings-section .section-subtitle {
    max-width: 680px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.65;
    color: #64748b;
}

.soft-mob-break {
    display: none;
}

/* Subtle Technical Dot Grid */
.soft-offerings-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0, 114, 255, 0.08) 1.2px, transparent 1.2px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}

/* Ambient Floating Glow Orbs for Modern Depth */
.soft-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(85px);
    pointer-events: none;
    z-index: 0;
}

.soft-bg-glow-1 {
    width: 480px;
    height: 480px;
    top: -60px;
    left: -120px;
    background: radial-gradient(circle, rgba(0, 114, 255, 0.09) 0%, rgba(0, 198, 255, 0.03) 70%, transparent 100%);
    animation: softFloat1 14s ease-in-out infinite alternate;
}

.soft-bg-glow-2 {
    width: 520px;
    height: 520px;
    bottom: -80px;
    right: -130px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.07) 0%, rgba(0, 114, 255, 0.04) 70%, transparent 100%);
    animation: softFloat2 16s ease-in-out infinite alternate;
}

@keyframes softFloat1 {
    0% { transform: translate(0, 0); }
    100% { transform: translate(35px, 25px); }
}

@keyframes softFloat2 {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-35px, -25px); }
}
/* Full Display Grid for All 7 Services (No Slider) */
.soft-services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
    max-width: 1260px;
    margin: 48px auto 0;
    width: 100%;
}

.soft-services-grid .soft-service-card {
    flex: 0 1 calc(25% - 21px);
    min-width: 260px;
    max-width: 320px;
}

/* ==========================================================================
   CARD DESIGN & HOVER COLOR EFFECT (SIMILAR TO OUR RECENT WORK)
   ========================================================================== */
.soft-service-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
    padding: 44px 34px 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.4s ease;
    z-index: 1;
    cursor: pointer;
}

/* Deep Rich Navy/Blue Gradient Overlay on Hover (Like Our Recent Work) */
.soft-service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(150deg, #0d1b3e 0%, #15275e 50%, #0c1533 100%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s ease;
    z-index: 1;
    border-radius: 19px;
}

/* Glowing Top Accent Line on Hover */
.soft-service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0072ff, #00d2ff, #7c3aed);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 4;
}

.soft-service-card:hover::before,
.soft-service-card.is-active::before {
    opacity: 1;
    visibility: visible;
}

.soft-service-card:hover::after,
.soft-service-card.is-active::after {
    opacity: 1;
}

.soft-service-card:hover,
.soft-service-card.is-active {
    transform: translateY(-8px);
    border-color: rgba(0, 114, 255, 0.45);
    box-shadow: 0 24px 50px rgba(10, 20, 60, 0.28), 0 0 25px rgba(0, 114, 255, 0.16);
}

/* Inner Elements Layering */
.soft-card-icon-box,
.soft-card-title,
.soft-card-desc,
.soft-card-btn {
    position: relative;
    z-index: 2;
}

/* Modern & Attractive Icon Box Style */
.soft-card-icon-box {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0, 114, 255, 0.08) 0%, rgba(0, 210, 255, 0.03) 100%);
    border: 1px solid rgba(0, 114, 255, 0.14);
    box-shadow: 0 8px 20px rgba(0, 114, 255, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.soft-card-icon-box i {
    font-size: 1.65rem;
    background: linear-gradient(135deg, #0052cc 0%, #0072ff 60%, #00d2ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    transition: all 0.35s ease;
}

.soft-service-card:hover .soft-card-icon-box,
.soft-service-card.is-active .soft-card-icon-box {
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.22) 0%, rgba(0, 114, 255, 0.14) 100%);
    border-color: rgba(0, 210, 255, 0.5);
    box-shadow: 0 12px 28px rgba(0, 210, 255, 0.32), inset 0 0 14px rgba(0, 210, 255, 0.25);
    transform: translateY(-4px) scale(1.06);
}

.soft-service-card:hover .soft-card-icon-box i,
.soft-service-card.is-active .soft-card-icon-box i {
    -webkit-text-fill-color: #00d2ff;
    filter: drop-shadow(0 0 10px rgba(0, 210, 255, 0.85));
    transform: scale(1.06);
}

/* Title */
.soft-card-title {
    font-size: 1.32rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 16px 0;
    line-height: 1.35;
    letter-spacing: -0.01em;
    transition: color 0.35s ease, text-shadow 0.35s ease;
}

.soft-service-card:hover .soft-card-title,
.soft-service-card.is-active .soft-card-title {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

/* Description */
.soft-card-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #475569;
    margin: 0 0 26px 0;
    flex-grow: 1;
    transition: color 0.35s ease, opacity 0.35s ease;
}

.soft-service-card:hover .soft-card-desc,
.soft-service-card.is-active .soft-card-desc {
    color: #e2e8f0;
    opacity: 0.95;
}

/* Button */
.soft-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.98rem;
    font-weight: 600;
    color: #2b3d7a;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
    width: fit-content;
}

.soft-card-btn i {
    font-size: 0.88rem;
    transition: transform 0.25s ease;
}

.soft-service-card:hover .soft-card-btn,
.soft-service-card.is-active .soft-card-btn {
    color: #00d2ff;
}

.soft-service-card:hover .soft-card-btn i,
.soft-service-card.is-active .soft-card-btn i {
    transform: translateX(6px);
}


/* Responsive Breakpoints */
@media (max-width: 1200px) {
    .soft-services-grid .soft-service-card {
        flex: 0 1 calc(33.333% - 19px);
        max-width: 360px;
    }
}

@media (max-width: 991px) {
    .soft-offerings-section {
        padding: 60px 0 80px;
    }
    .soft-services-grid {
        gap: 24px;
        margin-top: 36px;
    }
    .soft-services-grid .soft-service-card {
        flex: 0 1 calc(50% - 12px);
        max-width: 420px;
    }
}

@media (max-width: 640px) {
    .soft-offerings-section {
        padding: 50px 0 65px;
    }
    .soft-offerings-section .section-title {
        font-size: 1.48rem;
        line-height: 1.35;
        padding: 0 4px;
    }
    .soft-mob-break {
        display: block;
    }
    .soft-offerings-section .section-title .gradient-text {
        display: inline-block;
    }
    .soft-offerings-section .section-subtitle {
        font-size: 0.94rem;
        line-height: 1.6;
        padding: 0 4px;
    }
    .soft-services-grid {
        gap: 20px;
        margin-top: 28px;
        width: 100%;
    }
    .soft-services-grid .soft-service-card {
        flex: 0 0 100%;
        width: 100%;
        min-width: 0;
        max-width: 100%;
        box-sizing: border-box;
    }
    .soft-service-card {
        padding: 32px 22px 28px;
        box-sizing: border-box;
    }
    .soft-card-title {
        font-size: 1.25rem;
        line-height: 1.35;
        word-break: normal;
        overflow-wrap: break-word;
    }
    .soft-card-desc {
        font-size: 0.92rem;
        line-height: 1.65;
        word-break: normal;
        overflow-wrap: break-word;
    }
}

/* ==========================================================================
   OUR DEVELOPMENT PORTFOLIO SECTION (STATIC 3-COLUMN GRID & HOVER NAME OVERLAY)
   ========================================================================== */
.soft-portfolio-section {
    padding: 85px 0 95px;
    background: #ffffff;
    position: relative;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.soft-portfolio-section .section-title {
    font-size: clamp(1.85rem, 3.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.25;
    color: #0f172a;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.soft-portfolio-section .section-subtitle {
    max-width: 680px;
    margin: 0 auto 52px;
    font-size: 1.05rem;
    line-height: 1.65;
    color: #64748b;
}

.soft-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.soft-portfolio-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.07);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.35s ease;
    cursor: pointer;
    position: relative;
}

.soft-portfolio-card:hover,
.soft-portfolio-card:focus-visible,
.soft-portfolio-card.is-active {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(10, 20, 60, 0.2), 0 0 24px rgba(0, 114, 255, 0.14);
    border-color: rgba(0, 114, 255, 0.45);
}

.soft-portfolio-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #0d152d;
}

.soft-portfolio-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.soft-portfolio-card:hover .soft-portfolio-img-wrap img,
.soft-portfolio-card:focus-visible .soft-portfolio-img-wrap img,
.soft-portfolio-card.is-active .soft-portfolio-img-wrap img {
    transform: scale(1.08);
    filter: brightness(0.65);
}

/* Semi-transparent Overlay Showing ONLY the Project Name */
.soft-portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 27, 62, 0.68) 0%, rgba(10, 16, 45, 0.9) 100%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
    z-index: 2;
}

.soft-portfolio-card:hover .soft-portfolio-overlay,
.soft-portfolio-card:focus-visible .soft-portfolio-overlay,
.soft-portfolio-card.is-active .soft-portfolio-overlay {
    opacity: 1;
    visibility: visible;
}

.soft-portfolio-title {
    color: #ffffff;
    font-size: 1.55rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-align: center;
    margin: 0;
    transform: translateY(14px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
    position: relative;
    padding-bottom: 12px;
}

/* Subtle glowing cyan accent line under the title */
.soft-portfolio-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0.4);
    width: 44px;
    height: 3px;
    background: linear-gradient(90deg, #0072ff, #00d2ff);
    border-radius: 4px;
    transition: transform 0.35s ease, width 0.35s ease;
}

.soft-portfolio-card:hover .soft-portfolio-title,
.soft-portfolio-card:focus-visible .soft-portfolio-title,
.soft-portfolio-card.is-active .soft-portfolio-title {
    transform: translateY(0);
}

.soft-portfolio-card:hover .soft-portfolio-title::after,
.soft-portfolio-card:focus-visible .soft-portfolio-title::after,
.soft-portfolio-card.is-active .soft-portfolio-title::after {
    transform: translateX(-50%) scaleX(1);
    width: 56px;
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
    .soft-portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .soft-portfolio-section {
        padding: 65px 0 75px;
    }
}

@media (max-width: 640px) {
    .soft-portfolio-section {
        padding: 50px 0 60px;
    }
    .soft-portfolio-section .section-title {
        font-size: 1.55rem;
        line-height: 1.3;
    }
    .soft-portfolio-section .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 32px;
    }
    .soft-portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .soft-portfolio-title {
        font-size: 1.35rem;
    }
}

/* ==========================================================================
   MOBILE APPLICATION DEVELOPMENT PAGE VIEW
   ========================================================================== */
.page-banner-mobileapp {
    background: linear-gradient(135deg, rgba(7, 12, 26, 0.76) 0%, rgba(10, 16, 38, 0.84) 100%), url('assets/images/services/mobile-app-banner.jpg') center center / cover no-repeat;
}

.page-banner-digitalmarketing {
    background: linear-gradient(135deg, rgba(6, 12, 32, 0.78) 0%, rgba(10, 18, 52, 0.84) 100%), url('assets/images/services/digital-marketing-banner.jpg') center center / cover no-repeat;
}

/* Balanced 3x2 Full Display Grid for Mobile Services */
.mobile-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1240px;
    margin: 48px auto 0;
    width: 100%;
}

.mobile-services-grid .soft-service-card {
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-services-grid .soft-card-icon-box {
    margin: 0 auto 24px;
}

.mobile-services-grid .soft-card-btn {
    margin: auto auto 0;
}

@media (max-width: 991px) {
    .mobile-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .mobile-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ==========================================================================
   DIGITAL MARKETING SERVICES GRID & CARDS (MATCHING EXACT IMAGE SPEC)
   ========================================================================== */
.dm-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    max-width: 1260px;
    margin: 50px auto 0;
    width: 100%;
}

.dm-service-card {
    background: #ffffff;
    border-radius: 22px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 10px 32px rgba(15, 23, 42, 0.05);
    padding: 38px 24px 36px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.35s ease;
}

.dm-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 46px rgba(15, 23, 42, 0.1), 0 0 24px rgba(61, 85, 210, 0.12);
    border-color: rgba(61, 85, 210, 0.35);
}


.dm-card-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(145deg, #3d55d2 0%, #2940bc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 26px;
    margin: 0 auto 22px;
    box-shadow: 0 10px 22px rgba(41, 64, 188, 0.28);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.dm-service-card:hover .dm-card-icon-box {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 14px 28px rgba(41, 64, 188, 0.38);
}

.dm-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #243565;
    margin-bottom: 12px;
    line-height: 1.32;
}

.dm-card-desc {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #627293;
    margin: 0;
}

@media (max-width: 1100px) {
    .dm-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .dm-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .dm-service-card {
        padding: 34px 22px;
    }
}

/* ==========================================================================
   DIGITAL MARKETING PROCESS SECTION (5-COLUMN PROCESS DESIGN)
   ========================================================================== */
.dm-process-section {
    position: relative;
    overflow: hidden;
}

.dm-process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1240px;
    margin: 48px auto 0;
    width: 100%;
    position: relative;
}

.dm-process-col {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    padding: 38px 20px 34px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.35s ease;
}

.dm-process-col:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 46px rgba(47, 62, 130, 0.12);
    border-color: rgba(58, 76, 161, 0.35);
}

.dm-process-badge-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 24px;
}

.dm-process-badge {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, #374ea8 0%, #253994 100%);
    color: #ffffff;
    font-size: 1.55rem;
    font-weight: 800;
    font-family: var(--font-display, inherit);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 22px rgba(37, 57, 148, 0.32);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.35s ease;
    z-index: 2;
}

.dm-process-col:hover .dm-process-badge {
    transform: scale(1.1);
    box-shadow: 0 12px 28px rgba(37, 57, 148, 0.42);
}

.dm-process-arrow {
    position: absolute;
    right: -24px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1.1rem;
    z-index: 3;
    pointer-events: none;
    transition: transform 0.3s ease, color 0.3s ease;
}

.dm-process-col:hover .dm-process-arrow {
    transform: translateY(-50%) translateX(4px);
    color: #374ea8;
}

.dm-process-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e2e5c;
    margin-bottom: 12px;
    line-height: 1.35;
}

.dm-process-desc {
    font-size: 0.88rem;
    line-height: 1.62;
    color: #627293;
    margin: 0;
}

@media (max-width: 1100px) {
    .dm-process-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    .dm-process-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .dm-process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .dm-process-col {
        padding: 32px 22px;
    }
    .dm-process-arrow {
        display: none;
    }
}

/* Mobile Platforms Grid & Cards */
.mobile-platforms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    max-width: 1240px;
    margin: 44px auto 0;
}

.platform-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 44px 28px 46px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.35s ease;
}

.platform-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(58, 76, 161, 0.14);
    border-color: rgba(58, 76, 161, 0.28);
}

.platform-icon-circle {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: #394ca0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 26px;
    box-shadow: 0 8px 22px rgba(57, 76, 160, 0.28);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.35s ease;
}

.platform-card:hover .platform-icon-circle {
    transform: scale(1.08);
    box-shadow: 0 12px 28px rgba(57, 76, 160, 0.38);
}

.platform-icon-circle i {
    font-size: 2.3rem;
    color: #ffffff;
    line-height: 1;
}

.platform-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #273b69;
    margin-bottom: 16px;
    font-family: var(--font-display, inherit);
}

.platform-desc {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 1100px) {
    .mobile-platforms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .mobile-platforms-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .platform-card {
        padding: 36px 22px 38px;
    }
}

/* ==========================================================================
   MOBILE APP DEVELOPMENT PROCESS SECTION (6-STEP GRID)
   ========================================================================== */
.app-process-section {
    position: relative;
    overflow: hidden;
}

.app-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 30px;
    max-width: 1240px;
    margin: 44px auto 0;
    position: relative;
}

.process-card {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 50px 30px 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.85);
    border-top: 4px solid #394ca0;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.35s ease;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 46px rgba(57, 76, 160, 0.14);
    border-color: rgba(57, 76, 160, 0.35);
}

.process-step-badge {
    position: absolute;
    top: -26px;
    left: 50%;
    transform: translateX(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2f3e82 0%, #3e52a5 100%);
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 800;
    font-family: var(--font-display, inherit);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #ffffff;
    box-shadow: 0 6px 18px rgba(47, 62, 130, 0.32);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.35s ease;
}

.process-card:hover .process-step-badge {
    transform: translateX(-50%) scale(1.12);
    box-shadow: 0 10px 24px rgba(47, 62, 130, 0.45);
}

.process-icon-mini {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(57, 76, 160, 0.07);
    color: #394ca0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
    transition: all 0.35s ease;
}

.process-card:hover .process-icon-mini {
    background: #394ca0;
    color: #ffffff;
    transform: scale(1.05);
}

.process-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e295d;
    margin-bottom: 14px;
    font-family: var(--font-display, inherit);
}

.process-card-desc {
    font-size: 0.94rem;
    color: #475569;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 991px) {
    .app-process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 44px 24px;
    }
}

@media (max-width: 600px) {
    .app-process-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .process-card {
        padding: 44px 22px 34px;
    }
}

/* ==========================================================================
   DIGITAL MARKETING CTA / GROWTH BANNER SECTION
   ========================================================================== */
.digital-marketing-cta-section {
    position: relative;
    padding: 115px 0 105px;
    background: #050a18 url('assets/images/services/digital-marketing-growth-bg.jpg') center right / cover no-repeat;
    color: #ffffff;
    overflow: hidden;
}

.digital-marketing-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg, 
        rgba(5, 10, 24, 0.95) 0%, 
        rgba(5, 10, 24, 0.82) 42%, 
        rgba(6, 12, 32, 0.32) 75%,
        rgba(5, 10, 24, 0.15) 100%
    );
    z-index: 1;
}

.digital-marketing-content-wrap {
    max-width: 720px;
}

.digital-marketing-title {
    font-size: 2.9rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.16;
    margin-bottom: 22px;
    font-family: var(--font-display, inherit);
    letter-spacing: -0.02em;
}

.digital-marketing-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(241, 245, 249, 0.92);
    margin-bottom: 34px;
    max-width: 660px;
}

.digital-marketing-btn-wrap {
    margin-bottom: 50px;
}

.digital-marketing-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    color: #1e295d;
    font-size: 1.02rem;
    font-weight: 700;
    padding: 15px 36px;
    border-radius: 9999px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.digital-marketing-btn:hover {
    background: #f8fafc;
    color: #0072ff;
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.digital-marketing-btn i {
    transition: transform 0.25s ease;
}

.digital-marketing-btn:hover i {
    transform: translateX(4px);
}

.digital-marketing-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.dm-stat-item {
    display: flex;
    flex-direction: column;
}

.dm-stat-number {
    font-size: 2.6rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 8px;
    font-family: var(--font-display, inherit);
}

.dm-stat-label {
    font-size: 0.95rem;
    color: rgba(226, 232, 240, 0.9);
    font-weight: 500;
    line-height: 1.35;
}

@media (max-width: 991px) {
    .digital-marketing-title {
        font-size: 2.3rem;
    }
    .digital-marketing-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

@media (max-width: 640px) {
    .digital-marketing-cta-section {
        padding: 70px 0 75px;
    }
    .digital-marketing-title {
        font-size: 1.95rem;
    }
    .digital-marketing-desc {
        font-size: 0.96rem;
    }
    .digital-marketing-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-top: 30px;
        padding-top: 26px;
    }
    .dm-stat-number {
        font-size: 2.1rem;
    }
}

/* ==========================================================================
   GRAPHICS DESIGN CTA / HERO BANNER SECTION (MATCHING SPEC WITH PREMIUM BG)
   ========================================================================== */
.graphics-design-cta-section {
    position: relative;
    padding: 115px 0 105px;
    background: #070b19 url('assets/images/services/graphics-design-hero-bg.jpg') center right / cover no-repeat;
    color: #ffffff;
    overflow: hidden;
}

.graphics-design-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg, 
        rgba(7, 11, 25, 0.96) 0%, 
        rgba(7, 11, 25, 0.84) 44%, 
        rgba(8, 14, 34, 0.35) 75%,
        rgba(7, 11, 25, 0.15) 100%
    );
    z-index: 1;
}

.graphics-design-content-wrap {
    max-width: 720px;
}

.graphics-design-title {
    font-size: 2.9rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.16;
    margin-bottom: 22px;
    font-family: var(--font-display, inherit);
    letter-spacing: -0.02em;
}

.graphics-design-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(241, 245, 249, 0.92);
    margin-bottom: 34px;
    max-width: 660px;
}

.graphics-design-btn-wrap {
    margin-bottom: 50px;
}

.graphics-design-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    color: #1e1b4b;
    font-size: 1.02rem;
    font-weight: 700;
    padding: 15px 36px;
    border-radius: 9999px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.graphics-design-btn:hover {
    background: #fdf2f8;
    color: #9333ea;
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(147, 51, 234, 0.35);
}

.graphics-design-btn i {
    transition: transform 0.25s ease;
}

.graphics-design-btn:hover i {
    transform: translateX(4px);
}

.graphics-design-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.gd-stat-item {
    display: flex;
    flex-direction: column;
}

.gd-stat-number {
    font-size: 2.6rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 8px;
    font-family: var(--font-display, inherit);
}

.gd-stat-label {
    font-size: 0.95rem;
    color: rgba(226, 232, 240, 0.9);
    font-weight: 500;
    line-height: 1.35;
}

@media (max-width: 991px) {
    .graphics-design-title {
        font-size: 2.3rem;
    }
    .graphics-design-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

@media (max-width: 640px) {
    .graphics-design-cta-section {
        padding: 70px 0 75px;
    }
    .graphics-design-title {
        font-size: 1.95rem;
    }
    .graphics-design-desc {
        font-size: 0.96rem;
    }
    .graphics-design-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-top: 30px;
        padding-top: 26px;
    }
    .gd-stat-number {
        font-size: 2.1rem;
    }
}

/* ==========================================================================
   GRAPHICS DESIGN SERVICES GRID & CARDS (MATCHING EXACT SPEC)
   ========================================================================== */
.gd-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    max-width: 1280px;
    margin: 48px auto 0;
    width: 100%;
}

.gd-service-card {
    background: #ffffff;
    border-radius: 22px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    padding: 38px 26px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.35s ease;
}

.gd-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 46px rgba(15, 23, 42, 0.1), 0 0 24px rgba(61, 85, 210, 0.12);
    border-color: rgba(61, 85, 210, 0.4);
}

.gd-service-card.featured {
    border-color: rgba(61, 85, 210, 0.45);
    box-shadow: 0 12px 34px rgba(61, 85, 210, 0.08);
}

.gd-card-icon-box {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient(145deg, #3d55d2 0%, #2940bc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 26px;
    margin: 0 auto 22px;
    box-shadow: 0 10px 22px rgba(41, 64, 188, 0.28);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gd-service-card:hover .gd-card-icon-box {
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 14px 28px rgba(41, 64, 188, 0.38);
}

.gd-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #243565;
    margin-bottom: 12px;
    line-height: 1.32;
    text-align: center;
}

.gd-card-desc {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #627293;
    margin: 0 0 22px;
    text-align: center;
}

.gd-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    border-top: 1px solid rgba(226, 232, 240, 0.85);
}

.gd-check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    font-size: 0.92rem;
    color: #334155;
    font-weight: 500;
}

.gd-check-item:last-child {
    border-bottom: none;
}

.gd-check-icon {
    color: #3d55d2;
    font-size: 0.9rem;
    flex-shrink: 0;
}

@media (max-width: 1100px) {
    .gd-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .gd-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .gd-service-card {
        padding: 32px 20px 28px;
    }
}

/* ==========================================================================
   GRAPHICS DESIGN PACKAGES SECTION - REDESIGNED PREMIUM MODERN LAYOUT
   ========================================================================== */
.gd-packages-section {
    position: relative;
    padding: 95px 0 125px;
    background: #f8fafc;
    overflow: hidden;
    border-top: 1px solid rgba(226, 232, 240, 0.9);
}

.gd-packages-section .soft-bg-glow-1 {
    top: 5%;
    left: 8%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
}

.gd-packages-section .soft-bg-glow-2 {
    bottom: 5%;
    right: 8%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
}

.gd-packages-section .section-title {
    color: #1e293b;
}

.gd-packages-section .section-subtitle {
    color: #64748b;
    max-width: 680px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.6;
}

.gd-pkg-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(79, 70, 229, 0.08);
    border: 1px solid rgba(79, 70, 229, 0.22);
    color: #4f46e5;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 7px 20px;
    border-radius: 9999px;
    margin-bottom: 16px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.gd-packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 52px;
    align-items: stretch;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
}

.gd-pkg-card {
    position: relative;
    background: #ffffff;
    border: 1.5px solid rgba(226, 232, 240, 0.95);
    border-radius: 26px;
    padding: 44px 34px 38px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.06);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.35s ease;
}

.gd-pkg-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
    border-color: rgba(79, 70, 229, 0.4);
}

/* Card 1: Basic */
.gd-pkg-card.pkg-basic .gd-pkg-tier-icon {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: #2563eb;
}
.gd-pkg-card.pkg-basic .gd-pkg-tagline {
    background: #eff6ff;
    color: #1d4ed8;
}

/* Card 2: Professional (Featured / Most Popular) */
.gd-pkg-card.pkg-featured {
    border: 2px solid #6366f1;
    background: linear-gradient(180deg, #ffffff 0%, #faf5ff 100%);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.16), 0 0 25px rgba(99, 102, 241, 0.08);
    transform: scale(1.03);
}

.gd-pkg-card.pkg-featured:hover {
    transform: scale(1.03) translateY(-8px);
    box-shadow: 0 28px 60px rgba(99, 102, 241, 0.22), 0 0 32px rgba(99, 102, 241, 0.14);
}

.gd-pkg-card.pkg-featured .gd-pkg-tier-icon {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}
.gd-pkg-card.pkg-featured .gd-pkg-tagline {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    font-weight: 600;
}

/* Card 3: Premium */
.gd-pkg-card.pkg-premium .gd-pkg-tier-icon {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    color: #059669;
}
.gd-pkg-card.pkg-premium .gd-pkg-tagline {
    background: #f0fdf4;
    color: #047857;
}

/* Header Elements of Cards */
.gd-pkg-header {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    margin-bottom: 26px;
    position: relative;
}

.gd-pkg-tier-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
    transition: transform 0.35s ease;
}

.gd-pkg-card:hover .gd-pkg-tier-icon {
    transform: scale(1.1) rotate(4deg);
}

.gd-pkg-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.gd-pkg-tagline {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 9999px;
    margin-bottom: 18px;
}

.gd-price-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.gd-price-currency {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f172a;
}

.gd-price-amount {
    font-size: 2.7rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    font-family: var(--font-display, inherit);
    letter-spacing: -0.03em;
}

.gd-pkg-card.pkg-featured .gd-price-amount {
    color: #4f46e5;
}

.gd-price-unit {
    font-size: 0.92rem;
    font-weight: 600;
    color: #64748b;
    margin-left: 2px;
}

/* Most Popular Badge */
.gd-popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    color: #ffffff;
    font-size: 0.76rem;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 9999px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 6px 18px rgba(99, 102, 241, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

/* Features List */
.gd-pkg-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 13px;
    flex-grow: 1;
}

.gd-pkg-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.93rem;
    color: #334155;
    font-weight: 500;
    line-height: 1.4;
}

.gd-pkg-features li.highlight-feature {
    font-weight: 700;
    color: #1e1b4b;
}

.gd-pkg-features li .gd-check-circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #eef2ff;
    color: #4f46e5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    flex-shrink: 0;
}

.gd-pkg-card.pkg-featured .gd-pkg-features li .gd-check-circle {
    background: #e0e7ff;
    color: #4338ca;
}

.gd-pkg-card.pkg-premium .gd-pkg-features li .gd-check-circle {
    background: #ecfdf5;
    color: #059669;
}

/* Delivery badge */
.gd-delivery-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #f1f5f9;
    color: #475569;
    font-size: 0.86rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 10px;
    margin-bottom: 22px;
}

.gd-pkg-card.pkg-featured .gd-delivery-pill {
    background: #f3e8ff;
    color: #6b21a8;
}

.gd-pkg-card.pkg-premium .gd-delivery-pill {
    background: #ecfdf5;
    color: #047857;
}

/* Button Styling */
.gd-pkg-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 9999px;
    background: #1e293b;
    color: #ffffff !important;
    font-size: 0.98rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.15);
    margin-top: auto;
}

.gd-pkg-btn:hover {
    background: #0f172a;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.25);
}

.gd-pkg-card.pkg-featured .gd-pkg-btn {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    box-shadow: 0 8px 24px rgba(79, 70, 229, 0.35);
}

.gd-pkg-card.pkg-featured .gd-pkg-btn:hover {
    background: linear-gradient(135deg, #4338ca 0%, #6d28d9 100%);
    box-shadow: 0 12px 30px rgba(79, 70, 229, 0.45);
}

.gd-pkg-card.pkg-premium .gd-pkg-btn:hover {
    background: #059669;
    box-shadow: 0 10px 24px rgba(5, 150, 105, 0.35);
}

.gd-pkg-btn i {
    font-size: 0.9rem;
    transition: transform 0.25s ease;
}

.gd-pkg-btn:hover i {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .gd-packages-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        gap: 36px;
    }
    .gd-pkg-card.pkg-featured {
        transform: none;
    }
    .gd-pkg-card.pkg-featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 640px) {
    .gd-packages-grid {
        gap: 24px;
    }
    .gd-pkg-card {
        padding: 30px 20px 26px;
        border-radius: 20px;
    }
}

/* ==========================================================================
   GRAPHICS DESIGN - OUR DESIGN PORTFOLIO SECTION
   ========================================================================== */
.gd-portfolio-section {
    background: #f8fafc;
    padding: 100px 0 110px;
    position: relative;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.gd-portfolio-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 9999px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 18px;
    border: 1px solid rgba(37, 99, 235, 0.18);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
}

.gd-portfolio-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 40px 0 48px;
}

.gd-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 9999px;
    background: #ffffff;
    color: #475569;
    border: 1.5px solid rgba(226, 232, 240, 0.9);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
}

.gd-filter-btn:hover {
    color: #0f172a;
    border-color: #cbd5e1;
    background: #f8fafc;
    transform: translateY(-1px);
}

.gd-filter-btn.active {
    background: #1e293b;
    color: #ffffff;
    border-color: #1e293b;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.18);
}

.gd-filter-btn i {
    font-size: 0.88rem;
    opacity: 0.85;
}

/* Portfolio Grid */
.gd-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1240px;
    margin: 0 auto;
}

.gd-portfolio-card {
    background: #ffffff;
    border: 1.5px solid rgba(226, 232, 240, 0.9);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.35s ease,
                opacity 0.25s ease;
}

.gd-portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.11);
    border-color: rgba(79, 70, 229, 0.35);
}

/* Preview Canvas Area */
.gd-port-preview {
    position: relative;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 24px;
}

.gd-port-preview.bg-fresh {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 60%, #bbf7d0 100%);
}

.gd-port-preview.bg-sara {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #334155 100%);
}

.gd-port-preview.bg-mokaa {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 60%, #fed7aa 100%);
}

.gd-port-preview.bg-namassya {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 60%, #fed7aa 100%);
}

.gd-port-preview.bg-credible {
    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 60%, #c7d2fe 100%);
}

.gd-port-preview.bg-harmony {
    background: linear-gradient(135deg, #ecfeff 0%, #cffafe 60%, #a5f3fc 100%);
}

.gd-port-img-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gd-port-img-wrap img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(15, 23, 42, 0.18));
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.gd-portfolio-card:hover .gd-port-img-wrap img {
    transform: scale(1.08);
}

/* Category Badges inside preview */
.gd-port-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 9999px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.gd-port-badge.badge-green {
    background: rgba(255, 255, 255, 0.9);
    color: #15803d;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.gd-port-badge.badge-blue {
    background: rgba(15, 23, 42, 0.75);
    color: #38bdf8;
    border: 1px solid rgba(56, 189, 248, 0.3);
}

.gd-port-badge.badge-amber {
    background: rgba(255, 255, 255, 0.9);
    color: #b45309;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.gd-port-badge.badge-purple {
    background: rgba(255, 255, 255, 0.9);
    color: #7e22ce;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.gd-port-badge.badge-indigo {
    background: rgba(255, 255, 255, 0.9);
    color: #4338ca;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.gd-port-badge.badge-cyan {
    background: rgba(255, 255, 255, 0.9);
    color: #0e7490;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.gd-port-hover-icon {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    opacity: 0;
    transform: scale(0.85);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}

.gd-portfolio-card:hover .gd-port-hover-icon {
    opacity: 1;
    transform: scale(1);
}

/* Card Content Area - Clean Title Only */
.gd-port-content {
    padding: 20px 22px 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #ffffff;
}

.gd-port-title {
    font-size: 1.22rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
    letter-spacing: -0.01em;
    line-height: 1.35;
    transition: color 0.25s ease;
}

.gd-portfolio-card:hover .gd-port-title {
    color: #4f46e5;
}

@media (max-width: 1080px) {
    .gd-portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .gd-portfolio-grid {
        grid-template-columns: 1fr;
        max-width: 460px;
    }
}

/* ==========================================================================
   BULK SMS HERO / CTA BANNER SECTION (MATCHING USER SPEC & REFERENCE IMAGE)
   ========================================================================== */
.bulk-sms-cta-section {
    position: relative;
    padding: 120px 0 110px;
    background: #08112b url('assets/images/services/bulk-sms-hero-bg.jpg') center right / cover no-repeat;
    color: #ffffff;
    overflow: hidden;
}

.bulk-sms-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg, 
        rgba(10, 20, 52, 0.94) 0%, 
        rgba(10, 20, 52, 0.88) 42%, 
        rgba(12, 24, 64, 0.45) 75%,
        rgba(10, 20, 52, 0.20) 100%
    );
    z-index: 1;
}

.bulk-sms-content-wrap {
    max-width: 720px;
}

.bulk-sms-title {
    font-size: 3.1rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 22px;
    font-family: var(--font-display, inherit);
    letter-spacing: -0.02em;
}

.bulk-sms-desc {
    font-size: 1.05rem;
    line-height: 1.68;
    color: rgba(241, 245, 249, 0.92);
    margin-bottom: 34px;
    max-width: 660px;
}

.bulk-sms-btn-wrap {
    margin-bottom: 42px;
}

.bulk-sms-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #4338ca 0%, #3b82f6 100%);
    color: #ffffff !important;
    font-size: 1.02rem;
    font-weight: 700;
    padding: 15px 36px;
    border-radius: 9999px;
    box-shadow: 0 10px 28px rgba(59, 130, 246, 0.5), 0 2px 8px rgba(67, 56, 202, 0.35);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.bulk-sms-btn:hover {
    background: linear-gradient(135deg, #3730a3 0%, #2563eb 100%);
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(59, 130, 246, 0.65), 0 4px 12px rgba(67, 56, 202, 0.4);
}

.bulk-sms-btn i {
    transition: transform 0.25s ease;
}

.bulk-sms-btn:hover i {
    transform: translateX(4px);
}

.bulk-sms-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    padding-top: 10px;
}

.bulk-sms-stat-item {
    display: flex;
    flex-direction: column;
}

.bulk-sms-stat-number {
    font-size: 2.7rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 8px;
    font-family: var(--font-display, inherit);
    letter-spacing: -0.01em;
}

.bulk-sms-stat-label {
    font-size: 0.95rem;
    color: rgba(226, 232, 240, 0.9);
    font-weight: 500;
    line-height: 1.35;
}

@media (max-width: 991px) {
    .bulk-sms-title {
        font-size: 2.4rem;
    }
    .bulk-sms-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

@media (max-width: 640px) {
    .bulk-sms-cta-section {
        padding: 70px 0 75px;
    }
    .bulk-sms-title {
        font-size: 2.05rem;
    }
    .bulk-sms-desc {
        font-size: 0.96rem;
    }
    .bulk-sms-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-top: 30px;
        padding-top: 26px;
    }
    .bulk-sms-stat-number {
        font-size: 2.2rem;
    }
}

/* ==========================================================================
   OUR SMS SERVICES SECTION & CARDS
   ========================================================================== */
.sms-services-section {
    position: relative;
    overflow: hidden;
}

.sms-services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1260px;
    margin: 32px auto 0;
    width: 100%;
}

.sms-service-card {
    flex: 0 0 calc(25% - 15px);
    max-width: calc(25% - 15px);
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.05);
    padding: 16px 14px 13px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    box-sizing: border-box;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.35s ease;
}

.sms-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.09), 0 0 18px rgba(43, 64, 176, 0.14);
    border-color: rgba(59, 130, 246, 0.45);
}

.sms-card-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(145deg, #2b40b0 0%, #3e56d4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    margin: 0 auto 8px;
    box-shadow: 0 6px 14px rgba(43, 64, 176, 0.22);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.sms-service-card:hover .sms-card-icon-box {
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 10px 20px rgba(43, 64, 176, 0.32);
}

.sms-card-title {
    font-size: 1.02rem;
    font-weight: 700;
    color: #1e2e74;
    margin-bottom: 4px;
    line-height: 1.25;
    text-align: center;
    letter-spacing: -0.01em;
}

.sms-card-desc {
    font-size: 0.78rem;
    line-height: 1.35;
    color: #64748b;
    margin: 0 0 9px;
    text-align: center;
    min-height: unset;
}

.sms-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    border-top: 1px solid rgba(226, 232, 240, 0.85);
}

.sms-check-item {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    padding: 3.8px 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.65);
    font-size: 0.78rem;
    color: #334155;
    font-weight: 500;
    line-height: 1.3;
    text-align: left;
}

.sms-check-item:last-child {
    border-bottom: none;
}

.sms-check-icon {
    color: #2b40b0;
    font-size: 0.72rem;
    margin-top: 2px;
    flex-shrink: 0;
}

@media (max-width: 1100px) and (min-width: 641px) {
    .sms-services-grid {
        gap: 16px;
        max-width: 640px;
    }
    .sms-service-card {
        flex: 0 0 calc(50% - 8px);
        max-width: calc(50% - 8px);
    }
    .sms-service-card:nth-child(7) {
        flex: 0 0 100%;
        max-width: 310px;
    }
}

@media (max-width: 640px) {
    .sms-services-grid {
        gap: 15px;
        padding: 0 16px;
    }
    .sms-service-card {
        flex: 0 0 100%;
        max-width: 320px;
        padding: 16px 14px 13px;
    }
}

/* ==========================================================================
   SMS PACKAGES SECTION & CARDS
   ========================================================================== */
.sms-packages-section {
    position: relative;
    overflow: hidden;
    background: #f8fafc;
    padding: 85px 0 95px;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.sms-packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 48px;
    align-items: stretch;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.sms-pkg-card {
    position: relative;
    background: #ffffff;
    border: 1.5px solid rgba(226, 232, 240, 0.95);
    border-radius: 24px;
    padding: 34px 26px 28px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05), 0 1px 3px rgba(15, 23, 42, 0.03);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.35s ease;
    overflow: hidden;
}

.sms-pkg-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px -10px rgba(43, 64, 176, 0.16);
    border-color: rgba(43, 64, 176, 0.35);
}

/* Featured Card */
.sms-pkg-card.pkg-featured {
    border: 2px solid #2b40b0;
    background: linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
    box-shadow: 0 20px 50px rgba(43, 64, 176, 0.16), 0 0 25px rgba(43, 64, 176, 0.06);
    transform: scale(1.03);
}

.sms-pkg-card.pkg-featured:hover {
    transform: scale(1.03) translateY(-8px);
    box-shadow: 0 28px 60px rgba(43, 64, 176, 0.22), 0 0 32px rgba(43, 64, 176, 0.12);
}

.sms-featured-top-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #2b40b0 0%, #7c3aed 50%, #06b6d4 100%);
}

/* Card Top Row */
.sms-card-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

.sms-tier-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 50px;
    font-size: 0.84rem;
    font-weight: 700;
    padding: 6px 14px;
    letter-spacing: 0.02em;
}

.sms-tier-badge.tier-starter {
    background: rgba(43, 64, 176, 0.08);
    color: #2b40b0;
    border: 1px solid rgba(43, 64, 176, 0.18);
}

.sms-tier-badge.tier-business {
    background: linear-gradient(135deg, #2b40b0 0%, #4338ca 100%);
    color: #ffffff;
    box-shadow: 0 3px 10px rgba(43, 64, 176, 0.25);
}

.sms-tier-badge.tier-enterprise {
    background: rgba(13, 148, 136, 0.09);
    color: #0d9488;
    border: 1px solid rgba(13, 148, 136, 0.22);
}

.sms-rate-badge {
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
    padding: 5px 12px;
    border-radius: 8px;
    background: #f1f5f9;
    color: #334155;
    font-size: 0.85rem;
    font-weight: 600;
}

.sms-rate-badge strong {
    font-size: 1.08rem;
    font-weight: 800;
    color: #0f172a;
}

.sms-rate-badge small {
    font-size: 0.74rem;
    color: #64748b;
    font-weight: 600;
    margin-left: 1px;
}

.sms-rate-badge.featured-rate {
    background: rgba(43, 64, 176, 0.1);
    border: 1px solid rgba(43, 64, 176, 0.24);
}

.sms-rate-badge.featured-rate strong {
    color: #2b40b0;
}

/* Price Block */
.sms-card-price-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 6px;
}

.sms-amount-display {
    display: flex;
    align-items: baseline;
    gap: 5px;
    line-height: 1;
}

.sms-amount-prefix {
    font-size: 0.96rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #64748b;
    letter-spacing: 0.03em;
}

.sms-amount-val {
    font-size: 2.7rem;
    font-weight: 850;
    color: #0f172a;
    letter-spacing: -0.03em;
}

.sms-volume-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 10px;
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.25);
    color: #15803d;
    font-size: 0.85rem;
    font-weight: 600;
    width: 100%;
    margin-top: 4px;
}

.sms-volume-badge i {
    font-size: 1.15rem;
    color: #25D366;
}

.sms-volume-badge.featured-volume {
    background: rgba(43, 64, 176, 0.08);
    border-color: rgba(43, 64, 176, 0.25);
    color: #2b40b0;
}

.sms-volume-badge.featured-volume i {
    color: #25D366;
}

.sms-volume-badge.enterprise-volume {
    background: rgba(13, 148, 136, 0.08);
    border-color: rgba(13, 148, 136, 0.25);
    color: #0f766e;
}

.sms-volume-badge.enterprise-volume i {
    color: #25D366;
}

/* Subtle Divider */
.sms-card-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(226, 232, 240, 0.2), rgba(203, 213, 225, 0.9), rgba(226, 232, 240, 0.2));
    margin: 18px 0 20px;
    width: 100%;
}

/* Features List */
.sms-pkg-features {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sms-pkg-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    color: #334155;
    font-weight: 500;
    line-height: 1.4;
}

.sms-feat-icon {
    width: 26px;
    height: 26px;
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    flex-shrink: 0;
}

.sms-feat-icon.feat-cal {
    background: #eff6ff;
    color: #2563eb;
}

.sms-feat-icon.feat-id {
    background: #f5f3ff;
    color: #7c3aed;
}

.sms-feat-icon.feat-refund {
    background: #f0fdf4;
    color: #16a34a;
}

.sms-feat-icon.feat-dash {
    background: #eef2ff;
    color: #4f46e5;
}

.sms-feat-icon.feat-time {
    background: #fffbeb;
    color: #d97706;
}

.sms-feat-icon.feat-report {
    background: #ecfeff;
    color: #0891b2;
}

.sms-feat-icon.feat-support {
    background: #fdf2f8;
    color: #db2777;
}

/* Delivery / SLA Pill */
.sms-delivery-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #f8fafc;
    border: 1px dashed rgba(203, 213, 225, 0.9);
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 0.8rem;
    color: #475569;
    font-weight: 600;
    margin-bottom: 18px;
    text-align: center;
}

.sms-delivery-pill i {
    color: #2b40b0;
}

/* Action Button */
.sms-pkg-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 20px;
    border-radius: 12px;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    color: #2b40b0;
    background: rgba(43, 64, 176, 0.08);
    border: 1.5px solid rgba(43, 64, 176, 0.22);
    transition: all 0.3s ease;
    cursor: pointer;
}

.sms-pkg-btn:hover {
    background: #2b40b0;
    color: #ffffff;
    border-color: #2b40b0;
    box-shadow: 0 8px 20px rgba(43, 64, 176, 0.28);
    transform: translateY(-2px);
}

.sms-pkg-card.pkg-featured .sms-pkg-btn {
    background: linear-gradient(135deg, #2b40b0 0%, #3e56d4 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 8px 22px rgba(43, 64, 176, 0.32);
}

.sms-pkg-card.pkg-featured .sms-pkg-btn:hover {
    box-shadow: 0 12px 28px rgba(43, 64, 176, 0.42);
    transform: translateY(-2px);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .sms-packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .sms-pkg-card.pkg-featured {
        transform: none;
    }
    .sms-pkg-card.pkg-featured:hover {
        transform: translateY(-8px);
    }
    .sms-pkg-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 520px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .sms-packages-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .sms-pkg-card {
        padding: 30px 20px 26px;
    }
    .sms-pkg-card:nth-child(3) {
        max-width: 100%;
    }
}

/* ==========================================================================
   WHY CHOOSE OUR SMS SERVICE SECTION
   ========================================================================== */
.sms-why-choose-section {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    padding: 85px 0 95px;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.sms-why-flex-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 48px;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.sms-why-feature-card {
    flex: 0 0 calc(25% - 18px);
    max-width: calc(25% - 18px);
    background: #ffffff;
    border: 1.5px solid rgba(226, 232, 240, 0.95);
    border-radius: 20px;
    padding: 38px 24px 34px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.02);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.35s ease;
}

.sms-why-feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(43, 64, 176, 0.38);
    box-shadow: 0 22px 45px -10px rgba(43, 64, 176, 0.16), 0 4px 12px rgba(15, 23, 42, 0.04);
}

.sms-why-squircle-icon {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    background: linear-gradient(135deg, #2b40b0 0%, #3e56d4 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 22px;
    box-shadow: 0 8px 20px rgba(43, 64, 176, 0.25);
    transition: transform 0.35s ease;
}

.sms-why-feature-card:hover .sms-why-squircle-icon {
    transform: scale(1.1) rotate(4deg);
}

.sms-why-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.sms-why-card-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.58;
    margin: 0;
}

/* Responsive queries */
@media (max-width: 1100px) {
    .sms-why-feature-card {
        flex: 0 0 calc(50% - 12px);
        max-width: calc(50% - 12px);
    }
}

@media (max-width: 640px) {
    .sms-why-flex-grid {
        gap: 16px;
    }
    .sms-why-feature-card {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 30px 20px 26px;
    }
}

/* Mobile CTA Section Glow Backdrop */
.mobile-cta-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #091124 0%, #101c3d 50%, #0c1329 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-cta-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 114, 255, 0.22) 0%, rgba(124, 58, 237, 0.16) 50%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}



