﻿/* ============================================
   CSS Block
   ============================================ */
/* ============================================
    MODERN HOME PAGE - PROFESSIONAL CLEAN DESIGN
============================================ */

/* Global Variables */
:root {
    --primary-color: #1760bb;
    --primary-dark: #10509e;
    --text-dark: #1e3873;
    --text-light: #5a6c7d;
    --bg-light: #f8fbff;
    --bg-gradient: linear-gradient(135deg, #f2f7fc 0%, #e3edfa 100%);
    --shadow-sm: 0 2px 10px rgba(23, 96, 187, 0.08);
    --shadow-md: 0 4px 20px rgba(23, 96, 187, 0.12);
    --shadow-lg: 0 8px 30px rgba(23, 96, 187, 0.18);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hero Slider - Modern Design */
.hero-slider {
    background: var(--bg-gradient);
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 120px);
}

.hero-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(23, 96, 187, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(23, 96, 187, 0.03) 0%, transparent 50%);
    z-index: 0;
}

.hero-slider .carousel-inner {
    position: relative;
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    padding: 60px 0 60px;
    min-height: auto;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease-out;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 2rem;
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.cta-form {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.cta-form .form-control {
    border-radius: 12px;
    border: 2px solid rgba(23, 96, 187, 0.12);
    padding: 14px 18px;
    font-size: 1rem;
    transition: var(--transition);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.cta-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(23, 96, 187, 0.1), var(--shadow-sm);
    outline: none;
    transform: translateY(-1px);
}

.btn-proposal {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-proposal::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-proposal:hover::before {
    width: 300px;
    height: 300px;
}

.btn-proposal:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: #ffffff;
}

.btn-proposal:active {
    transform: translateY(-1px);
}

.btn-proposal:focus:not(:focus-visible) {
    outline: none !important;
    border: none !important;
}

.btn-proposal:focus-visible {
    outline: 2px solid #1760bb;
    outline-offset: 2px;
    border-radius: 4px;
}

.flow-diagram {
    animation: fadeInRight 0.8s ease-out 0.3s both;
}

.diagram-image {
    filter: drop-shadow(0 10px 40px rgba(23, 96, 187, 0.12));
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
}

.diagram-image:hover {
    transform: scale(1.05) translateY(-5px);
}

/* Carousel Indicators - Modern Style */
.carousel-indicators {
    bottom: 2.5rem;
    z-index: 10;
    gap: 8px;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    margin: 0;
    opacity: 0.7;
}

.carousel-indicators button.active {
    background: #ffffff;
    width: 28px;
    border-radius: 5px;
    border-color: #ffffff;
    opacity: 1;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.4);
}

/* Smooth Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* Customer Reviews Section - Modern Design */
.customer-reviews-section {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    position: relative;
}
.reviews-headline {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}
.reviews-subheading {
    color: var(--text-light);
    font-size: clamp(1rem, 2vw, 1.15rem);
    margin-top: 0.75rem;
    margin-bottom: 0;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.review-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    padding: 2rem 1.5rem;
    min-height: 350px;
    border: 1.5px solid rgba(23, 96, 187, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.review-card:hover::before {
    transform: scaleX(1);
}
.review-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    border-color: rgba(23, 96, 187, 0.2);
}
.review-photo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(23, 96, 187, 0.15);
    border: 3px solid #ffffff;
    transition: var(--transition);
}
.review-card:hover .review-photo {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(23, 96, 187, 0.25);
}
.review-role {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}
.review-text {
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}
.review-rating {
    color: #ffb82b;
    font-size: 1.3rem;
    margin-top: auto;
}
.trusted-by-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(23, 96, 187, 0.1);
}
.trusted-by-text {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}
.brand-logos img {
    height: 35px;
    opacity: 0.7;
    transition: var(--transition);
    filter: grayscale(100%);
}
.brand-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .slide-content {
        padding: 100px 0 60px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-description {
        font-size: 1.1rem;
    }
    .review-card {
        min-height: auto;
    }
}

@media (max-width: 767.98px) {
    .slide-content {
        padding: 80px 0 50px;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-description {
        font-size: 1rem;
    }
    .btn-proposal {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    .carousel-indicators {
        bottom: 1.5rem;
    }
    .review-card {
        padding: 1.5rem 1.25rem;
        min-height: auto;
    }
    .review-photo {
        width: 64px;
        height: 64px;
    }
    .brand-logos img {
        height: 28px;
    }
}

/* ============================================
   CSS Block
   ============================================ */
/* About Section - Modern Professional Design */
    .about-section {
        background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%) !important;
        position: relative;
        overflow: hidden;
        padding: 3rem 0 !important;
    }
    
    .proposal-form-container {
        background: #ffffff !important;
        border-radius: 24px;
        box-shadow: var(--shadow-md) !important;
        padding: 3rem 2.5rem;
        max-width: 520px;
        margin: 0 auto;
        border: 1.5px solid rgba(23, 96, 187, 0.1);
        transition: var(--transition);
        position: relative;
        overflow: hidden;
    }
    
    .proposal-form-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    }
    
    .proposal-form-container:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
    }
    
    .proposal-form-title {
        color: var(--text-dark) !important;
        font-weight: 800 !important;
        font-size: clamp(1.5rem, 3vw, 2rem) !important;
        margin-bottom: 1rem;
        letter-spacing: -0.02em;
    }
    
    .proposal-form-desc {
        color: var(--text-light) !important;
        font-size: clamp(0.95rem, 2vw, 1.1rem) !important;
        margin-bottom: 2rem;
        line-height: 1.7;
    }
    
    .proposal-form .form-control,
    .proposal-form .form-select {
        border-radius: 12px !important;
        border: 2px solid rgba(23, 96, 187, 0.12) !important;
        box-shadow: var(--shadow-sm) !important;
        font-size: 1rem !important;
        margin-bottom: 1rem;
        min-height: 52px;
        padding: 0.875rem 1.25rem;
        transition: var(--transition);
        background: #ffffff !important;
        color: var(--text-dark) !important;
    }
    
    .proposal-form .form-control:focus,
    .proposal-form .form-select:focus {
        border-color: var(--primary-color) !important;
        box-shadow: 0 0 0 4px rgba(23, 96, 187, 0.1), var(--shadow-sm) !important;
        outline: none;
        transform: translateY(-2px);
    }
    
    .proposal-form .form-control::placeholder {
        color: var(--text-light) !important;
    }
    
    .proposal-form .btn-proposal-submit {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%) !important;
        color: #fff !important;
        font-weight: 700 !important;
        font-size: 1.05rem !important;
        border-radius: 12px;
        padding: 16px 0;
        width: 100%;
        margin-top: 0.5rem;
        box-shadow: var(--shadow-md) !important;
        border: none !important;
        transition: var(--transition);
        position: relative;
        overflow: hidden;
    }
    
    .proposal-form .btn-proposal-submit::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }
    
    .proposal-form .btn-proposal-submit:hover::before {
        width: 300px;
        height: 300px;
    }
    
    .proposal-form .btn-proposal-submit:hover,
    .proposal-form .btn-proposal-submit:focus {
        background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
        color: #fff;
        box-shadow: var(--shadow-lg);
        transform: translateY(-3px);
    }
    
    .proposal-form .btn-proposal-submit:active {
        transform: translateY(-1px);
    }
    
    .g-recaptcha {
        margin-bottom: 1.5rem;
    }
    
    .about-title {
        font-size: clamp(2rem, 4vw, 2.75rem) !important;
        font-weight: 800 !important;
        color: var(--text-dark) !important;
        margin-bottom: 1.5rem !important;
        letter-spacing: -0.02em;
        line-height: 1.3;
    }
    
    .about-description {
        font-size: clamp(1rem, 2vw, 1.1rem) !important;
        color: var(--text-light) !important;
        line-height: 1.8;
        margin-bottom: 1.5rem !important;
    }
    
    .content-wrapper {
        min-height: 100%;
    }
    
    .about-stats-wrapper {
        display: flex;
        align-items: flex-end;
        width: 100%;
    }
    
    .about-stats-card {
        background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%) !important;
        border: 1.5px solid rgba(23, 96, 187, 0.1) !important;
        border-radius: 20px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: 0 8px 25px rgba(23, 96, 187, 0.1) !important;
        padding: 2rem 1.5rem;
        width: 100%;
        position: relative;
        overflow: hidden;
        will-change: transform;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        gap: 0.75rem;
        min-height: 180px;
    }
    
    .about-stats-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
        transform: scaleY(0);
        transform-origin: top;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1;
    }
    
    .about-stats-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(23, 96, 187, 0.02) 0%, transparent 100%);
        opacity: 0;
        transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .about-stats-card:hover::before {
        transform: scaleY(1);
    }
    
    .about-stats-card:hover::after {
        opacity: 1;
    }
    
    .about-stats-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(23, 96, 187, 0.2);
        border-color: rgba(23, 96, 187, 0.3);
        will-change: auto;
    }
    
    .about-stats-icon {
        width: 70px;
        height: 70px;
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        margin-bottom: 0.5rem;
        position: relative;
        z-index: 2;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 15px rgba(23, 96, 187, 0.15);
    }
    
    .about-stats-card:nth-child(1) .about-stats-icon {
        background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
        color: #1966ed;
    }
    
    .about-stats-card:nth-child(2) .about-stats-icon {
        background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
        color: #18b35b;
    }
    
    .about-stats-card:nth-child(3) .about-stats-icon {
        background: linear-gradient(135deg, #fff9e6 0%, #ffe082 100%);
        color: #f7b500;
    }
    
    .about-stats-card:hover .about-stats-icon {
        transform: scale(1.1) rotate(5deg);
        box-shadow: 0 8px 25px rgba(23, 96, 187, 0.25);
    }
    
    .about-stats-value {
        font-size: clamp(2rem, 3vw, 2.5rem) !important;
        font-weight: 800 !important;
        color: var(--text-dark) !important;
        line-height: 1.2;
        margin: 0;
        position: relative;
        z-index: 2;
        transition: color 0.3s ease;
        letter-spacing: -0.02em;
    }
    
    .about-stats-card:hover .about-stats-value {
        color: var(--primary-color) !important;
    }
    
    .about-stats-label {
        font-size: clamp(0.85rem, 1vw, 0.95rem) !important;
        font-weight: 600 !important;
        color: var(--text-light) !important;
        text-transform: uppercase;
        text-align: center;
        letter-spacing: 0.05em;
        margin: 0;
        position: relative;
        z-index: 2;
        transition: color 0.3s ease;
        line-height: 1.4;
    }
    
    .about-stats-card:hover .about-stats-label {
        color: var(--primary-color) !important;
    }
    
    @media (max-width: 991.98px) {
        .proposal-form-container {
            padding: 2rem 1.5rem;
        }
        .proposal-form-title {
            font-size: 1.75rem;
        }
        .about-title {
            font-size: 2rem;
        }
        .content-wrapper {
            min-height: auto;
        }
        .about-stats-wrapper {
            align-items: stretch;
            margin-top: 2rem !important;
        }
        .about-stats-card {
            min-height: 160px;
        }
    }
    
    @media (max-width: 767.98px) {
        .proposal-form-container {
            padding: 1.5rem 1.25rem;
        }
        .proposal-form-title {
            font-size: 1.5rem;
        }
        .about-title {
            font-size: 1.75rem;
        }
        .about-stats-card {
            min-height: 140px;
            padding: 1.5rem 1rem;
        }
        .about-stats-icon {
            width: 60px;
            height: 60px;
            font-size: 1.75rem;
        }
    }


/* ============================================
   CSS Block
   ============================================ */
/* Why Choose Section - Modern Professional Design */
.why-choose-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    position: relative;
}
.why-choose-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    line-height: 1.3;
}
.why-choose-intro {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-light);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.7;
}
.why-feature-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1.5px solid rgba(23, 96, 187, 0.1);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 2rem 1.5rem;
    position: relative;
    overflow: hidden;
}
.why-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.why-feature-card:hover::before {
    transform: scaleX(1);
}
.why-feature-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    border-color: rgba(23, 96, 187, 0.25);
    z-index: 5;
}
.why-feature-icon {
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(23, 96, 187, 0.1) 0%, rgba(23, 96, 187, 0.05) 100%);
    box-shadow: var(--shadow-sm);
    width: 70px;
    height: 70px;
    margin-bottom: 1.25rem;
    transition: var(--transition);
}
.why-feature-card:hover .why-feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-md);
}
.why-accent1 { color: #176bee; }
.why-accent2 { color: #22b8e8; }
.why-accent3 { color: #0a9e69; }
.why-accent4 { color: #7b3fff; }
.why-accent5 { color: #ff8400; }
.why-accent6 { color: #1862e0; }
.why-feature-title {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}
.why-feature-desc {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}
.why-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #fff !important;
    font-weight: 600;
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    border-radius: 50px;
    border: none;
    padding: 16px 40px;
    box-shadow: 0 8px 25px rgba(23, 96, 187, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.02em;
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}
.why-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}
.why-cta-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transform: translate(-50%, -50%);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1), height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}
.why-cta-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(23, 96, 187, 0.35);
    color: #fff !important;
    will-change: auto;
}
.why-cta-btn:hover::before {
    left: 100%;
}
.why-cta-btn:hover::after {
    width: 300px;
    height: 300px;
}
.why-cta-btn:active {
    transform: translateY(-2px) scale(0.98);
    box-shadow: 0 6px 20px rgba(23, 96, 187, 0.3);
}
.why-cta-btn i {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}
.why-cta-btn:hover i {
    transform: translateX(4px);
}
/* Responsive Styles */
@media (max-width: 991.98px) {
    .why-choose-title {
        font-size: 1.65rem;
    }
    .why-feature-card {
        min-height: 160px;
    }
}
@media (max-width: 767.98px) {
    .why-choose-section {
        padding-top: 2.4rem;
        padding-bottom: 2.4rem;
    }
    .why-choose-title {
        font-size: 1.22rem;
    }
    .why-feature-card {
        padding: 1.1rem;
        font-size: 0.98rem;
        min-height: 125px;
    }
    .why-feature-icon {
        font-size: 1.75rem;
        width: 38px;
        height: 38px;
    }
}
/* Add extra white space between cards */
.why-feature-card {
    margin-bottom: 0.2em;
}

/* ============================================
   CSS Block
   ============================================ */
/* Portfolio Section - Professional Clean & Smooth Design */
.portfolio-section {
    background: linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(23, 96, 187, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(23, 96, 187, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.portfolio-header {
    position: relative;
    z-index: 1;
}

.portfolio-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 900;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    line-height: 1.3;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.portfolio-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 2px;
}

.portfolio-subtitle {
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    color: var(--primary-color);
    font-weight: 500;
    letter-spacing: 0.01em;
    margin-top: 1.5rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.portfolio-card-item {
    display: flex;
}

.portfolio-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(23, 96, 187, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1.5px solid #e3edfa;
    position: relative;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.portfolio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.portfolio-card:hover::before {
    transform: scaleX(1);
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(23, 96, 187, 0.25);
    border-color: var(--primary-color);
    will-change: auto;
}

.portfolio-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: linear-gradient(135deg, #e3edfa 0%, #f2f7fc 100%);
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.98);
}

.portfolio-card:hover .portfolio-image {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(23, 96, 187, 0.85) 0%, rgba(16, 80, 158, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-view-btn {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    text-decoration: none;
    transform: scale(0.8) rotate(-45deg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.portfolio-card:hover .portfolio-view-btn {
    transform: scale(1) rotate(0deg);
}

.portfolio-view-btn:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: scale(1.1) rotate(0deg);
}

.portfolio-content {
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: #ffffff;
}

.portfolio-project-title {
    font-size: clamp(1.1rem, 1.3vw, 1.25rem);
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.4;
    letter-spacing: -0.01em;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card:hover .portfolio-project-title {
    color: var(--primary-color) !important;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.portfolio-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, #f0f4f8 0%, #e3edfa 100%);
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    border: 1px solid rgba(23, 96, 187, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.01em;
}

.portfolio-card:hover .portfolio-tag {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%) !important;
    color: #ffffff !important;
    border-color: transparent !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(23, 96, 187, 0.2);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .portfolio-section {
        padding: 80px 0;
    }
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .portfolio-section {
        padding: 60px 0;
    }
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .portfolio-content {
        padding: 1.5rem 1.25rem;
    }
}

    .device-frame.laptop-frame {
        background: linear-gradient(120deg, #e9f1fc 80%, #d0e1ff 100%);
        border-radius: 1.1em 1.1em 1.75em 1.75em/1.1em 1.1em 1.5em 1.5em;
        padding: 1.09em 0.9em 0.7em 0.9em;
        margin-bottom: 0.2rem;
        box-shadow: 0 2px 10px #1a325a11;
        position: relative;
        min-width: 270px;
    }
    .device-frame.laptop-frame:before {
        content: "";
        display: block;
        position: absolute;
        top: 7px;
        left: 50%;
        transform: translateX(-50%);
        width: 38px;
        height: 5.2px;
        border-radius: 18px;
        background: #b9ceea;
        opacity: 0.7;
    }
    .device-frame.laptop-frame img {
        border-radius: 0.8em 0.8em 1.15em 1.15em/ 0.8em 0.8em 1em 1em;
        box-shadow: 0 2px 16px #c7eafe0a;
        width: 100%;
        max-width: 100%;
        aspect-ratio: 16/9;
        object-fit: cover;
    }
    .portfolio-project-title {
        font-size: 1.11rem;
        color: #172e52;
        font-weight: 600;
        margin-top: 0.18em;
        margin-bottom: 0;
        letter-spacing: 0.01em;
        line-height: 1.18;
    }
    .portfolio-tags {
        gap: 0.42em;
    }
    .portfolio-tag {
        border-radius: 20px;
        background: linear-gradient(135deg, rgba(23, 96, 187, 0.1) 0%, rgba(23, 96, 187, 0.05) 100%);
        color: var(--primary-color);
        font-size: 0.9rem;
        font-weight: 600;
        padding: 6px 16px;
        border: 1px solid rgba(23, 96, 187, 0.15);
        letter-spacing: 0.01em;
        transition: var(--transition);
        user-select: none;
    }
    @media (max-width: 991.98px) {
        .portfolio-title {
            font-size: 1.48rem;
        }
        .portfolio-card {
            min-height: 270px;
            padding: 1rem 0.66rem;
        }
        .portfolio-mockup {
            max-width: 265px;
        }
    }
    @media (max-width: 767.98px) {
        .portfolio-title {
            font-size: 1.09rem;
        }
        .portfolio-section {
            padding-top: 2rem;
            padding-bottom: 2rem;
        }
        .portfolio-card {
            padding: 0.85rem 0.41rem;
        }
        .portfolio-mockup {
            max-width: 92vw;
        }
    }

/* ============================================
   CSS Block
   ============================================ */
@media (min-width: 768px) {
        /* header left title, right button */
        .services-offer-section .row.align-items-center.mb-5 {
            margin-bottom: 2.7rem !important;
            display: flex !important;
        }
        .services-offer-title {
            font-size: clamp(1.75rem, 4vw, 2.25rem);
            font-weight: 800;
            color: var(--text-dark);
            letter-spacing: -0.02em;
        }
        .services-offer-subtitle {
            font-size: clamp(1rem, 2vw, 1.1rem);
            color: var(--text-light);
            margin-bottom: 0 !important;
        }
    }
    @media (max-width: 991.98px) {
        .services-offer-title {
            font-size: 1.35rem;
        }
        .services-offer-section .row.align-items-center.mb-5 {
            margin-bottom: 2rem !important;
        }
    }
    /* Services Section Mobile Design */
    @media (max-width: 767.98px) {
        .services-offer-section {
            padding: 2.5rem 0 !important;
        }
        
        /* Mobile Header Styling */
        #services-mobile-list .row.align-items-center.mb-3 {
            margin-bottom: 2rem !important;
            padding: 0 1rem;
        }
        
        #services-mobile-list .services-offer-title {
            font-size: clamp(1.5rem, 5vw, 1.75rem) !important;
            font-weight: 800 !important;
            color: var(--text-dark) !important;
            letter-spacing: -0.02em;
            margin-bottom: 0.5rem !important;
            line-height: 1.3;
        }
        
        #services-mobile-list .services-offer-subtitle {
            font-size: clamp(0.95rem, 2.5vw, 1.05rem) !important;
            color: var(--text-light) !important;
            margin-bottom: 1rem !important;
            line-height: 1.6;
        }
        
        #services-mobile-list .btn {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            color: #fff !important;
            border: none;
            border-radius: 12px !important;
            padding: 12px 24px !important;
            font-size: 0.95rem !important;
            font-weight: 600;
            width: 100%;
            max-width: 100%;
            margin-top: 0.75rem;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }
        
        #services-mobile-list .btn:hover {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        
        /* Hide desktop heading/subline/cta row in mobile */
        .services-offer-section .row.align-items-center.mb-5 {
            display: none !important;
        }
    }
    @media (max-width: 575.98px) {
        .services-offer-section .btn {
            font-size: 0.99rem;
            padding: 0.69rem 1rem;
        }
        .services-offer-section .row.align-items-center.mb-5 {
            margin-bottom: 1.2rem !important;
        }
    }
    /* Keep rest of previous styles */
    @media (min-width: 768px) {
        .services-list {
            min-width: 220px;
            width: 100%;
        }
        .services-list .service-btn {
            padding: 0.88rem 1rem;
            font-size: 1.12rem;
            font-weight: 500;
            color: #21335c;
            text-align: left;
            border-radius: 0.65rem;
            transition:
                background 0.2s,
                color 0.2s,
                box-shadow 0.18s;
            background: #f7fafd;
            border: none !important;
            margin: 0;
            outline: none !important;
        }
        .services-list .service-btn.active,
        .services-list .service-btn:hover,
        .services-list .service-btn:focus {
            background: #2563eb !important;
            color: #fff !important;
            font-weight: 600;
            box-shadow: 0 8px 32px -8px #2563eb24;
        }
        .services-list .service-btn .circle-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            font-size: 1.27em;
            background: #fff;
            border-radius: 50%;
            margin-right: 1rem;
        }
        .services-list .service-btn.active .circle-icon {
            background: #fff;
            border: 2px solid #fff;
        }
        .services-sidebar-content {
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }
        .services-sidebar-content .tab-pane {
            min-height: 355px;
            transition: min-height 0.18s;
        }
        .services-sidebar-content .card {
            border-radius: 1.05rem;
            box-shadow: 0 4px 22px -8px #174b9c20;
        }
    }
    @media (max-width: 991.98px) {
        .services-sidebar-layout .row > [class^="col-"] {
            padding-left: 0;
            padding-right: 0;
        }
        .services-sidebar-content .tab-pane {
            min-height: unset;
        }
    }
    .service-mobile-block .service-mobile-content {
        margin-top: 0;
    }
    @media (min-width: 768px) {
        #services-mobile-list {
            display: none !important;
        }
    }
    @media (max-width: 767.98px) {
        .services-sidebar-layout {
            display: none !important;
        }
        
        /* Mobile Service Blocks Container */
        #services-mobile-list {
            padding: 0 1rem;
        }
        
        .service-mobile-block {
            margin-bottom: 1.5rem !important;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            background: #ffffff;
            border: 1.5px solid rgba(23, 96, 187, 0.08);
            transition: var(--transition);
        }
        
        .service-mobile-block:hover {
            box-shadow: var(--shadow-md);
        }
        
        /* Service Button Styling */
        .service-mobile-block .service-btn {
            width: 100%;
            border-radius: 16px 16px 0 0;
            margin: 0;
            background: #f8fbff;
            color: var(--text-dark);
            font-size: clamp(0.95rem, 2.5vw, 1.05rem);
            padding: 1rem 1.25rem;
            font-weight: 600;
            text-align: left;
            border: none;
            border-bottom: 2px solid transparent;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }
        
        .service-mobile-block .service-btn > span {
            display: flex;
            align-items: center;
            flex: 1;
        }
        
        .service-mobile-block .service-btn.active,
        .service-mobile-block .service-btn:focus,
        .service-mobile-block .service-btn:hover {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            color: #fff !important;
            font-weight: 700;
            box-shadow: none;
            border-bottom-color: transparent;
        }
        
        .service-mobile-block .service-btn .circle-icon {
            width: 40px;
            height: 40px;
            font-size: 1.2rem;
            background: #ffffff;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
        }
        
        .service-mobile-block .service-btn.active .circle-icon {
            background: rgba(255, 255, 255, 0.25) !important;
            transform: scale(1.1);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }
        
        /* Active state icon styling */
        .service-mobile-block .service-btn.active .circle-icon i,
        .service-mobile-block .service-btn.active[data-target="#mobile-s-uiux"] .circle-icon i,
        .service-mobile-block .service-btn.active[data-target="#mobile-s-hire"] .circle-icon i {
            color: #ffffff !important;
        }
        
        /* Hover state for non-active buttons */
        .service-mobile-block .service-btn:hover:not(.active) .circle-icon {
            background: rgba(23, 96, 187, 0.1);
            transform: scale(1.05);
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        }
        
        /* Ensure icon colors are visible on active state */
        .service-mobile-block .service-btn.active .circle-icon i[style*="color"] {
            color: #ffffff !important;
        }
        
        /* Service Content Card */
        .service-mobile-content {
            border-radius: 0 0 16px 16px;
            margin-top: 0;
            padding: 0;
            animation: fadeInDown 0.3s ease-out;
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .service-mobile-content .card {
            border: none !important;
            border-radius: 0 0 16px 16px !important;
            box-shadow: none !important;
            padding: 1.5rem !important;
            background: #ffffff;
        }
        
        .service-mobile-content .card h4 {
            font-size: clamp(1.15rem, 3vw, 1.35rem) !important;
            font-weight: 700 !important;
            color: var(--text-dark) !important;
            margin-bottom: 1rem !important;
            line-height: 1.4;
        }
        
        .service-mobile-content .card p {
            font-size: clamp(0.95rem, 2.5vw, 1rem) !important;
            color: var(--text-light) !important;
            line-height: 1.7;
            margin-bottom: 1.25rem !important;
        }
        
        .service-mobile-content .card ul {
            padding-left: 1.25rem !important;
        }
        
        .service-mobile-content .card ul li {
            font-size: clamp(0.9rem, 2.5vw, 0.95rem) !important;
            color: var(--text-light) !important;
            line-height: 1.8;
            margin-bottom: 0.5rem;
        }
        
        .service-mobile-content .card ul li:last-child {
            margin-bottom: 0;
        }
        
        .service-mobile-block:not(:last-child) {
            margin-bottom: 1.5rem;
        }
        
        /* Add arrow icon for better UX */
        .service-mobile-block .service-btn::after {
            content: 'â–¼';
            font-size: 0.7rem;
            transition: transform 0.3s ease;
            margin-left: 0.75rem;
            flex-shrink: 0;
            opacity: 0.6;
        }
        
        .service-mobile-block .service-btn.active::after {
            transform: rotate(180deg);
            opacity: 1;
        }
        
        .service-mobile-block .service-btn:hover::after {
            opacity: 1;
        }
    }

/* ============================================
   CSS Block
   ============================================ */
/* Industries Section - Modern Professional Design */
    .industries-serve-section {
        width: 100%;
        background: linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%);
        border-radius: 24px;
        margin: 4rem auto;
        max-width: 1200px;
        box-shadow: var(--shadow-sm);
        padding: 3rem 2rem;
        position: relative;
        border: 1px solid rgba(23, 96, 187, 0.08);
    }
    @media (max-width: 991.98px) {
        .industries-serve-section {
            border-radius: 18px;
            margin: 2rem 0 2.5rem 0;
        }
    }
    @media (max-width: 767.98px) {
        .industries-serve-section {
            border-radius: 0;
            margin: 1.5rem 0 2rem 0;
            box-shadow: none;
        }
    }
    .industries-serve-title {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
        font-weight: 800;
        color: var(--text-dark);
        letter-spacing: -0.02em;
        margin-bottom: 2rem;
    }
    @media (max-width: 991.98px) {
        .industries-serve-title {
            font-size: 1.6rem;
        }
    }
    @media (max-width: 575.98px) {
        .industries-serve-title {
            font-size: 1.25rem;
            margin-bottom: 1.2rem !important;
        }
    }
    /* Responsive Grid */
    .industries-serve-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 0;
        border-radius: 1.5rem;
        overflow: hidden;
        box-shadow: 0 2px 24px #2563eb05;
        min-height: 22rem;
        border: 1.5px solid #e3eefe;
    }
    @media (max-width: 991.98px) {
        .industries-serve-grid {
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: repeat(3, 1fr);
        }
    }
    @media (max-width: 575.98px) {
        .industries-serve-grid {
            grid-template-columns: 1fr;
            grid-template-rows: repeat(6, 1fr);
            min-height: unset;
        }
    }
    .industries-card {
        min-height: 225px;
        padding: 2.5rem 1.2rem;
        transition:
            box-shadow 0.21s cubic-bezier(0.56, 0.01, 0.51, 1),
            transform 0.21s cubic-bezier(0.56, 0.01, 0.51, 1);
        cursor: pointer;
        z-index: 1;
        border-radius: 0;
        position: relative;
        background: rgba(255, 255, 255, 0.97);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    @media (max-width: 1199.98px) {
        .industries-card {
            min-height: 170px;
            padding: 1.6rem 0.4rem;
        }
    }
    @media (max-width: 767.98px) {
        .industries-card {
            min-height: 128px;
            padding: 1.25rem 0.5rem !important;
        }
    }
    @media (max-width: 375.98px) {
        .industries-card {
            min-height: 110px;
            padding: 1rem 0.3rem !important;
        }
    }
    /* Hover effect only enabled for pointer devices */
    @media (hover: hover) and (pointer: fine) {
        .industries-card:hover,
        .industries-card:focus {
            box-shadow: var(--shadow-lg);
            transform: translateY(-6px);
            z-index: 2;
            background: #f8fbff;
            border-color: rgba(23, 96, 187, 0.2);
        }
    }
    .industries-icon {
        border-radius: 16px;
        background: linear-gradient(135deg, rgba(23, 96, 187, 0.1) 0%, rgba(23, 96, 187, 0.05) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        height: 70px;
        width: 70px;
        box-shadow: var(--shadow-sm);
        transition: var(--transition);
    }
    .industries-card:hover .industries-icon {
        transform: scale(1.1) rotate(5deg);
        box-shadow: var(--shadow-md);
    }
    @media (max-width: 991.98px) {
        .industries-icon {
            height: 54px;
            width: 54px;
        }
        .industries-icon svg {
            width: 34px;
            height: 34px;
        }
    }
    @media (max-width: 575.98px) {
        .industries-icon {
            height: 42px;
            width: 42px;
        }
        .industries-icon svg {
            width: 23px;
            height: 23px;
        }
    }
    .industries-title {
        font-size: clamp(1rem, 2vw, 1.2rem);
        font-weight: 700;
        letter-spacing: -0.01em;
        color: var(--text-dark);
        margin-bottom: 0.75rem;
    }
    .industries-desc {
        font-size: clamp(0.9rem, 1.5vw, 1rem);
        color: var(--text-light);
        line-height: 1.6;
        max-width: 280px;
        margin: 0 auto;
    }
    @media (max-width: 991.98px) {
        .industries-desc {
            font-size: 0.89rem;
            max-width: 350px;
        }
    }
    @media (max-width: 575.98px) {
        .industries-desc {
            font-size: 0.8rem;
            max-width: 350px;
        }
    }
    /* Responsive Dividers for grid cards */
    /* Large screens: 3x2 grid */
    .industries-serve-grid > .industries-card:nth-child(-n + 3) {
        border-bottom: 1px solid #e5e9ef;
    }
    .industries-serve-grid > .industries-card:nth-child(1),
    .industries-serve-grid > .industries-card:nth-child(4) {
        border-right: 1px solid #e5e9ef;
    }
    .industries-serve-grid > .industries-card:nth-child(2),
    .industries-serve-grid > .industries-card:nth-child(5) {
        border-right: 1px solid #e5e9ef;
    }
    /* Medium screens: 2x3 grid */
    @media (max-width: 991.98px) {
        .industries-serve-grid > .industries-card {
            border-right: none;
            border-bottom: none;
        }
        .industries-serve-grid > .industries-card:nth-child(odd) {
            border-right: 1px solid #e5e9ef;
        }
        .industries-serve-grid > .industries-card:nth-child(-n + 2),
        .industries-serve-grid > .industries-card:nth-child(3),
        .industries-serve-grid > .industries-card:nth-child(5) {
            border-bottom: 1px solid #e5e9ef;
        }
    }
    /* Small screens: single column */
    @media (max-width: 575.98px) {
        .industries-serve-grid > .industries-card {
            border-right: none !important;
            border-bottom: 1px solid #e5e9ef !important;
        }
        .industries-serve-grid > .industries-card:last-child {
            border-bottom: none !important;
        }
    }

/* ============================================
   CSS Block
   ============================================ */
/* Premium CTA Section - Professional Clean & Smooth Design */
.premium-cta-section {
    width: 100%;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 50%, #f0f4ff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.premium-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(23, 96, 187, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(37, 211, 102, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.premium-form-wrapper {
    position: relative;
    z-index: 1;
}

.premium-form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 3.5rem 2.5rem;
    box-shadow: 
        0 20px 60px rgba(23, 96, 187, 0.08),
        0 8px 24px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-form-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(23, 96, 187, 0.05) 0%, transparent 70%);
    animation: rotateGradient 20s linear infinite;
    pointer-events: none;
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.premium-form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.premium-form-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #1760bb 0%, #1966ed 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #ffffff;
    box-shadow: 
        0 12px 32px rgba(23, 96, 187, 0.25),
        0 4px 12px rgba(23, 96, 187, 0.15);
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.premium-form-card:hover .premium-form-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 16px 40px rgba(23, 96, 187, 0.3),
        0 6px 16px rgba(23, 96, 187, 0.2);
}

.premium-form-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #1a1f3a;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
}

.premium-form-subtitle {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
}

.premium-form {
    position: relative;
    z-index: 2;
}

.premium-form-group {
    margin-bottom: 1.5rem;
}

.premium-form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.premium-form-label i {
    color: #1760bb;
    font-size: 1rem;
}

.premium-form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: #1e293b;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.premium-form-input::placeholder {
    color: #94a3b8;
}

.premium-form-input:focus {
    border-color: #1760bb;
    background: #ffffff;
    box-shadow: 
        0 0 0 4px rgba(23, 96, 187, 0.1),
        0 4px 16px rgba(23, 96, 187, 0.1);
    transform: translateY(-2px);
}

.premium-form-btn {
    width: 100%;
    padding: 1.15rem 2rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #1760bb 0%, #1966ed 100%);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 
        0 8px 24px rgba(23, 96, 187, 0.3),
        0 4px 12px rgba(23, 96, 187, 0.2);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    margin-top: 0.5rem;
}

.premium-form-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.premium-form-btn:hover::before {
    width: 400px;
    height: 400px;
}

.premium-form-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 32px rgba(23, 96, 187, 0.4),
        0 6px 16px rgba(23, 96, 187, 0.3);
    background: linear-gradient(135deg, #1966ed 0%, #1760bb 100%);
}

.premium-form-btn:active {
    transform: translateY(-1px);
}

.premium-form-btn i {
    transition: transform 0.3s ease;
}

.premium-form-btn:hover i {
    transform: translateX(4px);
}

/* Premium Clientele Section */
.premium-clientele-wrapper {
    position: relative;
    z-index: 1;
}

.premium-clientele-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.premium-clientele-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: #1a1f3a;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.premium-clientele-subtitle {
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    color: #64748b;
    margin: 0;
}

.premium-clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.25rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 24px;
    box-shadow: 
        0 16px 48px rgba(23, 96, 187, 0.06),
        0 4px 16px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.premium-client-item {
    position: relative;
}

.premium-client-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.04),
        0 2px 8px rgba(0, 0, 0, 0.02);
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.premium-client-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(23, 96, 187, 0.02) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.premium-client-card:hover::before {
    opacity: 1;
}

.premium-client-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 
        0 12px 32px rgba(23, 96, 187, 0.12),
        0 4px 16px rgba(23, 96, 187, 0.08);
    border-color: rgba(23, 96, 187, 0.2);
}

.premium-client-logo {
    max-width: 100%;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-client-card:hover .premium-client-logo {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .premium-cta-section {
        padding: 60px 0;
    }
    
    .premium-form-card {
        padding: 2.5rem 2rem;
        margin-bottom: 2rem;
    }
    
    .premium-clients-grid {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .premium-client-card {
        padding: 1.25rem;
        min-height: 90px;
    }
}

@media (max-width: 767.98px) {
    .premium-cta-section {
        padding: 40px 0;
    }
    
    .premium-form-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .premium-form-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        border-radius: 20px;
    }
    
    .premium-clients-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        padding: 1.25rem;
        gap: 0.875rem;
        border-radius: 20px;
    }
    
    .premium-client-card {
        padding: 1rem;
        min-height: 80px;
        border-radius: 12px;
    }
    
    .premium-client-logo {
        max-height: 40px;
    }
}

@media (max-width: 575.98px) {
    .premium-clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
    .it-form-card {
        background: #f8faff;
        border-radius: 20px;
        box-shadow: 0 8px 40px 0 rgba(134, 148, 255, 0.12);
        padding: 38px 34px 32px 34px;
        min-width: 340px;
        max-width: 388px;
        position: relative;
        overflow: hidden;
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .it-form-bg-svg {
        position: absolute;
        top: -20px;
        left: -40px;
        z-index: 0;
        opacity: 0.5;
    }
    .it-form-title {
        font-size: 1.55rem;
        font-weight: 700;
        color: #2b3377;
        margin-bottom: 0.8rem;
        letter-spacing: -0.6px;
        position: relative;
        z-index: 2;
        text-align: center;
    }
    .it-form-subtext {
        color: #585b75;
        font-size: 1.08rem;
        font-weight: 400;
        margin-bottom: 1.7rem;
        text-align: center;
        position: relative;
        z-index: 2;
    }
    .it-form-highlight {
        color: #5e48fa;
        font-weight: 600;
    }
    .it-form-expert {
        display: block;
        color: #3c4ac7;
        font-size: 0.99rem;
        margin-top: 0.1rem;
        letter-spacing: 0.01em;
    }
    .it-form input[type="text"] {
        background: #fafdff;
        border: 1.1px solid #e0e5ec;
        border-radius: 11px;
        padding: 13px 16px;
        font-size: 1.01rem;
        color: #273662;
        outline: none;
        transition:
            border 0.16s,
            box-shadow 0.15s;
        font-family: inherit;
    }
    .it-form input[type="text"]:focus {
        border-color: #9087ff;
        box-shadow: 0 0 0 2px #aba6fa30;
    }
    .it-form-btn,
    .it-form-btn.btn-primary {
        padding: 16px 0;
        border: none;
        border-radius: 13px;
        background: linear-gradient(99deg, #514cff 0%, #836df6 80%);
        color: #fff;
        font-size: 1.13rem;
        font-weight: 600;
        letter-spacing: 0.03em;
        cursor: pointer;
        box-shadow: 0 6px 28px 0 rgba(111, 109, 244, 0.18);
        transition:
            background 0.17s,
            box-shadow 0.17s;
    }
    .it-form-btn:hover,
    .it-form-btn.btn-primary:hover {
        background: linear-gradient(99deg, #342adc 0%, #7851ff 100%);
        box-shadow: 0 10px 38px 0 rgba(118, 127, 255, 0.23);
    }
    .it-clientele-bg {
        background: #f7f8fb;
        border-radius: 23px;
        box-shadow:
            0 7px 28px 0 rgba(80, 86, 255, 0.06),
            0 2px 12px 0 rgba(90, 90, 200, 0.03);
        padding: 49px 40px 44px 40px;
        min-width: 100%;
        max-width: 410px;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        z-index: 1;
        border: 1.4px solid #eceffa;
    }
    .it-clientele-heading {
        font-size: 1.22rem;
        font-weight: 600;
        letter-spacing: -0.022em;
        color: #11205d;
        margin-bottom: 32px;
        text-align: center;
        font-family: inherit;
        position: relative;
        z-index: 2;
    }
    .it-client-logos-grid {
        width: 100%;
    }
    .it-client-logo {
        background: #fff;
        border-radius: 13px;
        box-shadow: 0 1.5px 11px 0 rgba(90, 120, 254, 0.07);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 15px;
        min-height: 50px;
        min-width: 68px;
        border: 1px solid #f2f2fb;
        transition:
            box-shadow 0.19s,
            border-color 0.18s;
        position: relative;
        width: 100%;
        height: 100%;
    }
    .it-client-logo img {
        max-width: 62px;
        max-height: 34px;
        filter: grayscale(80%);
        opacity: 0.9;
        transition:
            filter 0.19s,
            opacity 0.19s;
        object-fit: contain;
    }
    .it-client-logo:hover img {
        filter: grayscale(10%);
        opacity: 1;
    }
    @media (max-width: 1100px) {
        .it-form-card,
        .it-clientele-bg {
            max-width: 97vw;
            min-width: 0;
        }
    }
    @media (max-width: 700px) {
        .it-home-cta-section {
            padding: 30px 0 24px 0;
        }
        .it-form-card,
        .it-clientele-bg {
            padding: 24px 4vw 21px 4vw;
            border-radius: 16px;
        }
        .it-form-title,
        .it-clientele-heading {
            font-size: 1.06rem;
        }
        .it-form-card {
            min-width: 0;
        }
    }
    @media (max-width: 500px) {
        .it-home-cta-section {
            padding: 12px 0 12px 0;
        }
        .it-form-card,
        .it-clientele-bg {
            padding: 12px 2vw 14px 2vw;
            border-radius: 11px;
        }
        .it-form-title,
        .it-clientele-heading {
            font-size: 0.98rem;
        }
        .it-form input[type="text"] {
            padding: 11px 12px;
            font-size: 0.93rem;
        }
        .it-form-btn {
            font-size: 1.01rem;
            padding: 12px 0;
        }
    }
    @media (max-width: 420px) {
        .it-form-bg-svg {
            display: none;
        }
    }

/* ============================================
   CSS Block
   ============================================ */
/* Blog Section - Modern Professional Design */
/* Premium Blog Section - Professional Clean & Smooth Design */
.premium-blog-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.premium-blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(23, 96, 187, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(37, 211, 102, 0.015) 0%, transparent 50%);
    pointer-events: none;
}

.premium-blog-header {
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 1;
}

.premium-blog-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #1a1f3a;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}
.premium-blog-subtitle {
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

.premium-blog-grid {
    position: relative;
    z-index: 1;
}

.premium-blog-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 
        0 10px 40px rgba(23, 96, 187, 0.08),
        0 4px 16px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.premium-blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(23, 96, 187, 0.02) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.premium-blog-card:hover::before {
    opacity: 1;
}

.premium-blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 20px 60px rgba(23, 96, 187, 0.15),
        0 8px 24px rgba(23, 96, 187, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    border-color: rgba(23, 96, 187, 0.2);
}

.premium-blog-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: linear-gradient(135deg, #e2e8f0 0%, #f1f5f9 100%);
}

.premium-blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.premium-blog-card:hover .premium-blog-image {
    transform: scale(1.1);
    filter: brightness(1.05) saturate(1.1);
}

.premium-blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.premium-blog-card:hover .premium-blog-overlay {
    opacity: 1;
}

.premium-blog-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.premium-blog-badge i {
    font-size: 0.9rem;
}

.premium-badge-ai {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.premium-badge-cloud {
    background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
}

.premium-badge-dev {
    background: linear-gradient(135deg, #a855f7 0%, #6366f1 100%);
}

.premium-blog-card:hover .premium-blog-badge {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.premium-blog-content {
    padding: 2rem 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.premium-blog-heading {
    font-size: clamp(1.15rem, 1.5vw, 1.35rem);
    font-weight: 700;
    color: #1a1f3a;
    margin-bottom: 1rem;
    line-height: 1.4;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.premium-blog-card:hover .premium-blog-heading {
    color: #1760bb;
}

.premium-blog-excerpt {
    color: #64748b;
    font-size: clamp(0.9rem, 1vw, 1rem);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.premium-blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

.premium-blog-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.premium-author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.premium-blog-card:hover .premium-author-avatar {
    border-color: #1760bb;
    transform: scale(1.1);
}

.premium-author-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.premium-author-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
}

.premium-blog-date {
    font-size: 0.8rem;
    color: #94a3b8;
}

.premium-blog-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1760bb;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.premium-blog-link i {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.premium-blog-link:hover {
    color: #1966ed;
    gap: 0.75rem;
}

.premium-blog-link:hover i {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .premium-blog-section {
        padding: 60px 0;
    }
    
    .premium-blog-header {
        margin-bottom: 2.5rem;
    }
    
    .premium-blog-content {
        padding: 1.5rem 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .premium-blog-section {
        padding: 40px 0;
    }
    
    .premium-blog-card {
        border-radius: 20px;
    }
    
    .premium-blog-content {
        padding: 1.25rem 1.25rem;
    }
    
    .premium-blog-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .premium-blog-link {
        width: 100%;
        justify-content: center;
    }
}

.it-blog-meta {
    display: flex;
    align-items: center;
    gap: 0.46rem;
    font-size: 0.93rem;
    color: #777ea8;
}

.it-blog-author-img {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 10px #a1a5e01a;
    margin-right: 0.15rem;
    border: 1.5px solid #edf1fd;
    background: #f3f6ff;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .it-blog-section {
        border-radius: 1.1rem;
        margin: 2.7rem auto;
        padding-left: 0;
        padding-right: 0;
    }
    .it-blog-body {
        padding: 1.05rem 1rem 0.82rem 1rem;
    }
    .it-blog-main-heading {
        font-size: 1.55rem;
    }
}

@media (max-width: 767.98px) {
    .it-blog-main-heading {
        font-size: 1.26rem;
    }
    .it-blog-card {
        border-radius: 1rem;
    }
    .it-blog-img-wrap,
    .it-blog-feature-img {
        border-radius: 1rem 1rem 0 0;
    }
    .it-blog-section {
        margin: 1.7rem auto;
    }
}

@media (max-width: 575.98px) {
    .it-blog-section {
        padding: 2.5rem 0rem 1.7rem 0rem;
        border-radius: 0.7rem;
    }
    .it-blog-body {
        padding: 0.81rem 0.8rem 0.68rem 0.81rem;
    }
    .it-blog-main-heading {
        font-size: 1.05rem;
    }
    .it-blog-subheading {
        font-size: 0.97rem;
    }
    .it-blog-grid .col-sm-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ============================================
   CSS OPTIMIZATION COMPLETE
   - Fixed focus outline issues (removed unwanted borders on click)
   - Added focus-visible for keyboard navigation accessibility
   - Optimized animations and transitions
   - Professional, clean & smooth design maintained
   ============================================ */

/* ============================================
   Smooth Tab Transitions - Professional & Clean
   ============================================ */
#services-tabContent {
    position: relative;
}
/* Bootstrap default - hide all tab panes */
#services-tabContent .tab-pane {
    display: none;
    transition: opacity 0.35s ease-in-out, transform 0.35s ease-in-out;
    will-change: opacity, transform;
}
/* Show active tab pane - Bootstrap uses .active class */
#services-tabContent .tab-pane.active {
    display: block !important;
}
/* Fade animation for inactive tabs */
#services-tabContent .tab-pane:not(.active) {
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
}
/* Fade animation for active tab */
#services-tabContent .tab-pane.active.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.services-list .service-btn {
    transition: all 0.25s ease-in-out;
    cursor: pointer;
}

