/* ========================================= */
/* PLC & HMI Programming Premium Styles */
/* ========================================= */

/* Details Section */
.details-section-premium {
    background: linear-gradient(135deg, #f8f9ff 0%, #f3f6ff 100%);
    border: 2px solid rgba(0, 123, 255, 0.08);
    border-radius: 24px;
    padding: 50px 45px;
    position: relative;
    overflow: hidden;
}

.detail-card-wrapper {
    position: relative;
    z-index: 2;
}

.detail-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.2);
}

.detail-badge i {
    font-size: 12px;
}

.detail-badge-2 {
    background: linear-gradient(135deg, #ff8c42, #ff6b1a);
    box-shadow: 0 8px 20px rgba(255, 107, 26, 0.2);
}

.details-section-premium h2 {
    font-size: 32px;
    font-weight: 900;
    color: #000;
    margin: 0 0 18px 0;
    letter-spacing: -0.5px;
}

.detail-intro {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 700px;
}

.detail-intro strong {
    color: #000;
    font-weight: 700;
}

.detail-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.detail-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: #fff;
    border-radius: 12px;
    border-left: 4px solid #007bff;
    transition: all 0.3s ease;
}

.detail-feature-item:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.1);
}

.detail-badge-2+h2+p+.detail-features .detail-feature-item {
    border-left-color: #ff8c42;
}

.feature-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 12px;
}

.detail-badge-2~.h2~.p~.detail-features .feature-check {
    background: linear-gradient(135deg, #ff8c42, #ff6b1a);
}

.detail-feature-item span:last-child {
    font-size: 15px;
    color: #555;
    font-weight: 500;
    line-height: 1.6;
}

/* Differentiator Section */
.differentiator-section-premium {
    background: linear-gradient(135deg, #fff 0%, #f9fbff 100%);
    border: 2px solid rgba(0, 123, 255, 0.1);
    border-radius: 24px;
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.differentiator-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.differentiator-title {
    font-size: 36px;
    font-weight: 900;
    color: #000;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.differentiator-subtitle {
    font-size: 20px;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 24px;
}

.differentiator-intro {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.differentiator-intro strong {
    color: #000;
    font-weight: 700;
}

.differentiator-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: left;
}

.diff-item {
    background: #fff;
    padding: 24px;
    border: radius: 14px;
    border-left: 5px solid #007bff;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.08);
    transition: all 0.3s ease;
}

.diff-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 123, 255, 0.15);
}

.diff-label {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.diff-item p {
    font-size: 14px;
    color: #777;
    margin: 0;
    line-height: 1.6;
}

/* Service Model Section */
.service-model-section-premium {
    position: relative;
}

.section-subtitle {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle.text-center {
    text-align: center;
}

.section-subtitle strong {
    color: #000;
    font-weight: 700;
}

.service-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-item-card {
    background: linear-gradient(135deg, #fff 0%, #f9fbff 100%);
    border: 2px solid rgba(0, 123, 255, 0.1);
    border-radius: 20px;
    padding: 40px 35px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideInUp 0.6s ease forwards;
    opacity: 0;
    animation-delay: var(--delay, 0s);
}

.service-item-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 28px 70px rgba(0, 123, 255, 0.15);
    border-color: rgba(0, 123, 255, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    color: #fff;
    margin: 0 auto 24px;
    box-shadow: 0 12px 35px rgba(0, 123, 255, 0.25);
    transition: all 0.3s ease;
}

.service-item-card:nth-child(2) .service-icon,
.service-item-card:nth-child(5) .service-icon {
    background: linear-gradient(135deg, #ff8c42, #ff6b1a);
    box-shadow: 0 12px 35px rgba(255, 107, 26, 0.25);
}

.service-item-card:nth-child(3) .service-icon,
.service-item-card:nth-child(6) .service-icon {
    background: linear-gradient(135deg, #28a745, #1e7e34);
    box-shadow: 0 12px 35px rgba(40, 167, 69, 0.25);
}

.service-item-card:nth-child(4) .service-icon,
.service-item-card:nth-child(7) .service-icon {
    background: linear-gradient(135deg, #9c27b0, #6a1b9a);
    box-shadow: 0 12px 35px rgba(156, 39, 176, 0.25);
}

.service-item-card:hover .service-icon {
    transform: scale(1.15);
}

.service-item-card h4 {
    font-size: 20px;
    font-weight: 0;
    color: #000;
    margin: 0 0 12px 0;
    letter-spacing: -0.3px;
}

.service-item-card p {
    font-size: 14px;
    color: #777;
    margin: 0;
    line-height: 1.6;
}

/* Why Closoft Section */
.why-closoft-section-premium {
    position: relative;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 50px;
}

.why-item {
    border: 2px solid rgba(0, 123, 255, 0.08);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.why-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 123, 255, 0.15);
    border-color: rgba(0, 123, 255, 0.2);
}

.why-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.2);
    transition: all 0.3s ease;
}

.why-item:hover .why-icon {
    transform: scale(1.1);
}

.why-item h4 {
    font-size: 18px;
    font-weight: 0;
    color: #000;
    margin: 0 0 12px 0;
    letter-spacing: -0.3px;
    line-height: 1.4;
}

.why-item p {
    font-size: 14px;
    color: #777;
    margin: 0;
    line-height: 1.6;
}

/* Expertise Note */
.expertise-note {
    font-size: 16px;
    color: #666;
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.05), rgba(0, 123, 255, 0.02));
    border-radius: 12px;
    border-left: 4px solid #007bff;
    line-height: 1.8;
}

.expertise-note strong {
    color: #000;
    font-weight: 700;
}

.mb-60 {
    margin-bottom: 60px;
}

/* ========================================= */
/* Multi-Language Programming Expertise Section */
/* ========================================= */

.programming-expertise-section {
    position: relative;
    padding: 0px 0;
}

.expertise-header {
    text-align: center;
    margin-bottom: 70px;
}

.expertise-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    padding: 11px 26px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 22px;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.2);
}

.expertise-title {
    font-size: 48px;
    font-weight: 900;
    color: #000;
    margin: 0 0 16px 0;
    letter-spacing: -0.8px;
    line-height: 1.2;
}

.expertise-subtitle {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.programming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-top: 60px;
}

.programming-card {
    background: linear-gradient(135deg, #fff 0%, #f9fbff 100%);
    border: 2px solid rgba(0, 123, 255, 0.08);
    border-radius: 22px;
    padding: 45px 38px;
    position: relative;
    overflow: hidden;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideInUp 0.6s ease forwards;
    opacity: 0;
    animation-delay: var(--delay, 0s);
}

.programming-card: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 */
.programming-top-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #007bff, #0056b3);
}

/* Color Variations (cycling through 4 colors) */
.programming-card-1 .programming-top-accent,
.programming-card-6 .programming-top-accent,
.programming-card-11 .programming-top-accent {
    background: linear-gradient(90deg, #007bff, #0056b3);
}

.programming-card-2 .programming-top-accent,
.programming-card-7 .programming-top-accent,
.programming-card-12 .programming-top-accent {
    background: linear-gradient(90deg, #ff8c42, #ff6b1a);
}

.programming-card-3 .programming-top-accent,
.programming-card-8 .programming-top-accent {
    background: linear-gradient(90deg, #28a745, #1e7e34);
}

.programming-card-4 .programming-top-accent,
.programming-card-9 .programming-top-accent {
    background: linear-gradient(90deg, #9c27b0, #6a1b9a);
}

.programming-card-5 .programming-top-accent,
.programming-card-10 .programming-top-accent {
    background: linear-gradient(90deg, #17a2b8, #10707d);
}

/* Icon Box */
.programming-icon-box {
    width: 95px;
    height: 95px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    color: #fff;
    margin: 0 auto 26px;
    box-shadow: 0 12px 40px rgba(0, 123, 255, 0.25);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.programming-card-2 .programming-icon-box,
.programming-card-7 .programming-icon-box {
    background: linear-gradient(135deg, #ff8c42, #ff6b1a);
    box-shadow: 0 12px 40px rgba(255, 107, 26, 0.25);
}

.programming-card-3 .programming-icon-box,
.programming-card-8 .programming-icon-box {
    background: linear-gradient(135deg, #28a745, #1e7e34);
    box-shadow: 0 12px 40px rgba(40, 167, 69, 0.25);
}

.programming-card-4 .programming-icon-box,
.programming-card-9 .programming-icon-box {
    background: linear-gradient(135deg, #9c27b0, #6a1b9a);
    box-shadow: 0 12px 40px rgba(156, 39, 176, 0.25);
}

.programming-card-5 .programming-icon-box,
.programming-card-10 .programming-icon-box {
    background: linear-gradient(135deg, #17a2b8, #10707d);
    box-shadow: 0 12px 40px rgba(23, 162, 184, 0.25);
}

.programming-card:hover .programming-icon-box {
    transform: scale(1.18) rotate(5deg);
}

/* Programming Card Title */
.programming-language-name {
    font-size: 22px;
    font-weight: 00;
    color: #000;
    margin: 0 0 12px 0;
    position: relative;
    z-index: 2;
    letter-spacing: -0.4px;
}

/* Programming Card Code Name */
.programming-code-name {
    font-size: 13px;
    font-weight: 700;
    color: #007bff;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin: 8px 0 16px 0;
    position: relative;
    z-index: 2;
}

.programming-card-2 .programming-code-name {
    color: #ff8c42;
}

.programming-card-3 .programming-code-name {
    color: #28a745;
}

.programming-card-4 .programming-code-name {
    color: #9c27b0;
}

.programming-card-5 .programming-code-name {
    color: #17a2b8;
}

/* Programming Card Description */
.programming-description {
    font-size: 15px;
    color: #777;
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 2;
}

.section-highlight {
    color: #000;
    font-weight: 700;
    display: block;
    margin-top: 4px;
}

/* ========================================= */
/* INDUSTRIES & APPLICATIONS SECTION */
/* ========================================= */

.industries-section-premium {
    position: relative;
    padding: 0px 0;
}

.industries-header {
    text-align: center;
    margin-bottom: 70px;
}

.industries-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    padding: 11px 26px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 22px;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.2);
}

.industries-title {
    font-size: 48px;
    font-weight: 900;
    color: #000;
    margin: 0 0 16px 0;
    letter-spacing: -0.8px;
    line-height: 1.2;
}

.industries-subtitle {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.industry-card {
    background: linear-gradient(135deg, #fff 0%, #f9fbff 100%);
    border: 2px solid rgba(0, 123, 255, 0.08);
    border-radius: 20px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideInUp 0.6s ease forwards;
    opacity: 0;
    animation-delay: var(--delay, 0s);
}

.industry-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 123, 255, 0.15);
}

/* Industry Card Top Accent */
.industry-top-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #007bff, #0056b3);
}

/* Color Variations for Industries (11 items) */
.industry-card-1 .industry-top-accent {
    background: linear-gradient(90deg, #007bff, #0056b3);
}

.industry-card-2 .industry-top-accent {
    background: linear-gradient(90deg, #ff8c42, #ff6b1a);
}

.industry-card-3 .industry-top-accent {
    background: linear-gradient(90deg, #28a745, #1e7e34);
}

.industry-card-4 .industry-top-accent {
    background: linear-gradient(90deg, #9c27b0, #6a1b9a);
}

.industry-card-5 .industry-top-accent {
    background: linear-gradient(90deg, #17a2b8, #10707d);
}

.industry-card-6 .industry-top-accent {
    background: linear-gradient(90deg, #007bff, #0056b3);
}

.industry-card-7 .industry-top-accent {
    background: linear-gradient(90deg, #ff8c42, #ff6b1a);
}

.industry-card-8 .industry-top-accent {
    background: linear-gradient(90deg, #28a745, #1e7e34);
}

.industry-card-9 .industry-top-accent {
    background: linear-gradient(90deg, #9c27b0, #6a1b9a);
}

.industry-card-10 .industry-top-accent {
    background: linear-gradient(90deg, #17a2b8, #10707d);
}

.industry-card-11 .industry-top-accent {
    background: linear-gradient(90deg, #007bff, #0056b3);
}

/* Industry Icon Box */
.industry-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
    margin: 0 auto 20px;
    box-shadow: 0 12px 40px rgba(0, 123, 255, 0.25);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.industry-card-2 .industry-icon {
    background: linear-gradient(135deg, #ff8c42, #ff6b1a);
    box-shadow: 0 12px 40px rgba(255, 107, 26, 0.25);
}

.industry-card-3 .industry-icon {
    background: linear-gradient(135deg, #28a745, #1e7e34);
    box-shadow: 0 12px 40px rgba(40, 167, 69, 0.25);
}

.industry-card-4 .industry-icon {
    background: linear-gradient(135deg, #9c27b0, #6a1b9a);
    box-shadow: 0 12px 40px rgba(156, 39, 176, 0.25);
}

.industry-card-5 .industry-icon {
    background: linear-gradient(135deg, #17a2b8, #10707d);
    box-shadow: 0 12px 40px rgba(23, 162, 184, 0.25);
}

.industry-card-6 .industry-icon {
    background: linear-gradient(135deg, #007bff, #0056b3);
    box-shadow: 0 12px 40px rgba(0, 123, 255, 0.25);
}

.industry-card-7 .industry-icon {
    background: linear-gradient(135deg, #ff8c42, #ff6b1a);
    box-shadow: 0 12px 40px rgba(255, 107, 26, 0.25);
}

.industry-card-8 .industry-icon {
    background: linear-gradient(135deg, #28a745, #1e7e34);
    box-shadow: 0 12px 40px rgba(40, 167, 69, 0.25);
}

.industry-card-9 .industry-icon {
    background: linear-gradient(135deg, #9c27b0, #6a1b9a);
    box-shadow: 0 12px 40px rgba(156, 39, 176, 0.25);
}

.industry-card-10 .industry-icon {
    background: linear-gradient(135deg, #17a2b8, #10707d);
    box-shadow: 0 12px 40px rgba(23, 162, 184, 0.25);
}

.industry-card-11 .industry-icon {
    background: linear-gradient(135deg, #007bff, #0056b3);
    box-shadow: 0 12px 40px rgba(0, 123, 255, 0.25);
}

.industry-card:hover .industry-icon {
    transform: scale(1.15) rotate(-8deg);
}

/* Industry Card Title */
.industry-name {
    font-size: 19px;
    font-weight: 0;
    color: #000;
    margin: 0 0 8px 0;
    position: relative;
    z-index: 2;
    letter-spacing: -0.3px;
}

/* Industry Card Description */
.industry-description {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
    font-weight: 500;
}

/* ========================================= */
/* MULTI-PLATFORM EXPERTISE SECTION */
/* ========================================= */

.platforms-section-premium {
    position: relative;
    padding: 0px 0;
}

.platforms-header {
    text-align: center;
    margin-bottom: 70px;
}

.platforms-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    padding: 11px 26px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 22px;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.2);
}

.platforms-title {
    font-size: 48px;
    font-weight: 900;
    color: #000;
    margin: 0 0 16px 0;
    letter-spacing: -0.8px;
    line-height: 1.2;
}

.platforms-subtitle {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 60px;
}

.platform-card {
    background: linear-gradient(135deg, #fff 0%, #f9fbff 100%);
    border: 2px solid rgba(0, 123, 255, 0.08);
    border-radius: 22px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideInUp 0.6s ease forwards;
    opacity: 0;
    animation-delay: var(--delay, 0s);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.platform-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 123, 255, 0.15);
}

/* Platform Card Top Accent */
.platform-top-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #007bff, #0056b3);
}

/* Color Variations for Platforms (7 items) */
.platform-card-1 .platform-top-accent {
    background: linear-gradient(90deg, #007bff, #0056b3);
}

.platform-card-2 .platform-top-accent {
    background: linear-gradient(90deg, #ff8c42, #ff6b1a);
}

.platform-card-3 .platform-top-accent {
    background: linear-gradient(90deg, #28a745, #1e7e34);
}

.platform-card-4 .platform-top-accent {
    background: linear-gradient(90deg, #9c27b0, #6a1b9a);
}

.platform-card-5 .platform-top-accent {
    background: linear-gradient(90deg, #17a2b8, #10707d);
}

.platform-card-6 .platform-top-accent {
    background: linear-gradient(90deg, #007bff, #0056b3);
}

.platform-card-7 .platform-top-accent {
    background: linear-gradient(90deg, #ff8c42, #ff6b1a);
}

/* Platform Logo Box (Brand Identity) */
.platform-logo-box {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    margin-bottom: 26px;
    box-shadow: 0 18px 55px rgba(0, 123, 255, 0.3);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    font-weight: 900;
    border: 2px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 0px;
}

.platform-logo-text {
    display: block;
}

.platform-card-2 .platform-logo-box {
    background: linear-gradient(135deg, #ff8c42, #ff6b1a);
    box-shadow: 0 18px 55px rgba(255, 107, 26, 0.3);
}

.platform-card-3 .platform-logo-box {
    background: linear-gradient(135deg, #28a745, #1e7e34);
    box-shadow: 0 18px 55px rgba(40, 167, 69, 0.3);
}

.platform-card-4 .platform-logo-box {
    background: linear-gradient(135deg, #9c27b0, #6a1b9a);
    box-shadow: 0 18px 55px rgba(156, 39, 176, 0.3);
}

.platform-card-5 .platform-logo-box {
    background: linear-gradient(135deg, #17a2b8, #10707d);
    box-shadow: 0 18px 55px rgba(23, 162, 184, 0.3);
}

.platform-card-6 .platform-logo-box {
    background: linear-gradient(135deg, #007bff, #0056b3);
    box-shadow: 0 18px 55px rgba(0, 123, 255, 0.3);
}

.platform-card-7 .platform-logo-box {
    background: linear-gradient(135deg, #ff8c42, #ff6b1a);
    box-shadow: 0 18px 55px rgba(255, 107, 26, 0.3);
}

.platform-card:hover .platform-logo-box {
    transform: scale(1.22) rotate(6deg);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Platform Card Title */
.platform-name {
    font-size: 24px;
    font-weight: 00;
    color: #000;
    margin: 0 0 10px 0;
    position: relative;
    z-index: 2;
    letter-spacing: -0.5px;
}

/* Platform Card Description */
.platform-description {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
    font-weight: 500;
}

/* Responsive BreakPoints */
@media (max-width: 991px) {
    .expertise-title {
        font-size: 40px;
    }

    .programming-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .programming-card {
        padding: 38px 32px;
    }

    .programming-icon-box {
        width: 85px;
        height: 85px;
        font-size: 40px;
    }

    .programming-language-name {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .programming-expertise-section {
        padding: 60px 0;
    }

    .expertise-header {
        margin-bottom: 50px;
    }

    .expertise-title {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .expertise-subtitle {
        font-size: 15px;
    }

    .programming-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .programming-card {
        padding: 32px 26px;
    }

    .programming-icon-box {
        width: 78px;
        height: 78px;
        font-size: 36px;
        margin-bottom: 18px;
    }

    .programming-language-name {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .programming-code-name {
        font-size: 11px;
        margin: 6px 0 12px 0;
    }

    .programming-description {
        font-size: 13.5px;
    }
}

@media (max-width: 576px) {
    .programming-expertise-section {
        padding: 50px 0;
    }

    .expertise-header {
        margin-bottom: 40px;
    }

    .expertise-badge {
        padding: 9px 18px;
        font-size: 10px;
        margin-bottom: 16px;
    }

    .expertise-title {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .expertise-subtitle {
        font-size: 14px;
    }

    .programming-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .programming-card {
        padding: 28px 22px;
    }

    .programming-icon-box {
        width: 70px;
        height: 70px;
        font-size: 32px;
        margin-bottom: 14px;
    }

    .programming-language-name {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .programming-code-name {
        font-size: 10px;
        margin: 4px 0 10px 0;
    }

    .programming-description {
        font-size: 12.5px;
    }
}

/* Responsive BreakPoints */
@media (max-width: 991px) {
    .details-section-premium {
        padding: 40px 35px;
    }

    .details-section-premium h2 {
        font-size: 26px;
        margin-bottom: 14px;
    }

    .detail-intro {
        font-size: 15px;
    }

    .detail-features {
        grid-template-columns: 1fr;
    }

    .differentiator-section-premium {
        padding: 45px 40px;
    }

    .differentiator-title {
        font-size: 28px;
    }

    .differentiator-subtitle {
        font-size: 18px;
    }

    .differentiator-items {
        grid-template-columns: 1fr;
    }

    .service-items-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .service-item-card {
        padding: 32px 26px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
        margin-bottom: 18px;
    }

    .service-item-card h4 {
        font-size: 18px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .why-item {
        padding: 32px 24px;
    }

    .why-icon {
        width: 65px;
        height: 65px;
        font-size: 30px;
        margin-bottom: 16px;
    }

    .why-item h4 {
        font-size: 16px;
    }

    /* Industries Section Responsive (991px) */
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .industry-card {
        padding: 36px 30px;
    }

    .industry-icon {
        width: 75px;
        height: 75px;
        font-size: 36px;
        margin-bottom: 18px;
    }

    .industry-name {
        font-size: 17px;
    }

    .industry-description {
        font-size: 13.5px;
    }

    /* Platforms Section Responsive (991px) */
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .platform-card {
        padding: 42px 34px;
    }

    .platform-logo-box {
        width: 100px;
        height: 100px;
        font-size: 20px;
        margin-bottom: 22px;
    }

    .platform-name {
        font-size: 22px;
    }

    .platform-description {
        font-size: 13.5px;
    }
}

@media (max-width: 768px) {
    .details-section-premium {
        padding: 35px 28px;
    }

    .details-section-premium h2 {
        font-size: 24px;
    }

    .detail-intro {
        font-size: 14px;
    }

    .differentiator-section-premium {
        padding: 40px 30px;
    }

    .differentiator-title {
        font-size: 24px;
    }

    .differentiator-subtitle {
        font-size: 16px;
    }

    .differentiator-intro {
        font-size: 14.5px;
    }

    .service-items-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-item-card {
        padding: 28px 22px;
    }

    .service-icon {
        width: 65px;
        height: 65px;
        font-size: 28px;
    }

    .service-item-card h4 {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .service-item-card p {
        font-size: 13px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-item {
        padding: 28px 22px;
    }

    .why-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
        margin-bottom: 14px;
    }

    .why-item h4 {
        font-size: 15px;
    }

    .why-item p {
        font-size: 13px;
    }

    /* Industries Section Responsive (768px) */
    .industries-title {
        font-size: 36px;
    }

    .industries-subtitle {
        font-size: 15px;
    }

    .industries-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .industry-card {
        padding: 32px 26px;
    }

    .industry-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
        margin-bottom: 16px;
    }

    .industry-name {
        font-size: 18px;
    }

    .industry-description {
        font-size: 14px;
    }

    /* Platforms Section Responsive (768px) */
    .platforms-title {
        font-size: 36px;
    }

    .platforms-subtitle {
        font-size: 15px;
    }

    .platforms-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .platform-card {
        padding: 40px 32px;
    }

    .platform-logo-box {
        width: 95px;
        height: 95px;
        font-size: 19px;
        margin-bottom: 20px;
    }

    .platform-name {
        font-size: 21px;
    }

    .platform-description {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .details-section-premium {
        padding: 30px 20px;
    }

    .details-section-premium h2 {
        font-size: 22px;
    }

    .detail-intro {
        font-size: 13.5px;
    }

    .detail-feature-item {
        padding: 14px;
        gap: 12px;
    }

    .detail-feature-item span:last-child {
        font-size: 13px;
    }

    .differentiator-section-premium {
        padding: 35px 20px;
    }

    .differentiator-title {
        font-size: 20px;
    }

    .differentiator-subtitle {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .differentiator-intro {
        font-size: 13.5px;
    }

    .diff-item {
        padding: 20px;
    }

    .diff-label {
        font-size: 14px;
    }

    .diff-item p {
        font-size: 12.5px;
    }

    .service-items-grid {
        gap: 16px;
    }

    .service-item-card {
        padding: 24px 18px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 14px;
    }

    .service-item-card h4 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .service-item-card p {
        font-size: 12px;
    }

    .why-item {
        padding: 24px 18px;
    }

    .why-icon {
        width: 55px;
        height: 55px;
        font-size: 24px;
        margin-bottom: 12px;
    }

    .why-item h4 {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .why-item p {
        font-size: 12px;
    }

    /* Industries Section Responsive */
    .industries-title {
        font-size: 28px;
    }

    .industries-subtitle {
        font-size: 14px;
    }

    .industries-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .industry-card {
        padding: 28px 22px;
    }

    .industry-icon {
        width: 65px;
        height: 65px;
        font-size: 30px;
        margin-bottom: 14px;
    }

    .industry-name {
        font-size: 16px;
    }

    .industry-description {
        font-size: 12.5px;
    }

    /* Platforms Section Responsive */
    .platforms-title {
        font-size: 28px;
    }

    .platforms-subtitle {
        font-size: 14px;
    }

    .platforms-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .platform-card {
        padding: 35px 26px;
    }

    .platform-logo-box {
        width: 90px;
        height: 90px;
        font-size: 18px;
        margin-bottom: 16px;
    }

    .platform-name {
        font-size: 18px;
    }

    .platform-description {
        font-size: 12.5px;
    }
}