
    /* Design Engineering Section Styles */
    .design-engineering-new {
        padding: 20px 0;
        position: relative;
        overflow: hidden;
    }

    .design-engineering-new::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: rgba(0, 123, 255, 0.08);
        border-radius: 50%;
        z-index: 0;
    }

    .design-engineering-new::after {
        content: '';
        position: absolute;
        bottom: -100px;
        left: -100px;
        width: 400px;
        height: 400px;
        background: rgba(0, 123, 255, 0.06);
        border-radius: 50%;
        z-index: 0;
    }

    .design-engineering-new .container {
        position: relative;
        z-index: 1;
    }

    .mb-80 {
        margin-bottom: 80px;
    }

    .mb-60 {
        margin-bottom: 60px;
    }

    .mb-50 {
        margin-bottom: 50px;
    }

    .mb-40 {
        margin-bottom: 40px;
    }

    .g-4 {
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 1.5rem;
    }

    .text-center {
        text-align: center;
    }

    /* Hero Section */
    .hero-section {
        animation: slideInUp 0.8s ease;
    }

    .hero-badge {
        display: inline-block;
        background: linear-gradient(135deg, #007bff, #0056b3);
        color: #fff;
        padding: 10px 25px;
        border-radius: 50px;
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-bottom: 20px;
    }

    .hero-content {
        padding: 20px;
    }

    .hero-title {
        font-size: 48px;
        font-weight: 800;
        color: #000;
        line-height: 1.2;
        margin: 20px 0;
    }

    .hero-subtitle {
        font-size: 16px;
        color: #666;
        line-height: 1.8;
        margin-bottom: 30px;
    }

    .hero-features {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .feature-item {
        display: flex;
        align-items: center;
        gap: 15px;
        font-size: 15px;
        color: #555;
    }

    .feature-item i {
        font-size: 20px;
        color: #007bff;
    }

    /* Hero Image */
    .hero-image {
        padding: 20px;
    }

    .image-wrapper {
        position: relative;
        height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .floating-box {
        position: absolute;
        width: 120px;
        height: 120px;
        background: #fff;
        border-radius: 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        transition: all 0.4s ease;
        animation: float 3s ease-in-out infinite;
    }

    .floating-box:hover {
        transform: scale(1.1);
        box-shadow: 0 20px 60px rgba(0, 123, 255, 0.2);
    }

    .floating-box i {
        font-size: 40px;
        color: #007bff;
        margin-bottom: 10px;
    }

    .floating-box p {
        font-size: 14px;
        font-weight: 600;
        color: #333;
        margin: 0;
    }

    .box-1 {
        top: 0;
        left: 50%;
        animation-delay: 0s;
    }

    .box-2 {
        bottom: 20px;
        left: 10%;
        animation-delay: 1s;
    }

    .box-3 {
        bottom: 30px;
        right: 10%;
        animation-delay: 2s;
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-20px);
        }
    }

    /* Tools Section */
    .tools-section {
        background: #fff;
        padding: 60px;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    }

    .tool-card {
        background: linear-gradient(135deg, #f8f6f1, #faf8f3);
        padding: 40px;
        border-radius: 15px;
        text-align: center;
        transition: all 0.4s ease;
        border: 2px solid transparent;
    }

    .tool-card:hover {
        transform: translateY(-10px);
        border-color: #007bff;
        box-shadow: 0 20px 50px rgba(0, 123, 255, 0.15);
    }

    .tool-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #007bff, #0056b3);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 36px;
        color: #fff;
        margin: 0 auto 20px;
        transition: all 0.4s ease;
    }

    .tool-card:hover .tool-icon {
        transform: scale(1.15) rotateZ(-15deg);
    }

    .tool-card h4 {
        font-size: 22px;
        font-weight: 700;
        color: #000;
        margin-bottom: 15px;
    }

    .tool-card p {
        font-size: 14px;
        color: #666;
        line-height: 1.7;
    }

    /* Tools Premium Section New */
    .tools-premium-section {
        padding: 100px 0;
        position: relative;
    }

    .tools-single-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
        margin-top: 80px;
    }

    .premium-tool-card-new {
        background: linear-gradient(135deg, #fff 0%, #f9fbff 100%);
        padding: 65px 55px;
        border-radius: 22px;
        border: 1.5px solid rgba(0, 123, 255, 0.1);
        box-shadow: 0 15px 60px rgba(0, 0, 0, 0.08);
        position: relative;
        overflow: hidden;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .premium-tool-card-new::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 8px;
        background: linear-gradient(90deg, #007bff, #0056b3);
        z-index: 2;
    }

    .tool-top-accent {
        position: absolute;
        top: -50px;
        right: -50px;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgba(0, 123, 255, 0.08), transparent);
        border-radius: 50%;
        z-index: 0;
    }

    .tool-accent-2 {
        background: radial-gradient(circle, rgba(0, 123, 255, 0.06), transparent);
    }

    .tool-badge-label {
        display: inline-block;
        background: linear-gradient(135deg, #007bff, #0056b3);
        color: #fff;
        padding: 10px 24px;
        border-radius: 10px;
        font-size: 11px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 1.2px;
        margin-bottom: 30px;
        position: relative;
        z-index: 1;
        box-shadow: 0 8px 20px rgba(0, 123, 255, 0.25);
    }

    .tool-badge-2 {
        background: linear-gradient(135deg, #28a745, #1e7e34);
        box-shadow: 0 8px 20px rgba(40, 167, 69, 0.25);
    }

    .tool-icon-container {
        width: 110px;
        height: 110px;
        background: linear-gradient(135deg, #007bff, #0056b3);
        border-radius: 22px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 55px;
        color: #fff;
        margin: 0 auto 32px;
        position: relative;
        z-index: 1;
        box-shadow: 0 15px 45px rgba(0, 123, 255, 0.3);
        transition: all 0.4s ease;
    }

    .tool-badge-2:not(.tool-badge-label)+.tool-icon-container {
        background: linear-gradient(135deg, #28a745, #1e7e34);
        box-shadow: 0 15px 45px rgba(40, 167, 69, 0.3);
    }

    .premium-tool-card-new:nth-child(2) .tool-icon-container {
        background: linear-gradient(135deg, #28a745, #1e7e34);
        box-shadow: 0 15px 45px rgba(40, 167, 69, 0.3);
    }

    .premium-tool-card-new h3 {
        font-size: 28px;
        font-weight: 900;
        color: #000;
        margin-bottom: 16px;
        position: relative;
        z-index: 1;
        letter-spacing: -0.5px;
    }

    .tool-description {
        font-size: 15px;
        color: #666;
        line-height: 1.7;
        margin-bottom: 35px;
        position: relative;
        z-index: 1;
    }

    .tool-features-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 18px;
        position: relative;
        z-index: 1;
    }

    .tool-features-list li {
        font-size: 15px;
        color: #555;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        font-weight: 600;
    }

    .tool-features-list i {
        font-size: 18px;
        color: #007bff;
        flex-shrink: 0;
    }

    .premium-tool-card-new:nth-child(2) .tool-features-list i {
        color: #28a745;
    }

    /* Section Title */
    .section-title {
        font-size: 42px;
        font-weight: 800;
        color: #000;
        line-height: 1.2;
    }

    /* Capabilities Premium Section */
    .capabilities-section-premium {
        padding: 0px 0;
        position: relative;
    }

    .capabilities-grid-premium {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 32px;
        margin-top: 60px;
    }

    /* Premium Capability Item */
    .capability-item-premium {
        background: linear-gradient(135deg, #fff 0%, #f9fbff 100%);
        border: 2px solid rgba(0, 123, 255, 0.08);
        border-radius: 24px;
        padding: 45px 36px;
        position: relative;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        text-align: center;
        animation: slideInUp 0.6s ease forwards;
        opacity: 0;
        animation-delay: var(--delay);
    }

    .capability-item-premium:hover {
        transform: translateY(-15px);
        box-shadow: 0 28px 70px rgba(0, 0, 0, 0.15);
        border-color: rgba(0, 123, 255, 0.15);
    }

    /* Top Accent Line */
    .capability-top-accent {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, #007bff, #0056b3);
    }

    /* Color Variations (cycling through 4 colors) */
    .capability-item-1 .capability-top-accent,
    .capability-item-5 .capability-top-accent,
    .capability-item-9 .capability-top-accent {
        background: linear-gradient(90deg, #007bff, #0056b3);
    }

    .capability-item-2 .capability-top-accent,
    .capability-item-6 .capability-top-accent,
    .capability-item-10 .capability-top-accent {
        background: linear-gradient(90deg, #ff8c42, #ff6b1a);
    }

    .capability-item-3 .capability-top-accent,
    .capability-item-7 .capability-top-accent,
    .capability-item-11 .capability-top-accent {
        background: linear-gradient(90deg, #28a745, #1e7e34);
    }

    .capability-item-4 .capability-top-accent,
    .capability-item-8 .capability-top-accent,
    .capability-item-12 .capability-top-accent {
        background: linear-gradient(90deg, #9c27b0, #6a1b9a);
    }

    /* Icon Box */
    .capability-icon-box {
        width: 90px;
        height: 90px;
        background: linear-gradient(135deg, #007bff, #0056b3);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 42px;
        color: #fff;
        margin: 0 auto 24px;
        box-shadow: 0 12px 35px rgba(0, 123, 255, 0.25);
        position: relative;
        z-index: 2;
        transition: all 0.4s ease;
    }

    .icon-2,
    .icon-6,
    .icon-10 {
        background: linear-gradient(135deg, #ff8c42, #ff6b1a);
        box-shadow: 0 12px 35px rgba(255, 107, 26, 0.25);
    }

    .icon-3,
    .icon-7,
    .icon-11 {
        background: linear-gradient(135deg, #28a745, #1e7e34);
        box-shadow: 0 12px 35px rgba(40, 167, 69, 0.25);
    }

    .icon-4,
    .icon-8,
    .icon-12 {
        background: linear-gradient(135deg, #9c27b0, #6a1b9a);
        box-shadow: 0 12px 35px rgba(156, 39, 176, 0.25);
    }

    .capability-item-premium:hover .capability-icon-box {
        transform: scale(1.15);
    }

    /* Title */
    .capability-title {
        font-size: 21px;
        font-weight: 900;
        color: #000;
        margin: 0 0 14px 0;
        position: relative;
        z-index: 2;
        letter-spacing: -0.5px;
    }

    /* Description */
    .capability-description {
        font-size: 14.5px;
        color: #777;
        line-height: 1.7;
        margin: 0;
        position: relative;
        z-index: 2;
    }

    /* Approach Section Premium */
    .approach-section-premium {
        padding: 40px 0;
        position: relative;
    }

    .approach-content {
        animation: slideInUp 0.8s ease;
    }

    .approach-subtitle {
        font-size: 16px;
        color: #777;
        line-height: 1.8;
        max-width: 750px;
        margin-left: auto;
        margin-right: auto;
    }

    .approach-grid-premium {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
        gap: 25px;
        margin-top: 60px;
    }

    /* Premium Approach Item */
    .approach-item-premium {
        background: linear-gradient(135deg, #fff 0%, #f9fbff 100%);
        border: 2px solid rgba(0, 123, 255, 0.08);
        border-radius: 24px;
        padding: 20px 20px;
        position: relative;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        text-align: center;
        animation: slideInUp 0.6s ease forwards;
    }

    .approach-item-premium:nth-child(2) {
        animation-delay: 0.1s;
    }

    .approach-item-premium:nth-child(3) {
        animation-delay: 0.2s;
    }

    .approach-item-premium:nth-child(4) {
        animation-delay: 0.3s;
    }

    .approach-item-premium:hover {
        transform: translateY(-15px);
        box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
        border-color: rgba(0, 123, 255, 0.2);
    }

    /* Top Accent Line */
    .approach-top-accent {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, #007bff, #0056b3);
    }

    .accent-2 {
        background: linear-gradient(90deg, #ff8c42, #ff6b1a);
    }

    .accent-3 {
        background: linear-gradient(90deg, #28a745, #1e7e34);
    }

    .accent-4 {
        background: linear-gradient(90deg, #9c27b0, #6a1b9a);
    }

    /* Badge Number */
    .approach-badge-number {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, #007bff, #0056b3);
        color: #fff;
        font-size: 32px;
        font-weight: 900;
        border-radius: 20px;
        margin-bottom: 24px;
        box-shadow: 0 15px 40px rgba(0, 123, 255, 0.3);
        position: relative;
        z-index: 2;
        letter-spacing: -1px;
    }

    .badge-2 {
        background: linear-gradient(135deg, #ff8c42, #ff6b1a);
        box-shadow: 0 15px 40px rgba(255, 107, 26, 0.3);
    }

    .badge-3 {
        background: linear-gradient(135deg, #28a745, #1e7e34);
        box-shadow: 0 15px 40px rgba(40, 167, 69, 0.3);
    }

    .badge-4 {
        background: linear-gradient(135deg, #9c27b0, #6a1b9a);
        box-shadow: 0 15px 40px rgba(156, 39, 176, 0.3);
    }

    /* Icon Box */
    .approach-icon-box {
        width: 90px;
        height: 90px;
        background: linear-gradient(135deg, #007bff, #0056b3);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 44px;
        color: #fff;
        margin: 0 auto 26px;
        box-shadow: 0 12px 35px rgba(0, 123, 255, 0.25);
        position: relative;
        z-index: 2;
        transition: all 0.4s ease;
    }

    .icon-2 {
        background: linear-gradient(135deg, #ff8c42, #ff6b1a);
        box-shadow: 0 12px 35px rgba(255, 107, 26, 0.25);
    }

    .icon-3 {
        background: linear-gradient(135deg, #28a745, #1e7e34);
        box-shadow: 0 12px 35px rgba(40, 167, 69, 0.25);
    }

    .icon-4 {
        background: linear-gradient(135deg, #9c27b0, #6a1b9a);
        box-shadow: 0 12px 35px rgba(156, 39, 176, 0.25);
    }

    .approach-item-premium:hover .approach-icon-box {
        transform: scale(1.15);
    }

    /* Title */
    .approach-title {
        font-size: 22px;
        font-weight: 900;
        color: #000;
        margin: 0 0 14px 0;
        position: relative;
        z-index: 2;
        letter-spacing: -0.5px;
    }

    /* Description */
    .approach-description {
        font-size: 14.5px;
        color: #777;
        line-height: 1.7;
        margin-bottom: 24px;
        position: relative;
        z-index: 2;
    }

    /* Benefits List */
    .approach-benefits {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
        position: relative;
        z-index: 2;
    }

    .approach-benefits li {
        font-size: 13.5px;
        color: #666;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .approach-benefits i {
        font-size: 14px;
        color: #007bff;
    }

    .approach-item-2 .approach-benefits i {
        color: #ff8c42;
    }

    .approach-item-3 .approach-benefits i {
        color: #28a745;
    }

    .approach-item-4 .approach-benefits i {
        color: #9c27b0;
    }

    /* CTA Section */
    .cta-section {
        background: linear-gradient(135deg, #007bff, #0056b3);
        padding: 60px;
        border-radius: 20px;
        text-align: center;
        color: #fff;
        animation: slideInUp 0.8s ease;
    }

    .cta-content h2 {
        font-size: 36px;
        font-weight: 800;
        margin-bottom: 20px;
    }

    .cta-content p {
        font-size: 16px;
        margin-bottom: 30px;
        opacity: 0.95;
    }

    .cta-button {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #fff;
        color: #007bff;
        padding: 15px 35px;
        border-radius: 50px;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .cta-button:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    }

    /* Animations */
    @keyframes slideInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .fade-in-up {
        animation: slideInUp 0.6s ease forwards;
        opacity: 0;
    }

    .fade-in-left {
        animation: slideInLeft 0.6s ease forwards;
    }

    .fade-in-right {
        animation: slideInRight 0.6s ease forwards;
    }

    .fade-in {
        animation: slideInUp 0.8s ease forwards;
    }

    /* ============================================ */
    /* Hero Section Premium Col-6 Styles */
    /* ============================================ */
    .hero-section-premium {
        padding: 0px 0;
        position: relative;
        margin-bottom: 0px;
        animation: slideInUp 0.8s ease;
    }

    .hero-content-premium {
        padding: 40px 30px 40px 0;
    }

    .hero-badge-premium {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
        color: #fff;
        padding: 12px 28px;
        border-radius: 50px;
        font-size: 12px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 25px;
        box-shadow: 0 10px 30px rgba(0, 123, 255, 0.25);
    }

    .hero-badge-premium i {
        font-size: 14px;
    }

    .hero-title-premium {
        font-size: 56px;
        font-weight: 900;
        color: #000;
        line-height: 1.15;
        margin: 25px 0;
        letter-spacing: -1px;
    }

    .hero-subtitle-premium {
        font-size: 17px;
        color: #666;
        line-height: 1.8;
        margin-bottom: 45px;
        max-width: 470px;
    }

    .hero-features-premium {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .feature-item-premium {
        display: flex;
        gap: 20px;
        align-items: flex-start;
        padding: 22px;
        background: linear-gradient(135deg, #f8f9ff 0%, #f3f6ff 100%);
        border-radius: 16px;
        border-left: 5px solid #007bff;
        transition: all 0.3s ease;
    }

    .feature-item-premium:hover {
        transform: translateX(8px);
        box-shadow: 0 15px 40px rgba(0, 123, 255, 0.12);
    }

    .feature-icon-premium {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #007bff, #0056b3);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        color: #fff;
        flex-shrink: 0;
        box-shadow: 0 10px 25px rgba(0, 123, 255, 0.2);
    }

    .feature-text-premium h4 {
        font-size: 16px;
        font-weight: 700;
        color: #000;
        margin: 0 0 6px 0;
    }

    .feature-text-premium p {
        font-size: 14px;
        color: #777;
        margin: 0;
        line-height: 1.6;
    }

    /* Hero Visual Premium */
    .hero-visual-premium {
        padding: 40px 30px 40px 40px;
        position: relative;
    }

    /* GRID STRUCTURE */
    .hero-cards-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        /* 🔥 2 cards per row */
        gap: 25px;
    }

    /* 3rd card center align */
    .hero-cards-grid .premium-visual-card:nth-child(3) {
        grid-template-columns: 1fr;
        max-width: 100%;
        margin: 0 auto;
        /* 🔥 center */
    }

    /* CARD DESIGN */
    .premium-visual-card {
        background: #fff;
        border-radius: 18px;
        padding: 25px;
        text-align: center;
        position: relative;
        transition: all 0.4s ease;
        overflow: hidden;
    }

    /* Hover Effect */
    .premium-visual-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 60px rgba(0, 123, 255, 0.2);
    }

    /* Top Accent */
    .card-top-accent {
        height: 5px;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }

    /* Colors */
    .accent-blue {
        background: #007bff;
    }

    .accent-orange {
        background: #ff7a18;
    }

    .accent-green {
        background: #28a745;
    }

    /* Badge */
    .card-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 12px;
        color: #fff;
    }

    .badge-blue {
        background: #007bff;
    }

    .badge-orange {
        background: #ff7a18;
    }

    .badge-green {
        background: #28a745;
    }

    /* Icon */
    .card-icon {
        width: 70px;
        height: 70px;
        margin: 20px auto;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        color: #fff;
    }

    .icon-blue {
        background: #007bff;
    }

    .icon-orange {
        background: #ff7a18;
    }

    .icon-green {
        background: #28a745;
    }

    /* Text */
    .card-title {
        font-size: 20px;
        font-weight: 700;
        margin-top: 10px;
    }

    .card-subtitle {
        font-size: 14px;
        color: #777;
    }

    /* 🔥 RESPONSIVE */
    @media (max-width: 768px) {
        .hero-cards-grid {
            grid-template-columns: 1fr;
        }

        .hero-cards-grid .premium-visual-card:nth-child(3) {
            grid-column: span 1;
            max-width: 100%;
        }
    }

    /* Premium Visual Card */
    .premium-visual-card {
        background: linear-gradient(135deg, #fff 0%, #f9fbff 100%);
        border: 2px solid rgba(0, 123, 255, 0.12);
        border-radius: 22px;
        padding: 42px 36px;
        position: relative;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        text-align: center;
        animation: slideInUp 0.6s ease forwards;
    }

    .premium-visual-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
        border-color: rgba(0, 123, 255, 0.2);
    }

    /* Card Top Accent Borders */
    .card-top-accent {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, #007bff, #0056b3);
    }

    .accent-orange {
        background: linear-gradient(90deg, #ff8c42, #ff6b1a);
    }

    .accent-green {
        background: linear-gradient(90deg, #28a745, #1e7e34);
    }

    /* Card Badges */
    .card-badge {
        display: inline-block;
        background: linear-gradient(135deg, #007bff, #0056b3);
        color: #fff;
        padding: 7px 16px;
        border-radius: 10px;
        font-size: 10px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 22px;
        box-shadow: 0 6px 15px rgba(0, 123, 255, 0.2);
        position: relative;
        z-index: 1;
    }

    .badge-orange {
        background: linear-gradient(135deg, #ff8c42, #ff6b1a);
        box-shadow: 0 6px 15px rgba(255, 107, 26, 0.2);
    }

    .badge-green {
        background: linear-gradient(135deg, #28a745, #1e7e34);
        box-shadow: 0 6px 15px rgba(40, 167, 69, 0.2);
    }

    /* Card Icon Wrapper */
    .card-icon-wrapper {
        margin-bottom: 24px;
        position: relative;
        z-index: 1;
    }

    /* Card Icons */
    .card-icon {
        width: 85px;
        height: 85px;
        background: linear-gradient(135deg, #007bff, #0056b3);
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 42px;
        color: #fff;
        margin: 0 auto;
        box-shadow: 0 15px 40px rgba(0, 123, 255, 0.3);
        transition: all 0.4s ease;
    }

    .icon-orange {
        background: linear-gradient(135deg, #ff8c42, #ff6b1a);
        box-shadow: 0 15px 40px rgba(255, 107, 26, 0.3);
    }

    .icon-green {
        background: linear-gradient(135deg, #28a745, #1e7e34);
        box-shadow: 0 15px 40px rgba(40, 167, 69, 0.3);
    }

    .premium-visual-card:hover .card-icon {
        transform: scale(1.15);
    }

    /* Card Title */
    .card-title {
        font-size: 22px;
        font-weight: 0;
        color: #000;
        margin: 0 0 8px 0;
        position: relative;
        z-index: 1;
        letter-spacing: -0.5px;
    }

    /* Card Subtitle */
    .card-subtitle {
        font-size: 14px;
        color: #999;
        margin: 0 0 14px 0;
        font-weight: 600;
        letter-spacing: 0.5px;
        position: relative;
        z-index: 1;
    }

    /* Card Description */
    .card-description {
        font-size: 13.5px;
        color: #777;
        margin: 0;
        line-height: 1.6;
        position: relative;
        z-index: 1;
    }

    /* ============================================ */
    /* Tools Section Premium Col-6 Styles */
    /* ============================================ */
    .tools-section-premium {
        padding: 0px 0;
        margin-bottom: 50px;
        position: relative;
    }

    .section-badge-premium {
        display: inline-block;
        background: linear-gradient(135deg, #007bff, #0056b3);
        color: #fff;
        padding: 10px 24px;
        border-radius: 50px;
        font-size: 11px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 18px;
        box-shadow: 0 8px 20px rgba(0, 123, 255, 0.2);
    }

    .section-header-premium {
        margin-bottom: 70px;
    }

    .section-title-premium {
        font-size: 52px;
        font-weight: 900;
        color: #000;
        line-height: 1.2;
        margin: 15px 0 20px 0;
        letter-spacing: -1px;
    }

    .section-subtitle-premium {
        font-size: 16px;
        color: #777;
        line-height: 1.7;
        max-width: 620px;
        margin: 0 auto;
    }

    /* Premium Tool Card Col-6 */
    .tools-row-equal-height {
        display: flex;
        align-items: stretch;
    }

    .tools-row-equal-height .col-lg-6 {
        display: flex;
    }

    .tool-card-equal {
        display: flex;
        flex-direction: column;
        width: 100%;
        background: linear-gradient(135deg, #fff 0%, #f9fbff 100%);
        border: 2px solid rgba(0, 123, 255, 0.1);
        border-radius: 24px;
        padding: 42px 38px;
        position: relative;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        animation: slideInUp 0.6s ease forwards;
    }

    .premium-tool-card-col6 {
        background: linear-gradient(135deg, #fff 0%, #f9fbff 100%);
        border: 2px solid rgba(0, 123, 255, 0.1);
        border-radius: 24px;
        padding: 50px;
        position: relative;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        animation: slideInUp 0.6s ease forwards;
    }

    .tool-card-equal:hover {
        transform: translateY(-10px);
        box-shadow: 0 28px 70px rgba(0, 0, 0, 0.15);
        border-color: rgba(0, 123, 255, 0.15);
    }

    .premium-tool-card-col6:hover {
        transform: translateY(-8px);
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
        border-color: rgba(0, 123, 255, 0.2);
    }

    /* Corner Accent Decoration */
    .card-corner-accent {
        position: absolute;
        width: 150px;
        height: 150px;
        border-radius: 50%;
        opacity: 0.05;
        z-index: 0;
    }

    .corner-blue {
        background: #007bff;
        top: -60px;
        right: -60px;
    }

    .corner-green {
        background: #28a745;
        top: -60px;
        right: -60px;
    }

    .tool-top-accent-col6 {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 6px;
        background: linear-gradient(90deg, #007bff, #0056b3);
        border-radius: 24px 24px 0 0;
    }

    .tool-accent-green {
        background: linear-gradient(90deg, #28a745, #1e7e34);
    }

    .tool-badge-col6 {
        display: inline-block;
        padding: 8px 18px;
        width: 50%;
        border-radius: 12px;
        font-size: 11px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-bottom: 24px;
        box-shadow: 0 8px 20px rgba(0, 123, 255, 0.2);
        position: relative;
        z-index: 1;
    }

    .tool-badge-blue {
        background: linear-gradient(135deg, #007bff, #0056b3);
        color: #fff;
        box-shadow: 0 8px 20px rgba(0, 123, 255, 0.2);
    }

    .tool-badge-green {
        background: linear-gradient(135deg, #28a745, #1e7e34);
        color: #fff;
        box-shadow: 0 8px 20px rgba(40, 167, 69, 0.2);
    }

    .tool-visual-col6 {
        margin-bottom: 28px;
        text-align: center;
        position: relative;
        z-index: 1;
    }

    .tool-icon-col6 {
        width: 95px;
        height: 95px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 48px;
        color: #fff;
        margin: 0 auto 22px;
        box-shadow: 0 15px 45px rgba(0, 123, 255, 0.3);
        transition: all 0.4s ease;
    }

    .tool-icon-blue {
        background: linear-gradient(135deg, #007bff, #0056b3);
    }

    .tool-icon-green {
        background: linear-gradient(135deg, #28a745, #1e7e34);
        box-shadow: 0 15px 45px rgba(40, 167, 69, 0.3);
    }

    .tool-card-equal:hover .tool-icon-col6,
    .premium-tool-card-col6:hover .tool-icon-col6 {
        transform: scale(1.12);
    }

    .tool-badges-row {
        display: flex;
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
        position: relative;
        z-index: 1;
    }

    .tool-mini-badge {
        display: inline-block;
        background: rgba(0, 123, 255, 0.1);
        color: #007bff;
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.5px;
    }

    .tool-mini-green {
        background: rgba(40, 167, 69, 0.1);
        color: #28a745;
    }

    .tool-content-col6 {
        text-align: center;
        position: relative;
        z-index: 1;
    }

    .tool-content-flex {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        justify-content: space-between;
    }

    .tool-title-col6 {
        font-size: 26px;
        font-weight: 900;
        color: #000;
        margin: 0 0 12px 0;
        letter-spacing: -0.5px;
    }

    .tool-description-col6 {
        font-size: 14px;
        color: #777;
        line-height: 1.65;
        margin-bottom: 24px;
        flex-grow: 0;
    }

    .tool-features-col6 {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .tool-features-col6 li {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        font-size: 13.5px;
        color: #666;
        font-weight: 600;
    }

    .tool-features-col6 i {
        font-size: 16px;
        color: #007bff;
        flex-shrink: 0;
        transition: all 0.3s ease;
    }

    .premium-tool-card-col6:nth-child(2) .tool-features-col6 i,
    .tool-card-equal:nth-child(2) .tool-features-col6 i {
        color: #28a745;
    }

    /* Responsive */
    @media (max-width: 991px) {
        .hero-title {
            font-size: 36px;
        }

        .hero-title-premium {
            font-size: 42px;
        }

        .hero-visual-premium {
            padding: 30px 0 30px 0;
            margin-top: 40px;
        }

        .hero-cards-grid {
            grid-template-columns: 1fr;
            gap: 24px;
        }

        .premium-visual-card {
            padding: 36px 32px;
        }

        .card-icon {
            width: 80px;
            height: 80px;
            font-size: 38px;
        }

        .card-title {
            font-size: 20px;
        }

        .section-title {
            font-size: 32px;
        }

        .section-title-premium {
            font-size: 40px;
        }

        .hero-content-premium {
            padding: 30px 0 30px 0;
        }

        .premium-tool-card-col6 {
            padding: 40px;
        }

        .tool-icon-col6 {
            width: 85px;
            height: 85px;
            font-size: 42px;
        }

        .capabilities-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .capability-card {
            padding: 30px;
        }

        .approach-section-premium {
            padding: 60px 0;
        }

        .approach-grid-premium {
            grid-template-columns: repeat(2, 1fr);
            gap: 28px;
        }

        .approach-item-premium {
            padding: 38px 32px;
        }

        .approach-badge-number {
            width: 60px;
            height: 60px;
            font-size: 28px;
            margin-bottom: 18px;
        }

        .approach-icon-box {
            width: 78px;
            height: 78px;
            font-size: 38px;
            margin-bottom: 20px;
        }

        .approach-title {
            font-size: 20px;
            margin-bottom: 12px;
        }

        .approach-description {
            font-size: 13.5px;
            margin-bottom: 18px;
        }

        .approach-benefits li {
            font-size: 12.5px;
        }

        .capabilities-grid-premium {
            grid-template-columns: repeat(2, 1fr);
            gap: 26px;
            margin-top: 50px;
        }

        .capability-item-premium {
            padding: 38px 30px;
        }

        .capability-icon-box {
            width: 80px;
            height: 80px;
            font-size: 38px;
            margin-bottom: 20px;
        }

        .capability-title {
            font-size: 19px;
            margin-bottom: 12px;
        }

        .capability-description {
            font-size: 13.5px;
        }
    }

    @media (max-width: 768px) {
        .design-engineering-new {
            padding: 60px 0;
        }

        .hero-title {
            font-size: 28px;
        }

        .hero-title-premium {
            font-size: 32px;
        }

        .hero-subtitle-premium {
            font-size: 15px;
        }

        .section-title {
            font-size: 26px;
        }

        .section-title-premium {
            font-size: 28px;
        }

        .hero-features-premium {
            gap: 16px;
        }

        .feature-item-premium {
            padding: 16px;
            gap: 14px;
        }

        .feature-icon-premium {
            width: 45px;
            height: 45px;
            font-size: 20px;
        }

        .feature-text-premium h4 {
            font-size: 14px;
            margin-bottom: 4px;
        }

        .feature-text-premium p {
            font-size: 12px;
        }

        .hero-visual-premium {
            padding: 30px 0;
            margin-top: 30px;
        }

        .hero-cards-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .premium-visual-card {
            padding: 30px 25px;
        }

        .card-icon {
            width: 75px;
            height: 75px;
            font-size: 35px;
        }

        .card-title {
            font-size: 18px;
        }

        .card-subtitle {
            font-size: 13px;
            margin-bottom: 10px;
        }

        .card-description {
            font-size: 12.5px;
            margin-bottom: 0;
        }

        .premium-tool-card-col6 {
            padding: 35px;
        }

        .tool-icon-col6 {
            width: 80px;
            height: 80px;
            font-size: 40px;
            margin-bottom: 18px;
        }

        .tool-title-col6 {
            font-size: 24px;
            margin-bottom: 12px;
        }

        .tool-description-col6 {
            font-size: 14px;
            margin-bottom: 24px;
        }

        .tool-features-col6 {
            gap: 12px;
        }

        .tool-features-col6 li {
            font-size: 13px;
        }

        .capabilities-grid {
            grid-template-columns: 1fr;
        }

        .capability-card {
            padding: 25px;
        }

        .tools-section {
            padding: 40px;
        }

        .tools-single-row {
            grid-template-columns: 1fr;
            gap: 35px;
            margin-top: 60px;
        }

        .premium-tool-card-new {
            padding: 50px 40px;
        }

        .tool-icon-container {
            width: 90px;
            height: 90px;
            font-size: 45px;
            margin-bottom: 25px;
        }

        .premium-tool-card-new h3 {
            font-size: 24px;
        }

        .approach-section {
            padding: 40px;
        }

        .approach-section-premium {
            padding: 50px 0;
        }

        .approach-grid-premium {
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-top: 45px;
        }

        .approach-item-premium {
            padding: 32px 26px;
        }

        .approach-badge-number {
            width: 55px;
            height: 55px;
            font-size: 26px;
            margin-bottom: 16px;
        }

        .approach-icon-box {
            width: 72px;
            height: 72px;
            font-size: 34px;
            margin-bottom: 18px;
        }

        .approach-title {
            font-size: 19px;
            margin-bottom: 10px;
        }

        .approach-subtitle {
            font-size: 14.5px;
        }

        .approach-description {
            font-size: 13px;
            margin-bottom: 16px;
        }

        .approach-benefits li {
            font-size: 12px;
            gap: 8px;
        }

        .capabilities-grid-premium {
            grid-template-columns: repeat(2, 1fr);
            gap: 22px;
            margin-top: 45px;
        }

        .capability-item-premium {
            padding: 32px 24px;
        }

        .capability-icon-box {
            width: 75px;
            height: 75px;
            font-size: 36px;
            margin-bottom: 18px;
        }

        .capability-title {
            font-size: 18px;
            margin-bottom: 10px;
        }

        .capability-description {
            font-size: 13px;
        }

        .cta-section {
            padding: 40px;
        }

        .cta-content h2 {
            font-size: 26px;
        }

        .image-wrapper {
            height: 300px;
        }

        .floating-box {
            width: 100px;
            height: 100px;
        }

        .floating-box i {
            font-size: 30px;
        }
    }

    @media (max-width: 576px) {
        .hero-section-premium {
            margin-bottom: 60px;
        }

        .hero-title-premium {
            font-size: 26px;
            margin-bottom: 16px;
        }

        .hero-subtitle-premium {
            font-size: 14px;
            margin-bottom: 32px;
        }

        .hero-badge-premium {
            padding: 8px 16px;
            font-size: 10px;
            margin-bottom: 16px;
        }

        .feature-item-premium {
            padding: 14px;
            gap: 12px;
            margin-bottom: 8px;
        }

        .feature-icon-premium {
            width: 40px;
            height: 40px;
            font-size: 18px;
        }

        .feature-text-premium h4 {
            font-size: 13px;
        }

        .feature-text-premium p {
            font-size: 11px;
        }

        .hero-visual-premium {
            padding: 0;
            margin-top: 40px;
        }

        .hero-cards-grid {
            grid-template-columns: 1fr;
            gap: 16px;
        }

        .premium-visual-card {
            padding: 24px 18px;
        }

        .card-badge {
            padding: 6px 12px;
            font-size: 9px;
            margin-bottom: 16px;
        }

        .card-icon {
            width: 65px;
            height: 65px;
            font-size: 28px;
            margin-bottom: 14px;
        }

        .card-title {
            font-size: 16px;
            margin-bottom: 6px;
        }

        .card-subtitle {
            font-size: 12px;
            margin-bottom: 8px;
        }

        .card-description {
            font-size: 12px;
            line-height: 1.5;
        }

        .tools-section-premium {
            padding: 60px 0;
            margin-bottom: 50px;
        }

        .section-badge-premium {
            padding: 6px 14px;
            font-size: 9px;
            margin-bottom: 12px;
        }

        .section-header-premium {
            margin-bottom: 40px;
        }

        .section-title-premium {
            font-size: 24px;
            margin-bottom: 12px;
        }

        .section-subtitle-premium {
            font-size: 13px;
        }

        .premium-tool-card-col6 {
            padding: 28px 20px;
        }

        .tool-badge-col6 {
            padding: 6px 12px;
            font-size: 9px;
            margin-bottom: 18px;
        }

        .tool-visual-col6 {
            margin-bottom: 24px;
        }

        .tool-icon-col6 {
            width: 70px;
            height: 70px;
            font-size: 32px;
            margin-bottom: 14px;
        }

        .tool-badges-row {
            gap: 8px;
        }

        .tool-mini-badge {
            padding: 4px 10px;
            font-size: 9px;
        }

        .tool-title-col6 {
            font-size: 20px;
            margin-bottom: 10px;
        }

        .tool-description-col6 {
            font-size: 13px;
            margin-bottom: 18px;
        }

        .tool-features-col6 {
            gap: 10px;
        }

        .tool-features-col6 li {
            font-size: 12px;
            gap: 10px;
        }

        .tool-features-col6 i {
            font-size: 16px;
        }

        .hero-section {
            margin-bottom: 40px;
        }

        .hero-title {
            font-size: 22px;
        }

        .hero-subtitle {
            font-size: 14px;
        }

        .section-title {
            font-size: 22px;
        }

        .capability-card {
            padding: 20px;
        }

        .cap-icon {
            width: 60px;
            height: 60px;
            font-size: 26px;
        }

        .cta-content h2 {
            font-size: 20px;
        }

        .capability-card {
            padding: 20px;
        }

        .cap-icon {
            width: 60px;
            height: 60px;
            font-size: 26px;
        }

        .capabilities-grid-premium {
            grid-template-columns: 1fr;
            gap: 18px;
            margin-top: 40px;
        }

        .capability-item-premium {
            padding: 28px 20px;
        }

        .capability-icon-box {
            width: 70px;
            height: 70px;
            font-size: 32px;
            margin-bottom: 16px;
        }

        .capability-title {
            font-size: 17px;
            margin-bottom: 10px;
        }

        .capability-description {
            font-size: 12.5px;
        }

        .approach-number {
            font-size: 36px;
        }

        .approach-section-premium {
            padding: 50px 0;
        }

        .approach-grid-premium {
            grid-template-columns: 1fr;
            gap: 20px;
            margin-top: 40px;
        }

        .approach-item-premium {
            padding: 28px 22px;
        }

        .approach-badge-number {
            width: 50px;
            height: 50px;
            font-size: 24px;
            margin-bottom: 14px;
        }

        .approach-icon-box {
            width: 65px;
            height: 65px;
            font-size: 30px;
            margin-bottom: 16px;
        }

        .approach-title {
            font-size: 18px;
            margin-bottom: 10px;
        }

        .approach-subtitle {
            font-size: 13px;
        }

        .approach-description {
            font-size: 12.5px;
            margin-bottom: 15px;
        }

        .approach-benefits li {
            font-size: 11.5px;
            gap: 8px;
        }

        .tools-single-row {
            grid-template-columns: 1fr;
            gap: 25px;
            margin-top: 50px;
        }

        .premium-tool-card-new {
            padding: 40px 25px;
        }

        .tool-icon-container {
            width: 80px;
            height: 80px;
            font-size: 40px;
            margin-bottom: 20px;
        }

        .premium-tool-card-new h3 {
            font-size: 20px;
            margin-bottom: 12px;
        }

        .tool-description {
            font-size: 14px;
            margin-bottom: 25px;
        }

        .tool-features-list {
            gap: 14px;
        }

        .tool-features-list li {
            font-size: 13px;
        }
    }
