/* =================================================================
   WhinField Design Enhancements
   3D Product Card + Sticky CTA Bar
   ================================================================= */

/* -----------------------------------------------------------------
   3D Product Card Tilt Effect
   ----------------------------------------------------------------- */

/* Card container setup */
.advanced-products-grid .product-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
    position: relative;
}

/* Default hover state */
.advanced-products-grid .product-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 25px 50px -12px rgba(25, 35, 36, 0.25),
        0 0 0 1px rgba(66, 132, 214, 0.1);
}

/* Spotlight shine effect */
.product-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(66, 132, 214, 0.15),
            transparent 40%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: inherit;
    z-index: 10;
}

.product-card:hover::after {
    opacity: 1;
}

/* Image lift effect within card */
.product-card:hover .product-image img {
    transform: scale(1.05);
}

/* -----------------------------------------------------------------
   Sticky CTA Bar
   ----------------------------------------------------------------- */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    /* Sophisticated Glassmorphism base */
    background: rgba(11, 28, 44, 0.75);
    /* Deep blue with opacity */
    backdrop-filter: blur(24px) saturate(150%);
    -webkit-backdrop-filter: blur(24px) saturate(150%);
    padding: 15px 30px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.25);
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-cta-bar .cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.sticky-cta-bar .cta-text {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.sticky-cta-bar .cta-text span {
    color: #87CEEB;
    font-weight: 600;
}

.sticky-cta-bar .btn-cta {
    background: linear-gradient(135deg, #4284d6 0%, #2a5a9e 100%);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(66, 132, 214, 0.3);
}

.sticky-cta-bar .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 132, 214, 0.4);
}

.sticky-cta-bar .cta-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    padding: 5px 10px;
    margin-left: 15px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    line-height: 1;
}

.sticky-cta-bar .cta-close:hover {
    opacity: 1;
}

/* -----------------------------------------------------------------
   Responsive Adjustments
   ----------------------------------------------------------------- */
@media (max-width: 991px) {
    .sticky-cta-bar .cta-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .sticky-cta-bar .cta-text {
        font-size: 14px;
    }

    .sticky-cta-bar {
        padding: 12px 20px;
    }
}

@media (max-width: 768px) {
    .product-card:hover {
        transform: translateY(-5px) scale(1.02);
    }
}

/* -----------------------------------------------------------------
   Enhanced Contact Form Section
   ----------------------------------------------------------------- */

/* Contact Section Container */
.contact-form-section {
    background: transparent !important;
    position: relative;
    overflow: hidden;
}

/* Decorative Background Elements */
.contact-form-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(66, 132, 214, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-form-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(135, 206, 235, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Enhanced Form Container */
.contact-us-form-enhanced {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow:
        0 20px 60px rgba(25, 35, 36, 0.08),
        0 0 0 1px rgba(66, 132, 214, 0.06);
    position: relative;
    z-index: 1;
}

/* Form Grid Layout */
.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.contact-form-grid .form-group-full {
    grid-column: 1 / -1;
}

/* Floating Label Form Group */
.form-group-floating {
    position: relative;
    margin-bottom: 8px;
}

.form-group-floating input,
.form-group-floating select,
.form-group-floating textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e8ecef;
    border-radius: 12px;
    background: #ffffff;
    font-size: 15px;
    color: #192324;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}

.form-group-floating textarea {
    min-height: 140px;
    resize: vertical;
}

.form-group-floating label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    padding: 0 8px;
    color: #6c757d;
    font-size: 15px;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group-floating textarea~label {
    top: 24px;
    transform: translateY(0);
}

/* Floating Label Animation */
.form-group-floating input:focus,
.form-group-floating input:not(:placeholder-shown),
.form-group-floating select:focus,
.form-group-floating select:not([value=""]),
.form-group-floating textarea:focus,
.form-group-floating textarea:not(:placeholder-shown) {
    border-color: #4284d6;
    box-shadow: 0 0 0 4px rgba(66, 132, 214, 0.1);
}

.form-group-floating input:focus~label,
.form-group-floating input:not(:placeholder-shown)~label,
.form-group-floating select:focus~label,
.form-group-floating select:not([value=""])~label,
.form-group-floating textarea:focus~label,
.form-group-floating textarea:not(:placeholder-shown)~label {
    top: 0;
    font-size: 12px;
    color: #4284d6;
    font-weight: 600;
}

/* Select Dropdown Styling */
.form-group-floating select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236c757d' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 50px;
    cursor: pointer;
}

.form-group-floating select option:first-child {
    color: #6c757d;
}

/* Input Focus Glow Effect */
.form-group-floating input:focus,
.form-group-floating select:focus,
.form-group-floating textarea:focus {
    transform: translateY(-2px);
}

/* Validation States */
.form-group-floating.has-error input,
.form-group-floating.has-error select,
.form-group-floating.has-error textarea {
    border-color: #dc3545;
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
}

.form-group-floating.has-error label {
    color: #dc3545;
}

.form-group-floating.has-success input,
.form-group-floating.has-success select,
.form-group-floating.has-success textarea {
    border-color: #28a745;
    box-shadow: 0 0 0 4px rgba(40, 167, 69, 0.1);
}

.form-group-floating.has-success label {
    color: #28a745;
}

/* Validation Icon */
.validation-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-group-floating.has-success .validation-icon,
.form-group-floating.has-error .validation-icon {
    opacity: 1;
}

/* Enhanced Submit Button - Small Size */
.contact-submit-btn {
    background: linear-gradient(135deg, #4284d6 0%, #2a5a9e 100%);
    color: #ffffff;
    padding: 12px 32px;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(66, 132, 214, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.contact-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(66, 132, 214, 0.4);
}

.contact-submit-btn:hover::before {
    left: 100%;
}

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

/* Loading State */
.contact-submit-btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

.contact-submit-btn.loading::after {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    margin-left: 10px;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Success Message */
.form-success-message {
    display: none;
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 1px solid #28a745;
    border-radius: 12px;
    padding: 20px 30px;
    text-align: center;
    animation: slideInUp 0.5s ease;
    transform: none !important;
}

@keyframes slideInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.form-success-message.show {
    display: block;
}

.form-success-message i {
    font-size: 48px;
    color: #28a745;
    margin-bottom: 15px;
    display: block;
}

.form-success-message h4 {
    color: #155724;
    font-size: 20px;
    margin-bottom: 8px;
}

.form-success-message p {
    color: #155724;
    font-size: 15px;
    margin: 0;
}

/* Error Message */
.form-error-message {
    display: none;
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border: 1px solid #dc3545;
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 20px;
    text-align: center;
}

.form-error-message.show {
    display: block;
    animation: shake 0.5s ease;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    20%,
    60% {
        transform: translateX(-10px);
    }

    40%,
    80% {
        transform: translateX(10px);
    }
}

/* Contact Info Cards */
.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    border: 1px solid rgba(66, 132, 214, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(25, 35, 36, 0.1);
    border-color: rgba(66, 132, 214, 0.2);
}

.contact-info-card .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4284d6 0%, #2a5a9e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #ffffff;
    font-size: 24px;
}

.contact-info-card h4 {
    font-size: 16px;
    color: #192324;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-info-card p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

/* Responsive Contact Form */
@media (max-width: 768px) {
    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-us-form-enhanced {
        padding: 35px 25px;
        border-radius: 20px;
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-submit-btn {
        width: 100%;
    }
}

/* -----------------------------------------------------------------
   Navbar Submenu Styles
   ----------------------------------------------------------------- */

/* Parent nav item with submenu */
.nav-item.has-submenu {
    position: relative;
}

/* Submenu icon */
.submenu-icon {
    font-size: 10px;
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.nav-item.has-submenu:hover .submenu-icon {
    transform: rotate(180deg);
}

/* Submenu container */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 12px 0;
    margin-top: 15px;
    box-shadow:
        0 10px 40px rgba(25, 35, 36, 0.15),
        0 0 0 1px rgba(66, 132, 214, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    list-style: none;
    z-index: 1000;
}

/* Show submenu on hover */
.nav-item.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Submenu items */
.submenu li {
    margin: 0;
    padding: 0;
}

.submenu li a {
    display: block;
    padding: 12px 24px;
    color: #192324;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.submenu li a:hover {
    background: rgba(66, 132, 214, 0.08);
    color: #4284d6;
    border-left-color: #4284d6;
    padding-left: 28px;
}

/* Last item - View All */
.submenu li:last-child a {
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(66, 132, 214, 0.15);
    color: #4284d6;
    font-weight: 600;
}

.submenu li:last-child a:hover {
    background: rgba(66, 132, 214, 0.12);
}

/* Submenu arrow */
.submenu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 30px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(255, 255, 255, 0.98);
}

/* Responsive submenu */
@media (max-width: 991px) {
    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(25, 35, 36, 0.05);
        margin-top: 0;
        border-radius: 0;
        display: none;
    }

    .nav-item.has-submenu.active .submenu {
        display: block;
    }

    .submenu::before {
        display: none;
    }

    .submenu li a {
        padding-left: 40px;
        color: #ffffff;
    }

    .submenu li a:hover {
        background: rgba(66, 132, 214, 0.2);
        color: #87CEEB;
        border-left-color: #87CEEB;
    }

    .submenu li:last-child a {
        border-top-color: rgba(255, 255, 255, 0.1);
        color: #87CEEB;
    }

    .submenu-icon {
        float: right;
        margin-top: 6px;
    }
}

/* Disable effects on touch devices */
@media (pointer: coarse) {
    .product-card::after {
        display: none;
    }
}

/* -----------------------------------------------------------------
   Footer & Contact Redesign Enhancements
   ----------------------------------------------------------------- */


/* Modern Footer Wavy Top - World Class Seamless Design */
.main-footer {
    position: relative;
    overflow: hidden;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center bottom !important;
    z-index: 10;
    padding-top: 150px !important;
    /* Elite breathing room for branding below the wave */

    /* The Mask makes the footer top wavy. Color is footer background itself. */
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V120H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='black'/%3E%3C/svg%3E"),
        linear-gradient(black, black);
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V120H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='black'/%3E%3C/svg%3E"),
        linear-gradient(black, black);

    -webkit-mask-size: 100% 120px, 100% 100%;
    mask-size: 100% 120px, 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: top, 0 119px;
    mask-position: top, 0 119px;
}

.main-footer::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(66, 132, 214, 0.05) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.footer-contact-item {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.footer-contact-item:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(66, 132, 214, 0.3) !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

.footer-links ul li {
    padding-left: 0 !important;
    transition: all 0.3s ease !important;
}

.footer-links ul li a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 10px;
    color: var(--accent-color);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.footer-links ul li:hover a {
    color: var(--accent-color) !important;
    transform: translateX(8px);
}

.footer-links ul li:hover a::before {
    opacity: 1;
    margin-right: 15px;
}

/* Contact Page Info Boxes Enhancement */
.contact-info-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(25, 35, 36, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    height: 100%;
    border: 1px solid rgba(66, 132, 214, 0.05);
}

.contact-info-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(25, 35, 36, 0.1);
    border-color: rgba(66, 132, 214, 0.2);
}

.contact-info-box .icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4284d6 0%, #2a5a9e 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #ffffff;
    font-size: 28px;
    box-shadow: 0 8px 20px rgba(66, 132, 214, 0.3);
    transition: all 0.3s ease;
}

.contact-info-box:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
}

.contact-info-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #192324;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info-content p {
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 5px;
    font-size: 15px;
}

/* Footer Copyright Enhancement */
.footer-copyright {
    background: rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

/* Responsive Tweak */
@media (max-width: 991px) {
    .contact-info-box {
        margin-bottom: 30px;
    }
}

/* -----------------------------------------------------------------
   Quality Standards & Advanced Features Redesign (Polywadding Theme)
   ----------------------------------------------------------------- */

/* 
   Theme: Precision & Purity
   Concept: Soft, lofty textures (wadding) + Clean, technical grids (manufacturing/standards)
*/

/* --- Quality Standards: Soft Glassmorphism --- */
.quality-standards-modern .standards-grid-full {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.quality-standards-modern .standard-item {
    background: rgba(255, 255, 255, 0.7);
    /* Light-Mode Glass fill */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(66, 132, 214, 0.2);
    border-radius: 20px;
    /* Soft, rounded corners like wadding rolls */
    padding: 30px;
    display: flex;
    align-items: flex-start;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Hover Effect: "Loft" / Lift */
.quality-standards-modern .standard-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(135, 206, 235, 0.3);
    /* Soft Sky Blue border on hover */
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(135, 206, 235, 0.1);
    /* Inner glow */
}

.quality-standards-modern .standard-icon {
    flex-shrink: 0;
    width: 74px;
    height: 74px;
    background: linear-gradient(135deg, rgba(66, 132, 214, 0.18), rgba(66, 132, 214, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    font-size: 30px;
    color: var(--accent-color);
    border: 1px solid rgba(66, 132, 214, 0.28);
    box-shadow: 0 10px 25px rgba(66, 132, 214, 0.12);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.quality-standards-modern .standard-item:hover .standard-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #4284d6, #2a5a9e);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(66, 132, 214, 0.3);
}

.quality-standards-modern .standard-content h4 {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.quality-standards-modern .standard-content p {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
}


/* --- Advanced Features: Technical Grid --- */
.advanced-features-modern .feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.advanced-features-modern .feature-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(66, 132, 214, 0.18);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.advanced-features-modern .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(66, 132, 214, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(66, 132, 214, 0.04) 1px, transparent 1px);
    background-size: 25px 25px;
    opacity: 0.2;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.advanced-features-modern .feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 45px rgba(25, 35, 36, 0.15);
    background: #ffffff;
}

.advanced-features-modern .feature-icon {
    font-size: 34px;
    color: var(--accent-color);
    margin: 0 auto 25px;
    height: 68px;
    width: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(66, 132, 214, 0.12);
    border-radius: 14px;
    border: 1px solid rgba(66, 132, 214, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.advanced-features-modern .feature-card:hover .feature-icon {
    background: var(--accent-color);
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(66, 132, 214, 0.3);
}

.advanced-features-modern h4 {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.advanced-features-modern p {
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .quality-standards-modern .standards-grid-full {
        grid-template-columns: 1fr;
    }

    .advanced-features-modern .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .advanced-features-modern .feature-grid {
        grid-template-columns: 1fr;
    }

    .quality-standards-modern .standard-item {
        /* Stack on mobile */
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .quality-standards-modern .standard-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

/* -----------------------------------------------------------------
   Our Clients Redesign (Industrial Trust)
   ----------------------------------------------------------------- */

/* 
   Theme: Global Partners
   Concept: Clean, authoritative, trust-focused.
   Effect: Grayscale -> Full Color on Hover (The "Life" Polywadding brings)
*/

.clients-modern {
    background: transparent !important;
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.clients-modern .section-title h2 span {
    color: #4284d6;
    /* Trust Blue */
}

/* --- Client Cards: Modern Grid --- */
.client-card-modern {
    background: #ffffff;
    border: 1px solid #e8ecef;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    margin-bottom: 30px;
    z-index: 1;
}

/* Hover: Lift & Shadow */
.client-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: rgba(66, 132, 214, 0.4);
    background: linear-gradient(135deg, #ffffff 0%, #f7faff 100%);
    z-index: 10;
}

/* Logo Styles: Grayscale to Color */
.client-card-modern .client-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.client-card-modern .client-logo img {
    max-height: 100%;
    width: auto;
    max-width: 140px;
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.client-card-modern:hover .client-logo img {
    transform: scale(1.1);
    filter: brightness(1.05);
}

.client-card-modern .client-name h4 {
    font-size: 18px;
    font-weight: 600;
    color: #192324;
    margin-bottom: 5px;
}

.client-card-modern .client-name .client-category {
    font-size: 13px;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* --- Expert Shine Animation --- */
.client-card-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.9) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: all 0.8s;
    pointer-events: none;
    z-index: 2;
}

.client-card-modern:hover::after {
    left: 150%;
    transition: all 0.85s cubic-bezier(0.4, 0, 0.2, 1);
}


/* --- Stats: Floating Modern --- */
.client-stats-section {
    margin-top: 60px;
}

.stat-modern {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid #e8ecef;
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.stat-modern .stat-icon {
    width: 66px;
    height: 66px;
    background: rgba(66, 132, 214, 0.04);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(66, 132, 214, 0.15);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.stat-modern .stat-icon i {
    font-size: 26px;
    background: linear-gradient(135deg, #4284d6 0%, #1e3c72 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(66, 132, 214, 0.2));
}

.stat-modern:hover .stat-icon {
    transform: scale(1.1) rotate(4deg);
    background: rgba(66, 132, 214, 0.08);
    border-color: rgba(66, 132, 214, 0.3);
    box-shadow: 0 10px 20px rgba(66, 132, 214, 0.1);
}

.stat-modern:hover .stat-icon i {
    transform: scale(1.1);
    transition: all 0.3s ease;
}



.stat-modern .stat-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: #192324;
    margin-bottom: 2px;
    line-height: 1;
}

.stat-modern .stat-content p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 991px) {
    .stat-modern {
        margin-bottom: 20px;
    }
}

/* =================================================================
   WORLD-CLASS SUSTAINABILITY PROCESS REDESIGN
   ================================================================= */

/* Section Background */
.sustainability-process-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, #1a2526 0%, #0f1718 100%);
}

/* Background Ambient Glow */
.sustainability-process-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(66, 132, 214, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.sustainability-process-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(135, 206, 235, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Process Container */
.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
    z-index: 1;
}

/* Central Connector Line */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(180deg,
            rgba(66, 132, 214, 0) 0%,
            rgba(66, 132, 214, 0.5) 15%,
            rgba(66, 132, 214, 0.5) 85%,
            rgba(66, 132, 214, 0) 100%);
    transform: translateX(-50%);
    z-index: 0;
}

/* Process Step Item */
.process-step {
    position: relative;
    margin-bottom: 80px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.process-step:last-child {
    margin-bottom: 0;
}

/* Alternating Layout */
.process-step:nth-child(odd) .process-card {
    margin-right: auto;
    margin-left: 0;
    transform: translateX(-50px);
    /* Initial offset for animation */
}

.process-step:nth-child(even) .process-card {
    margin-left: auto;
    margin-right: 0;
    transform: translateX(50px);
    /* Initial offset for animation */
}

.process-step:nth-child(odd) {
    padding-right: 50%;
}

.process-step:nth-child(even) {
    padding-left: 50%;
}

/* Connector Dot */
.process-step::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    background: #192324;
    border: 3px solid #4284d6;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    box-shadow: 0 0 0 5px rgba(66, 132, 214, 0.2);
    transition: all 0.3s ease;
}

.process-step:hover::after {
    background: #4284d6;
    box-shadow: 0 0 0 8px rgba(66, 132, 214, 0.3), 0 0 20px rgba(66, 132, 214, 0.6);
}

/* Glassmorphic Card */
.process-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    width: 90%;
    max-width: 450px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.process-card:hover {
    transform: translateY(-10px) scale(1.02) !important;
    /* Override initial transform */
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(66, 132, 214, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(66, 132, 214, 0.1);
}

/* Card Glow Effect */
.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(66, 132, 214, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-card:hover::before {
    opacity: 1;
}

/* Number Indicator */
.process-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    font-family: 'Outfit', sans-serif;
    /* Assuming font availability */
    pointer-events: none;
}

/* Icon Container */
.process-icon {
    width: 70px;
    height: 70px;
    background: rgba(66, 132, 214, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: #4284d6;
    border: 1px solid rgba(66, 132, 214, 0.2);
    transition: all 0.3s ease;
}

.process-card:hover .process-icon {
    background: linear-gradient(135deg, #4284d6 0%, #2a5a9e 100%);
    color: white;
    border-color: transparent;
    transform: rotateY(180deg);
}

.process-card:hover .process-icon i {
    transform: rotateY(-180deg);
    /* Counter-rotate icon */
    transition: transform 0.3s ease;
}

/* Content */
.process-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.process-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .process-timeline::before {
        left: 30px;
    }

    .process-step {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 0 0 80px !important;
        /* Override even/odd padding */
        margin-bottom: 60px;
    }

    .process-step:nth-child(odd) .process-card,
    .process-step:nth-child(even) .process-card {
        margin: 0;
        width: 100%;
        max-width: 100%;
        transform: none !important;
    }

    .process-step::after {
        left: 30px;
    }
}

/* =================================================================
   WORLD-CLASS INFRASTRUCTURE PAGE REDESIGN
   ================================================================= */

/* --- Hero Stats Section --- */
.infra-hero-stats {
    padding: 80px 0;
    background: transparent !important;
    position: relative;
    z-index: 1;
}

.infra-hero-stats::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(66, 132, 214, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.stat-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(66, 132, 214, 0.15);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(25, 35, 36, 0.05);
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    border-color: #4284d6;
}

.stat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #4284d6, transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-card:hover::after {
    transform: scaleX(1);
}

.stat-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, #4284d6 0%, #2a5a9e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    display: inline-block;
    filter: drop-shadow(0 4px 6px rgba(66, 132, 214, 0.2));
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-family: 'Outfit', sans-serif;
    line-height: 1;
}

.stat-number span {
    font-size: 1.5rem;
    color: #4284d6;
    font-weight: 600;
    margin-left: 5px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-color);
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.85;
}

/* Tech Showcase Grid */
.tech-showcase-section {
    padding: 100px 0;
    background: transparent !important;
    position: relative;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tech-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(66, 132, 214, 0.12);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 15px 40px rgba(25, 35, 36, 0.06);
}

.tech-card:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-12px);
    border-color: #4284d6;
    box-shadow: 0 25px 60px rgba(66, 132, 214, 0.15);
}

.tech-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.tech-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tech-card:hover .tech-image img {
    transform: scale(1.1);
}

.tech-content {
    padding: 30px;
}

.tech-content h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.tech-content p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.tech-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(66, 132, 214, 0.2);
    backdrop-filter: blur(5px);
    color: #4284d6;
    border: 1px solid rgba(66, 132, 214, 0.3);
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* -----------------------------------------------------------------
   Lab Excellence Section (Glassmorphism Featured)
   ----------------------------------------------------------------- */
.lab-excellence-section {
    padding: 100px 0;
    background: transparent !important;
    position: relative;
}

/* Removed dark overlay as we are using light honeycomb background */

.lab-glass-container {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(66, 132, 214, 0.15);
    border-radius: 40px;
    padding: 60px;
    position: relative;
    z-index: 2;
    box-shadow: 0 40px 80px rgba(25, 35, 36, 0.08);
    overflow: hidden;
}

.lab-glass-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #4284d6, #2a5a9e);
}

.lab-features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.lab-feature-item {
    text-align: center;
    padding: 35px 25px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(66, 132, 214, 0.1);
    box-shadow: 0 10px 30px rgba(25, 35, 36, 0.03);
}

.lab-feature-item:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: #4284d6;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(66, 132, 214, 0.15);
}

.lab-icon {
    font-size: 2.5rem;
    color: #4284d6;
    margin-bottom: 15px;
}

.lab-feature-item h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.lab-feature-item p {
    color: var(--text-color);
    font-size: 0.9rem;
    margin: 0;
}

/* -----------------------------------------------------------------
   Logistics Section
   ----------------------------------------------------------------- */
.logistics-section {
    background: transparent !important;
    padding: 100px 0;
    position: relative;
}

.logistics-content {
    padding-right: 40px;
}

.logistics-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(66, 132, 214, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(25, 35, 36, 0.05);
}

.logistics-card:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: #4284d6;
    transform: translateX(12px) translateY(-5px);
    box-shadow: 0 15px 40px rgba(66, 132, 214, 0.12);
}

.logistics-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4284d6 0%, #2a5a9e 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    margin-right: 20px;
    box-shadow: 0 5px 15px rgba(66, 132, 214, 0.3);
}

.logistics-text h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.logistics-text p {
    color: var(--text-color);
    font-size: 0.95rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .infra-hero-stats {
        padding: 60px 0;
    }

    .stat-number {
        font-size: 2.8rem;
    }

    .lab-glass-container {
        padding: 30px;
    }

    .logistics-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .stat-card {
        margin-bottom: 20px;
    }
}

/* =================================================================
   WORLD-CLASS CONTACT PAGE REDESIGN (LIGHT THEME)
   ================================================================= */

/* -----------------------------------------------------------------
   Contact Section Main Container
   ----------------------------------------------------------------- */
.contact-page-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: radial-gradient(circle at 30% 30%, #f8f9fa 0%, #e9ecef 100%);
}

.contact-page-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(66, 132, 214, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* -----------------------------------------------------------------
   Contact Details Feature Card (Left Side)
   ----------------------------------------------------------------- */
.contact-details-container {
    height: 100%;
    min-height: 600px;
    background-image: url('/images/contact-page-left.webp');
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.contact-details-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.contact-info-wrapper {
    position: relative;
    z-index: 2;
}

.contact-item {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4284d6;
    font-size: 1.2rem;
    margin-right: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.contact-item-text h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.contact-item-text p,
.contact-item-text a {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    margin: 0;
    text-decoration: none;
    transition: color 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.contact-item-text a:hover {
    color: #4284d6;
}

/* -----------------------------------------------------------------
   Right Side: Lite Glass Form
   ----------------------------------------------------------------- */
.glass-form-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.glass-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4284d6, #2a5a9e);
}

.glass-form-title {
    margin-bottom: 30px;
    color: #1a2526;
    font-size: 1.8rem;
    font-weight: 700;
}

/* Floating Input Group */
.floating-group {
    position: relative;
    margin-bottom: 25px;
}

.floating-control {
    width: 100%;
    background: #ffffff;
    border: 1px solid #ced4da;
    border-radius: 12px;
    padding: 15px 20px;
    color: #1a2526;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.floating-control:focus {
    border-color: #4284d6;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(66, 132, 214, 0.1);
}

.floating-label {
    position: absolute;
    left: 20px;
    top: 17px;
    pointer-events: none;
    color: #6c757d;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    background: transparent;
}

.floating-control:focus~.floating-label,
.floating-control:not(:placeholder-shown)~.floating-label {
    top: -10px;
    left: 15px;
    font-size: 0.8rem;
    color: #4284d6;
    background: #ffffff;
    padding: 0 5px;
    border-radius: 4px;
    font-weight: 600;
}

.floating-select {
    appearance: none;
    cursor: pointer;
    background-image: none;
    /* Removed default SVG here, relying on arrow icon or re-add simplified one */
}

.dropdown-arrow {
    position: absolute;
    right: 20px;
    top: 18px;
    color: #6c757d;
    pointer-events: none;
}

/* Premium Button - Optimized Small Size */
.btn-premium {
    width: auto;
    min-width: 200px;
    background: linear-gradient(135deg, #4284d6 0%, #2a5a9e 100%);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 8px 20px rgba(66, 132, 214, 0.2);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(66, 132, 214, 0.3);
}

/* -----------------------------------------------------------------
   Premium QR Section
   ----------------------------------------------------------------- */
.premium-qr-section {
    background: transparent;
    padding: 80px 0;
}

.qr-card-wrapper {
    max-width: 420px;
    margin: 0 auto;
}

.qr-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 40px;
    box-shadow: 0 30px 70px rgba(25, 35, 36, 0.1);
    border: 1px solid rgba(66, 132, 214, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.qr-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 90px rgba(25, 35, 36, 0.15);
}

.qr-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 10px;
}

.qr-header p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 30px;
}

.qr-icon-round {
    width: 60px;
    height: 60px;
    background: rgba(66, 132, 214, 0.08);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
}

.qr-frame {
    padding: 15px;
    background: #f8fafc;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: inline-block;
    margin-bottom: 30px;
}

.qr-main-img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 12px;
}

.btn-location-link {
    display: inline-flex;
    align-items: center;
    background: var(--accent-color);
    color: #fff;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-location-link:hover {
    background: #2a5a9e;
    transform: scale(1.02);
    color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-details-container {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .glass-form-card {
        padding: 30px;
    }
}

/* -----------------------------------------------------------------
   Hexagon Icon Styles (Why Choose Us)
   ----------------------------------------------------------------- */

.icon-box.hexagon-icon {
    width: 90px;
    height: 100px;
    background: #0b1c2c;
    /* Deep manufacturing blue base */
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    /* Removed overflow:hidden to allow pseudo-elements to work properly if needed, but clip-path handles shape */
}

/* Inner highlight effect imitating the thin line */
.icon-box.hexagon-icon::before {
    content: '';
    position: absolute;
    inset: 2px;
    background: #0b1c2c;
    /* Inner dark background */
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: 1;
}

/* Gradient Border (the background behind the inner dark part) */
.icon-box.hexagon-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #4284d6 0%, #2a5a9e 100%);
    z-index: 0;
}

.icon-box.hexagon-icon i,
.icon-box.hexagon-icon svg {
    position: relative;
    z-index: 2;
    color: #ffffff;
    font-size: 28px;
    /* Slightly smaller for elegance */
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 5px rgba(66, 132, 214, 0.5));
    /* Glow effect */
}

/*.why-choose-item:hover .icon-box.hexagon-icon {
    transform: translateY(-5px) scale(1.05);
}

.why-choose-item:hover .icon-box.hexagon-icon i,
.why-choose-item:hover .icon-box.hexagon-icon svg {
    color: #87CEEB;
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(135, 206, 235, 0.8));
}*/

/* -----------------------------------------------------------------
   Hexagon Rotation Fix (Flat-Top Style)
   ----------------------------------------------------------------- */

/* Rotate the hexagon container 90 degrees to make it flat-topped */
.icon-box.hexagon-icon {
    transform: rotate(90deg);
}

/* Counter-rotate the content (icon) so it stays upright */
.icon-box.hexagon-icon i,
.icon-box.hexagon-icon svg {
    transform: rotate(-90deg);
}

/* Maintain hover effects with the rotation */
/*.why-choose-item:hover .icon-box.hexagon-icon {
    transform: translateY(-5px) scale(1.05) rotate(90deg);
}

.why-choose-item:hover .icon-box.hexagon-icon i,
.why-choose-item:hover .icon-box.hexagon-icon svg {
    transform: scale(1.1) rotate(-90deg);
}*/


/* =================================================================
   Expert Floating Buttons — WhatsApp (Left) & Back to Top (Right)
   ================================================================= */

/* --- WhatsApp Floating Button (Bottom Left) --- */
.whatsapp-btn {
    position: fixed !important;
    bottom: 100px;
    right: 28px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff !important;
    font-size: 28px;
    text-decoration: none !important;
    z-index: 9990;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.whatsapp-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
    color: #fff !important;
}

/* WhatsApp Pulse Ring */
.whatsapp-btn .btn-ripple {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25D366;
    z-index: -1;
    animation: wa-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    pointer-events: none;
}

@keyframes wa-pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    70% {
        transform: scale(1.5);
        opacity: 0;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Tooltip */
.whatsapp-btn .btn-tooltip {
    position: absolute;
    right: 72px;
    bottom: 50%;
    transform: translateY(50%) translateX(10px);
    background: rgba(11, 28, 44, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-family: var(--base-font, 'Outfit', sans-serif);
}

.whatsapp-btn .btn-tooltip::before {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 5px 0 5px 5px;
    border-style: solid;
    border-color: transparent transparent transparent rgba(11, 28, 44, 0.92);
}

.whatsapp-btn:hover .btn-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(50%) translateX(0);
}

/* --- LinkedIn Floating Button (Bottom Right - Stacked) --- */
.linkedin-btn {
    position: fixed !important;
    bottom: 170px;
    /* Stacked above WhatsApp (100px + 70px) */
    right: 28px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0077B5 0%, #004182 100%);
    color: #fff !important;
    font-size: 24px;
    text-decoration: none !important;
    z-index: 9990;
    box-shadow: 0 6px 20px rgba(0, 119, 181, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.linkedin-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 30px rgba(0, 119, 181, 0.5);
    color: #fff !important;
}

.linkedin-btn .btn-ripple {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #0077B5;
    z-index: -1;
    animation: li-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    pointer-events: none;
}

@keyframes li-pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    70% {
        transform: scale(1.5);
        opacity: 0;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.linkedin-btn .btn-tooltip {
    position: absolute;
    right: 72px;
    bottom: 50%;
    transform: translateY(50%) translateX(10px);
    background: rgba(11, 28, 44, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.linkedin-btn .btn-tooltip::before {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 5px 0 5px 5px;
    border-style: solid;
    border-color: transparent transparent transparent rgba(11, 28, 44, 0.92);
}

.linkedin-btn:hover .btn-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(50%) translateX(0);
}


/* --- Back to Top Button (Bottom Right) --- */
.back-to-top-btn {
    position: fixed !important;
    bottom: 30px;
    right: 28px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4284d6 0%, #1a3f6f 100%);
    color: #fff !important;
    font-size: 18px;
    border: none;
    z-index: 9990;
    box-shadow: 0 6px 20px rgba(66, 132, 214, 0.35);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.back-to-top-btn.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top-btn:hover {
    transform: translateY(-5px) scale(1.1) !important;
    box-shadow: 0 12px 30px rgba(66, 132, 214, 0.5);
    color: #fff !important;
}

/* Arrow bounce on hover */
.back-to-top-btn:hover i {
    animation: bounce-arrow 0.6s ease infinite;
}

@keyframes bounce-arrow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}


/* --- Wrapper: Remove default flex layout so buttons are positioned independently --- */
.expert-floating-actions {
    position: static !important;
    display: contents;
    /* Allow children to be position:fixed independently */
}


/* --- Mobile Responsive --- */
@media (max-width: 768px) {
    .linkedin-btn {
        bottom: 145px;
        right: 18px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .linkedin-btn .btn-tooltip {
        display: none;
    }

    .whatsapp-btn {
        bottom: 85px;
        right: 18px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .whatsapp-btn .btn-tooltip {
        display: none;
    }

    .back-to-top-btn {
        bottom: 20px;
        right: 18px;
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
}

/* =================================================================
   WORLD-CLASS TECHNOLOGY PILLAR SHOWCASE
   ================================================================= */
.pillar-showcase {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.pillar-group-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin-top: 60px;
}

/* Base Pillar Styling */
.technology-pillar {
    flex: 1 1 350px;
    max-width: 450px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    padding: 40px;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    position: relative;
}

.technology-pillar::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #4284d622, transparent, #4284d622);
    border-radius: 32px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s;
}

.technology-pillar:hover {
    transform: translateY(-15px) scale(1.02);
    background: #ffffff;
    box-shadow: 0 30px 70px rgba(66, 132, 214, 0.15);
}

.technology-pillar:hover::before {
    opacity: 1;
}

/* Pillar Header */
.pillar-header {
    margin-bottom: 35px;
    border-bottom: 2px solid #f0f4f8;
    padding-bottom: 25px;
    text-align: center;
}

.parent-label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #4284d6;
    display: block;
    margin-bottom: 15px;
}

.pillar-header h2 {
    font-size: 28px;
    color: #1a2b4e;
    margin: 0;
    line-height: 1.2;
}

/* Variant List (Children) */
.variant-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.vlap-pillar .variant-list {
    grid-template-columns: 1fr;
}

.variant-card {
    background: #f8fafc;
    border: 1px solid #edf2f7;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    transition: all 0.4s;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.variant-card:hover {
    background: #4284d6;
    border-color: #4284d6;
    transform: translateY(-5px);
}

.variant-card i {
    font-size: 22px;
    margin-bottom: 12px;
    color: #4284d6;
    transition: color 0.3s;
}

.variant-card h4 {
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    color: #1a2b4e;
    transition: color 0.3s;
}

.variant-card:hover h4,
.variant-card:hover i {
    color: #ffffff;
}

/* Badge for "Common Pillar" */
.dual-pillar-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #4284d6, #233f88);
    color: white;
    font-size: 10px;
    padding: 5px 12px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(66, 132, 214, 0.3);
}

/* Spec Box Hidden on Pillar but visible on modal or link */
.spec-tag {
    display: none;
}

/* Aesthetic Dividers for World-Class Look */
.pillar-decoration {
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 80px;
    color: rgba(66, 132, 214, 0.04);
    pointer-events: none;
}

@media (max-width: 991px) {
    .pillar-group-container {
        gap: 30px;
    }

    .variant-list {
        grid-template-columns: 1fr;
    }
}

/* Variant Swatch Images */
.variant-swatch {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 12px;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    background: #eef2f7;
    transition: transform 0.4s, border-color 0.4s;
}

.variant-card:hover .variant-swatch {
    transform: scale(1.1) rotate(5deg);
    border-color: rgba(66, 132, 214, 0.4);
}

.technology-pillar {
    z-index: 1;
}

.technology-pillar::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 150px;
    height: 150px;
    background-image: url(/images/white-logo.png);
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.03;
    pointer-events: none;
    z-index: -1;
}

/* =================================================================
   CLIENT-SPECIFIED PREMIUM HUB (IMAGE HYBRID)
   ================================================================= */
.premium-hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.hub-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f0f4f8;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.hub-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(66, 132, 214, 0.12);
    border-color: #4284d633;
}

.hub-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.hub-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.hub-card:hover .hub-card-image img {
    transform: scale(1.1);
}

.hub-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ffffff;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1a2b4e;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hub-card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.hub-card-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a2b4e;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hub-card-content p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 25px;
    line-height: 1.6;
}

.hub-card-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.hub-spec-pill {
    background: #f1f7ff;
    color: #4284d6;
    font-size: 11px;
    font-weight: 700;
    padding: 8px 15px;
    border-radius: 8px;
    text-transform: uppercase;
    border: 1px solid #e1eeff;
}

.hub-btn {
    margin-top: auto;
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: transparent;
    color: #4284d6;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    text-align: center;
}

.hub-card:hover .hub-btn {
    background: #4284d6;
    color: #ffffff;
    border-color: #4284d6;
}

@media (max-width: 768px) {
    .premium-hub-grid {
        grid-template-columns: 1fr;
    }
}

/* =================================================================
   TECHNICAL SPECIFICATION MODAL (PREMIUM HUD)
   ================================================================= */
.spec-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 20, 35, 0.8);
    backdrop-filter: blur(15px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s;
}

.spec-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.spec-modal-container {
    background: #ffffff;
    width: 100%;
    max-width: 1000px;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.3);
    display: flex;
    transform: translateY(30px);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.spec-modal-overlay.active .spec-modal-container {
    transform: translateY(0);
}

.spec-modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.spec-modal-close:hover {
    background: #4284d6;
    color: #ffffff;
    transform: rotate(90deg);
}

.spec-modal-image-pane {
    width: 45%;
    background: #f8fafc;
    position: relative;
}

.spec-modal-image-pane img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spec-modal-details-pane {
    width: 55%;
    padding: 60px;
    display: flex;
    flex-direction: column;
}

.spec-category-badge {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #4284d6;
    margin-bottom: 10px;
}

.spec-modal-details-pane h2 {
    font-size: 32px;
    color: #1a2b4e;
    margin-bottom: 20px;
}

.spec-description {
    color: #64748b;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.spec-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.spec-pill-item {
    border-bottom: 1px solid #f0f4f8;
    padding-bottom: 15px;
}

.spec-pill-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 5px;
    display: block;
}

.spec-pill-value {
    font-size: 18px;
    font-weight: 700;
    color: #1a2b4e;
}

.cta-group {
    margin-top: auto;
    display: flex;
    gap: 15px;
}

@media (max-width: 991px) {
    .spec-modal-container {
        flex-direction: column;
        max-height: 90vh;
        overflow-y: auto;
    }

    .spec-modal-image-pane,
    .spec-modal-details-pane {
        width: 100%;
    }

    .spec-modal-details-pane {
        padding: 40px;
    }
}

/* Consistent Modal Buttons */
.btn-modal-secondary {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    background: transparent;
    border: 1.5px solid #e2e8f0;
    color: #64748b !important;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 12px;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-modal-secondary:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #1a2b4e !important;
    transform: translateY(-2px);
}

/* =================================================================
   TECHNICAL CAPABILITY ICONS (IMAGE MATCH)
   ================================================================= */
.capability-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #f0f4f8;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    height: 100%;
}

.capability-icon {
    width: 60px;
    height: 60px;
    background: #f1f7ff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.capability-icon i {
    font-size: 24px;
    color: #4284d6;
}

.capability-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a2b4e;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.capability-content p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    text-transform: uppercase;
}

/* =================================================================
   GLASSMORPHISM & HONEYCOMB REVEAL (PREMIUM HUB)
   ================================================================= */
.products-section,
.production-capabilities,
.pillar-showcase {
    background-color: transparent !important;
    position: relative;
    z-index: 5;
    margin-bottom: 0 !important;
}

.capability-item {
    background: rgba(255, 255, 255, 0.45) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.capability-item:hover {
    background: rgba(255, 255, 255, 0.6) !important;
    transform: translateY(-5px);
    border-color: #4284d6 !important;
    box-shadow: 0 20px 45px rgba(66, 132, 214, 0.1);
}

.capability-icon {
    background: rgba(66, 132, 214, 0.08) !important;
}

/* Ensure pillar cards also show some honeycomb subtle bleed */
.technology-pillar {
    background: rgba(255, 255, 256, 0.4) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 25) !important;
}

/* Remove any blocking backgrounds from layout containers */
.main-wrapper,
#all-products {
    background: transparent !important;
}

/* =================================================================
   TECHNICAL BORDER REFINEMENT (GRAY SCALED)
   ================================================================= */
.capability-item {
    border: 1px solid rgba(226, 232, 240, 0.8) !important;
}

.technology-pillar {
    border: 1px solid rgba(226, 232, 240, 0.6) !important;
}

.variant-card {
    border: 1px solid rgba(226, 232, 240, 0.5) !important;
}

.capability-item:hover {
    border-color: #cbd5e1 !important;
    background: rgba(255, 255, 255, 0.55) !important;
}

/* =================================================================
   ULTRA-WIDE HEADER NAVIGATION
   ================================================================= */
header .container-fluid {
    padding-left: 5% !important;
    padding-right: 5% !important;
    max-width: 100% !important;
    transition: all 0.3s ease;
}

.navbar-brand img {
    width: 210px !important;
    /* Premium prominent size */
    max-height: 85px !important;
    height: auto !important;
    flex-shrink: 0 !important;
    transition: all 0.3s ease;
}

/* Ensure sticky header also keeps a prominent logo */
header.main-header .header-sticky.active .navbar-brand img {
    width: 210px !important;
    max-height: 60px !important;
}

/* Response Optimization for Medium-Large Screens (Laptops, 1366px-1440px) */
@media (max-width: 1440px) {
    .navbar-brand img {
        width: 230px !important;
    }

    header.main-header .header-sticky.active .navbar-brand img {
        width: 190px !important;
    }

    header .container-fluid {
        padding-left: 3% !important;
        padding-right: 3% !important;
    }
}

/* Full Correction for 1024px Screens (Tablets / Small Laptops) 
   Prevents "tiny" logo look by avoiding flex-squeeze and tightening menu gaps. */
@media (max-width: 1200px) {
    .navbar-brand img {
        width: 200px !important;
        max-height: 55px !important;
    }

    header.main-header .header-sticky.active .navbar-brand img {
        width: 170px !important;
        max-height: 50px !important;
    }

    .main-menu .navbar-nav {
        gap: 8px !important;
    }

    .main-menu .nav-link {
        font-size: 14px !important;
        padding: 5px 8px !important;
    }

    .main-menu .nav-item.has-submenu .nav-link {
        gap: 8px !important;
        /* Tighten arrow spacing */
    }

    header .container-fluid {
        padding-left: 15px !important;
        /* Maximize available space */
        padding-right: 15px !important;
    }

    .navbar-brand {
        padding: 5px 8px !important;
    }
}

@media (max-width: 1024px) {
    .main-menu .navbar-nav {
        gap: 4px !important;
        /* Ultra-tight to keep desktop menu readable on iPad landscape */
    }

    .main-menu .nav-link {
        font-size: 13.5px !important;
        padding: 5px 5px !important;
    }

    .header-btn {
        margin-left: 10px;
    }

    .header-btn a {
        padding: 10px 15px !important;
        /* Slightly smaller button */
        font-size: 12px !important;
    }
}

.main-menu .navbar-nav {
    gap: 15px;
    /* Add breathing room between items */
}

.main-menu .nav-link {
    font-size: 15px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px;
    padding: 10px 15px !important;
}

/* Ensure the button stays right-aligned in the wide layout */
.navbar-collapse {
    justify-content: space-between;
}

.nav-menu-wrapper {
    margin-left: auto;
    margin-right: auto;
}

.header-btn {
    margin-left: 20px;
}

/* -----------------------------------------------------------------
   Homepage Hero Slider Overrides
   ----------------------------------------------------------------- */
.hero-content {
    position: relative;
    top: -10px;
    /* Push slider content 100px up as requested */
    transition: top 0.4s ease;
}

/* Maintain responsive balance */
@media (max-width: 991px) {
    .hero-content {
        top: -60px;
    }
}

@media (max-width: 767px) {
    .hero-content {
        top: -40px;
    }
}

/* -----------------------------------------------------------------
   About Icons Blue Theme
   ----------------------------------------------------------------- */
.about-facility-item .icon-box,
.about-us-contact-list .icon-box {
    background-color: #ebf5ff !important;
    border: 1px solid rgba(66, 132, 214, 0.1);
    transition: all 0.4s ease-in-out;
    position: relative;
    overflow: hidden;
}

.about-facility-item .icon-box i,
.about-us-contact-list .icon-box i {
    position: relative;
    z-index: 2;
    font-size: 24px;
    color: #4284d6 !important;
    transition: all 0.4s ease-in-out;
}

/* Hover States */
.about-facility-item:hover .icon-box,
.about-us-contact-list .about-contact-item:hover .icon-box {
    background-color: #4284d6 !important;
    border-color: #4284d6;
}

.about-facility-item:hover .icon-box i,
.about-us-contact-list .about-contact-item:hover .icon-box i {
    color: #ffffff !important;
}

/* Ensure hexagons on about page are also blue-consistent */
.hex .tekst i {
    color: #4284d6;
    transition: all 0.4s ease-in-out;
}

.hex:hover .tekst i {
    color: #ffffff;
}

/* -----------------------------------------------------------------
   Product Application Spectrum (Ref: SHINIH)
   ----------------------------------------------------------------- */
.application-spectrum {
    margin: 60px auto 40px;
    padding: 30px 15px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.5);
    max-width: 1250px;
}

.spectrum-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.spectrum-item {
    padding: 0 15px;
    text-align: center;
    flex: 1;
    min-width: 130px;
}

.spectrum-icon {
    font-size: 42px;
    color: #4284d6;
    /* Standard Manufacturing Blue */
    margin-bottom: 12px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.spectrum-item:hover .spectrum-icon {
    transform: translateY(-5px);
}

.spectrum-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #64748b;
    letter-spacing: 1px;
    line-height: 1.4;
}

.spectrum-divider {
    width: 1px;
    height: 60px;
    background: #e2e8f0;
    margin: 0 10px;
}

.eco-point .spectrum-icon {
    /* Slightly different color for ecofriendly if desired, but consistent orange is also clean */
    color: #4284d6;
}

@media (max-width: 991px) {
    .spectrum-item {
        padding: 20px;
    }

    .spectrum-divider {
        display: none;
    }
}

@media (max-width: 575px) {
    .spectrum-grid {
        flex-direction: column;
    }

    .spectrum-item {
        width: 100%;
        border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    }

    .spectrum-item:last-child {
        border-bottom: none;
    }
}

/* -----------------------------------------------------------------
   Infrastructure Value Strip (Image Match)
   ----------------------------------------------------------------- */
.infra-values-bar {
    position: relative;
    padding: 80px 0;
    background-color: transparent !important;
    border-top: 1px solid rgba(226, 232, 240, 0.5);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.infra-values-bar .container {
    position: relative;
}

.infra-value-card {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 15px;
}

.infra-value-icon {
    width: 68px;
    height: 68px;
    background: #ebf5ff;
    /* Technical soft-blue */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.infra-value-card:hover .infra-value-icon {
    transform: scale(1.1);
    background: #d1e9ff;
}

.infra-value-icon i {
    font-size: 26px;
    color: #4284d6;
    /* Prominent Manufacturing Blue */
}

.infra-value-info h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1a2b4e;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.infra-value-info p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
    max-width: 90%;
}

@media (max-width: 991px) {
    .infra-value-card {
        margin-bottom: 40px;
    }

    .infra-values-bar {
        padding: 60px 0 20px;
    }
}

/* --- Super Parent Category Switcher --- */
.product-category-switcher {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.category-btn {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* Smoother, non-bouncy easing */
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.category-btn i {
    font-size: 18px;
    color: #94a3b8;
    transition: color 0.4s ease;
}

.category-btn.active {
    background: var(--accent-color);
    color: #ffffff;
    border-color: var(--accent-color);
    box-shadow: 0 10px 25px rgba(66, 132, 214, 0.25);
    transform: translateY(-4px);
}

.category-btn.active i {
    color: #ffffff;
}

.category-btn:hover:not(.active) {
    background: #ffffff;
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* 
   SUPER PARENT CONTENT SWAP 
   Eliminating "Layout Jump" by using a soft opacity fade 
   and a min-height to steady the page structure.
*/
.super-category-content {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.super-category-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInTab 0.6s forwards;
}

@keyframes fadeInTab {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stabilizer to prevent footer jumping */
.products-section .container {
    min-height: 800px;
}

@media (max-width: 991px) {
    .products-section .container {
        min-height: 600px;
    }
}

/* Single Pillar Layout Adjustments */
.pillar-group-container.single-pillar {
    display: flex;
    justify-content: center;
}

.pillar-group-container.single-pillar .technology-pillar {
    max-width: 1000px;
    width: 100%;
}

.pillar-group-container.single-pillar .variant-list {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
    .pillar-group-container.single-pillar .variant-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .product-category-switcher {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .category-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .pillar-group-container.single-pillar .variant-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* -----------------------------------------------------------------
   Infrastructure Intro Redesign
   ----------------------------------------------------------------- */
.infrastructure-intro-section {
    padding: 120px 0 80px;
    background: #f9f6f040;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.infrastructure-intro-header {
    margin-bottom: 50px;
    text-align: center;
}

.infrastructure-intro-header .tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #4284d6;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.infrastructure-intro-header .tagline::before,
.infrastructure-intro-header .tagline::after {
    content: '';
    width: 30px;
    height: 1px;
    background: #4284d6;
    opacity: 0.5;
}

.infrastructure-intro-header h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 64px;
    font-weight: 500;
    color: #192324;
    line-height: 1.1;
    margin: 0;
}

.infrastructure-intro-header h2 span {
    color: #4284d6;
    font-style: italic;
    font-weight: 600;
}

.infrastructure-content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.infrastructure-content-wrapper .lead-paragraph {
    font-size: 1.35rem;
    line-height: 1.7;
    color: #1e293b;
    margin-bottom: 35px;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.infrastructure-content-wrapper .lead-paragraph strong {
    color: #1a4aa1;
    font-weight: 700;
}

.infrastructure-content-wrapper .detail-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 60px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.premium-closing-quote {
    position: relative;
    padding: 60px 40px;
    background: #ffffff;
    border-radius: 30px;
    box-shadow:
        0 20px 50px rgba(66, 132, 214, 0.08),
        0 0 0 1px rgba(66, 132, 214, 0.05);
    transition: transform 0.3s ease;
}

.premium-closing-quote:hover {
    transform: translateY(-5px);
}

.premium-closing-quote::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    left: 40px;
    font-size: 40px;
    color: rgba(66, 132, 214, 0.1);
}

.premium-closing-quote p {
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    font-style: italic;
    font-weight: 500;
    line-height: 1.4;
    color: #1e293b;
    margin: 0;
}

.premium-closing-quote p strong {
    color: #4284d6;
    font-weight: 700;
    font-style: normal;
}

/* Background Hex Pattern for Intro */
.infrastructure-intro-section .hex-bg {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 0L93.3 25V75L50 100L6.7 75V25L50 0Z' fill='none' stroke='%234284d6' stroke-width='0.5' opacity='0.05'/%3E%3C/svg%3E");
    background-size: 80px 80px;
    z-index: -1;
    pointer-events: none;
}

@media (max-width: 768px) {
    .infrastructure-intro-section {
        padding: 80px 0 60px;
    }

    .infrastructure-intro-header h2 {
        font-size: 42px;
    }

    .infrastructure-content-wrapper .lead-paragraph {
        font-size: 1.15rem;
    }

    .premium-closing-quote {
        padding: 40px 25px;
    }

    .premium-closing-quote p {
        font-size: 22px;
    }
}

/* -----------------------------------------------------------------
   Subtle Honeycomb Background for Footer Contact Band
   ----------------------------------------------------------------- */
.footer-contact-band {
    position: relative;
    overflow: hidden !important;
    z-index: 1;
}

.footer-contact-band::before {
    content: '';
    position: absolute;
    inset: 0;
    /* Ultra-subtle Hexagons at 3% opacity */
    background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M60 0L103.3 25V75L60 100L16.7 75V25L60 0Z' fill='none' stroke='%23ffffff' stroke-width='0.5' opacity='0.03'/%3E%3C/svg%3E");
    background-size: 80px 80px;
    z-index: -1;
    pointer-events: none;
}

.footer-contact-item .icon-box::after {
    content: '';
    position: absolute;
    inset: -10px;
    background: var(--accent-color);
    filter: blur(20px);
    opacity: 0.1;
    z-index: -1;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-contact-item:hover .icon-box::after {
    opacity: 0.25;
    filter: blur(25px);
}

/* Extended Honeycomb for main footer */
.main-footer {
    position: relative;
    z-index: 1;
}

.main-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    /* Combine original gradient overlay with very large, faint hexes */
    background-image:
        url("data:image/svg+xml,%3Csvg width='200' height='200' viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M100 0L173.2 50V150L100 200L26.8 150V50L100 0Z' fill='none' stroke='%23ffffff' stroke-width='0.5' opacity='0.02'/%3E%3C/svg%3E"),
        linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.9) 100%);
    background-size: 150px 150px, auto;
    background-repeat: repeat, no-repeat;
    z-index: 1;
    /* Above the background image, below the content */
    pointer-events: none;
}