@media (min-width: 768px) {
    section {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }
}

.bg-holder {
    background-position: center !important;
    background-size: auto !important;
}

.wht-clr{
    color : #fff !important;
}

/* Enhanced Thumbnail Gallery - Horizontal Carousel */
.thumbnail-gallery-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 15px;
}

.thumbnail-scroller {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 10px;
    padding: 5px 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    position: relative;
}

.thumbnail-scroller::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* Thumbnail Items */
.thumbnail-item {
    transition: all 0.3s ease;
    border: 2px solid #e9ecef !important;
    height: 120px;
    width: 120px;
    min-width: 120px;
    max-width: 120px;
    min-height: 120px;
    max-height: 120px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #ffffff;
    cursor: pointer;
    position: relative;
    border-radius: 8px;
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
    transition: transform 0.3s ease;
}

.thumbnail-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    border-color: #0d6efd;
}

.thumbnail-item:hover img {
    transform: scale(1.05);
}

.thumbnail-item.active {
    border: 3px solid #0d6efd !important;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.2), 0 8px 25px rgba(13, 110, 253, 0.15);
    transform: translateY(-1px);
}

.thumbnail-item.active::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    background: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10px;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Navigation Arrows for Thumbnail Gallery */
.thumbnail-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: #6c757d;
    border: none;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.thumbnail-nav-arrow:hover {
    background: #495057;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.thumbnail-nav-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.thumbnail-nav-arrow.prev {
    left: 5px;
}

.thumbnail-nav-arrow.next {
    right: 5px;
}

.thumbnail-nav-arrow i {
    font-size: 14px;
    font-weight: bold;
}

.thumbnail-nav-arrow:hover i {
    transform: scale(1.1);
}

/* Scroll Buttons */
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: #6c757d;
    border: none;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.scroll-btn:hover {
    background: #495057;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.scroll-btn-left {
    left: 5px;
}

.scroll-btn-right {
    right: 5px;
}

.scroll-btn i {
    font-size: 14px;
    font-weight: bold;
}

.scroll-btn:hover i {
    transform: scale(1.1);
}

/* Main Image Container */
.main-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.main-image-container .border.p-3.bg-light {
    border-radius: 8px;
    overflow: hidden;
}

.main-image-container img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.main-image-container:hover img {
    transform: scale(1.02);
}

/* Enhanced Product Gallery Styles */
.product-gallery {
    position: relative;
}

.product-gallery .thumbnail-item {
    transition: all 0.3s ease;
    border: 2px solid #e9ecef !important;
    height: 120px;
    width: 120px;
    min-width: 120px;
    max-width: 120px;
    min-height: 120px;
    max-height: 120px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #ffffff;
    cursor: pointer;
    position: relative;
}

.product-gallery .thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
    transition: transform 0.3s ease;
}

.product-gallery .thumbnail-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    border-color: #0d6efd;
}

.product-gallery .thumbnail-item:hover img {
    transform: scale(1.05);
}

.product-gallery .thumbnail-item.active {
    border: 3px solid #0d6efd !important;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.2), 0 8px 25px rgba(13, 110, 253, 0.15);
    transform: translateY(-1px);
}

.product-gallery .thumbnail-item.active::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    background: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10px;
    font-weight: bold;
}

.product-gallery .thumbnail-item.active::after {
    content: '✓';
}

/* Scroll Navigation Buttons */
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #dee2e6;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.scroll-btn:hover {
    background: #fff;
    border-color: #0d6efd;
    color: #0d6efd;
    transform: translateY(-50%) scale(1.1);
}

.scroll-btn-left {
    left: -15px;
}

.scroll-btn-right {
    right: -15px;
}

.scroll-btn i {
    font-size: 14px;
    color: #6c757d;
}

.scroll-btn:hover i {
    color: #0d6efd;
}

/* Enhanced Main Image Container */
.main-image-container {
    position: relative;
    overflow: hidden;
}

.main-image-container .border.p-3.bg-light {
    background: #ffffff !important;
    border: 2px solid #e9ecef !important;
    padding: 1.5rem !important;
    position: relative;
    overflow: hidden;
}

.main-image-container img {
    transition: all 0.3s ease;
    cursor: zoom-in;
}

.main-image-container:hover img {
    transform: scale(1.02);
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    padding-left: 0;
    position: relative;
    line-height: 1.6;
    list-style-type: none;
}

.feature-list li::before {
    display: none;
}

.certification-badges img {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.ce-mark {
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.action-buttons .btn {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.action-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.card-img-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px 8px 0 0;
}

.card:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-gallery .thumbnail-item {
        height: 100px;
        width: 100px;
        min-width: 100px;
        max-width: 100px;
        min-height: 100px;
        max-height: 100px;
    }
    
    .action-buttons .btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .feature-list li {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
}

/* Loading animation for images */
.img-fluid {
    opacity: 0;
    animation: fadeIn 0.5s ease-in forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Breadcrumb styling enhancement */
.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.7);
}

.breadcrumb-item.active {
    color: #fff !important;
}

/* Product page enhancements */
.applications-section .badge {
    font-size: 0.85rem;
    padding: 8px 12px;
    border-radius: 20px;
    font-weight: 500;
}

.spec-card {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef !important;
}

.spec-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-color: #0d6efd !important;
}

.spec-card i {
    font-size: 1.1rem;
}

.specification-cards .text-muted {
    font-size: 0.95rem;
    color: #6c757d !important;
}

.applications-section .badge.bg-light {
    background-color: #f8f9fa !important;
    color: #495057 !important;
    border: 1px solid #dee2e6 !important;
}

.applications-section .badge.bg-light:hover {
    background-color: #e9ecef !important;
    transform: translateY(-1px);
    transition: all 0.2s ease;
}

/* Enhanced Product Gallery Navigation Arrows and Zoom */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.nav-arrow:hover {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 100%);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.4);
}

.nav-arrow-left {
    left: 15px;
}

.nav-arrow-right {
    right: 15px;
}

.zoom-indicator {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.zoom-indicator:hover {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 100%);
    transform: scale(1.1);
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.4);
}

/* Zoom functionality styles */
.zoomable-image {
    transition: transform 0.3s ease;
    cursor: zoom-in;
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Pan and Zoom Container */
.zoom-container {
    position: relative;
    overflow: hidden;
    cursor: grab;
    width: 100%;
    height: auto;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.zoom-container.zoomed {
    cursor: grabbing;
}

.zoom-container.zoomed img {
    cursor: grabbing;
    transition: none;
}



/* Responsive adjustments for navigation arrows */
@media (max-width: 768px) {
    .nav-arrow {
        width: 35px;
        height: 35px;
    }
    
    .nav-arrow-left {
        left: 5px;
    }
    
    .nav-arrow-right {
        right: 5px;
    }
}

/* Enquiry Modal Styling */
#enquiryModal .modal-content {
    border: none;
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

#enquiryModal .modal-header {
    background: transparent;
    color: white;
    border-bottom: none;
    padding: 1.5rem;
}

#enquiryModal .modal-title {
    font-weight: 600;
    font-size: 1.25rem;
}

#enquiryModal .btn-close {
    filter: none;
    opacity: 1;
}

#enquiryModal .btn-close:hover {
    opacity: 1;
}

#enquiryModal .modal-body {
    padding: 2rem;
}

#enquiryModal .form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

#enquiryModal .form-control,
#enquiryModal .form-select {
    border: 2px solid #e9ecef;
    border-radius: 0;
    padding: 0.75rem;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

#enquiryModal .form-control:focus,
#enquiryModal .form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
    background-color: white;
}

#enquiryModal .form-control::placeholder {
    color: #6c757d;
    opacity: 0.7;
}

#enquiryModal .modal-footer {
    border-top: 1px solid #e9ecef;
    padding: 1.5rem 2rem;
    background-color: #f8f9fa;
}

#enquiryModal .btn {
    border-radius: 0;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

#enquiryModal .btn-primary {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

#enquiryModal .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
}

#enquiryModal .btn-secondary {
    background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

#enquiryModal .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 117, 125, 0.4);
}

/* Form validation styling */
#enquiryModal .form-control.is-invalid {
    border-color: #dc3545;
    background-color: #fff5f5;
}

#enquiryModal .form-control.is-valid {
    border-color: #198754;
    background-color: #f0fff4;
}

/* Alert styling */
#enquiryModal .alert {
    border-radius: 0;
    border: none;
    font-weight: 500;
}

#enquiryModal .alert-danger {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border-left: 4px solid #dc3545;
}

#enquiryModal .alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border-left: 4px solid #28a745;
}

/* Responsive modal adjustments */
@media (max-width: 768px) {
    #enquiryModal .modal-dialog {
        margin: 1rem;
    }
    
    #enquiryModal .modal-body {
        padding: 1.5rem;
    }
    
    #enquiryModal .modal-footer {
        padding: 1rem 1.5rem;
    }
    
    #enquiryModal .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Loading spinner animation */
#enquiryModal .fa-spinner {
    animation: spin 1s linear infinite;
}

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

/* New Enquiry Modal Design - Matching the Image */
.enquiry-modal-content {
    border: none;
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.enquiry-modal-header {
    background: transparent;
    border: none;
    padding: 1rem 1.5rem 0;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
}

.enquiry-modal-header .btn-close {
    background: #000;
    opacity: 1;
    filter: none;
    width: 30px;
    height: 30px;
    border-radius: 0;
}

.enquiry-modal-body {
    padding: 0;
}

/* Left Panel */
.enquiry-left-panel {
    background: #f8f9fa;
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.enquiry-left-content {
    text-align: center;
    color: #495057;
}

.enquiry-left-content h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #6c757d;
    letter-spacing: 1px;
}

.enquiry-left-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #343a40;
    margin: 0;
}

/* Right Panel */
.enquiry-right-panel {
    background: #ffffff;
    padding: 3rem 2.5rem;
    min-height: 500px;
}

.enquiry-form-container {
    max-width: 100%;
}

.enquiry-form-header {
    margin-bottom: 2.5rem;
}

.enquiry-form-header h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #343a40;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.enquiry-form-header p {
    font-size: 0.95rem;
    color: #6c757d;
    margin: 0;
    font-style: italic;
}

/* Form Styling */
.enquiry-form .form-group {
    margin-bottom: 1.5rem;
}

.enquiry-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #495057;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.enquiry-input {
    border: none;
    border-bottom: 2px solid #e9ecef;
    border-radius: 0;
    padding: 0.75rem 0;
    background: transparent;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: none;
}

.enquiry-input:focus {
    border-bottom-color: #0d6efd;
    box-shadow: none;
    background: transparent;
}

.enquiry-input::placeholder {
    color: #adb5bd;
    font-style: italic;
}

/* Submit Button */
.enquiry-submit-section {
    margin-top: 2.5rem;
}

.enquiry-submit-btn {
    background: #343a40;
    color: white;
    border: 1px solid #6c757d;
    border-radius: 0;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.enquiry-submit-btn:hover {
    background: #495057;
    border-color: #495057;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.enquiry-submit-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.enquiry-submit-btn:hover i {
    transform: translateX(3px);
}

/* Privacy Policy */
.enquiry-privacy {
    margin-top: 1rem;
}

.enquiry-privacy p {
    font-size: 0.8rem;
    color: #6c757d;
    margin: 0;
}

.privacy-link {
    color: #0d6efd;
    text-decoration: underline;
    font-weight: 500;
}

.privacy-link:hover {
    color: #0b5ed7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .enquiry-left-panel,
    .enquiry-right-panel {
        padding: 2rem 1.5rem;
        min-height: auto;
    }
    
    .enquiry-left-content h2 {
        font-size: 1.5rem;
    }
    
    .enquiry-form-header h4 {
        font-size: 1.3rem;
    }
    
    .enquiry-submit-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .enquiry-modal-dialog {
        margin: 1rem;
    }
}

/* Contact Page Specific Styles */
.contact-page .enquiry-left-panel {
    background: #f8f9fa;
}

.contact-page .enquiry-right-panel {
    background: #ffffff;
}

/* Contact Form Alerts */
.contact-error,
.contact-message {
    border-radius: 0;
    border: none;
    font-weight: 500;
    margin-top: 1rem;
}

.contact-error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.contact-message {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border-left: 4px solid #28a745;
}

/* Enquiry Form Alerts */
.enquiry-error,
.enquiry-message {
    border-radius: 0;
    border: none;
    font-weight: 500;
    margin-top: 1rem;
}

.enquiry-error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.enquiry-message {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border-left: 4px solid #28a745;
}

/* Product Gallery Styling */
.product-gallery {
    position: relative;
}

.main-image-container {
    position: relative;
    background: #ffffff;
    border: 2px solid #e9ecef;
    overflow: hidden;
    transition: all 0.3s ease;
}

.main-image-container:hover {
    border-color: #0d6efd;
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.15);
}

.main-image-container img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Navigation Arrows - Professional Design */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #e9ecef;
    color: #495057;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
}

.nav-arrow:hover {
    background: #ffffff;
    border-color: #0d6efd;
    color: #0d6efd;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.25);
}

.nav-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.nav-arrow.prev {
    left: 15px;
}

.nav-arrow.next {
    right: 15px;
}

.nav-arrow i {
    font-size: 1rem;
    font-weight: bold;
}

/* Enhanced Double-Click Zoom */
.zoom-container {
    position: relative;
    width: 100%;
    height: 400px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #ffffff;
    cursor: zoom-in;
    transition: all 0.3s ease;
}

.zoom-container:hover {
    background: #f8f9fa;
}

.zoom-container.zoomed {
    cursor: grab;
    background: #f1f3f4;
}

.zoom-container.zoomed:active {
    cursor: grabbing;
}

.zoomable-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    cursor: zoom-in;
}

.zoomable-image.zoomed {
    cursor: grab;
}

/* Zoom Instructions Tooltip */
.zoom-instructions {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 5;
}

.zoom-container:hover .zoom-instructions {
    opacity: 1;
}

.zoom-container.zoomed .zoom-instructions {
    opacity: 0;
}

/* Thumbnails - Professional Design */
.thumbnail-item {
    position: relative;
    background: #ffffff;
    border: 2px solid #e9ecef;
    padding: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumbnail-item:hover {
    border-color: #0d6efd;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.15);
}

.thumbnail-item.active {
    border-color: #0d6efd;
    background: linear-gradient(135deg, #f8f9ff 0%, #e7f1ff 100%);
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.2);
}

.thumbnail-item.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1) 0%, rgba(13, 110, 253, 0.05) 100%);
    pointer-events: none;
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.thumbnail-item:hover img {
    transform: scale(1.05);
}

.thumbnail-item.active img {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .nav-arrow.prev {
        left: -20px;
    }
    
    .nav-arrow.next {
        right: -20px;
    }
    
    .zoom-indicator {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        top: 10px;
        right: 10px;
    }
    
    .thumbnail-item {
        height: 100px;
        padding: 6px;
    }
    
    .zoom-container {
        height: 300px;
        min-height: 300px;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #0d6efd, transparent);
}

.footer-section {
    position: relative;
}

.footer-logo img {
    transition: transform 0.3s ease;
}

.footer-logo:hover img {
    transform: scale(1.05);
}

.footer-social .social-links {
    display: flex;
    align-items: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: #0d6efd;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
    border-color: #0d6efd;
}

.footer-links li a {
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-links li a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #0d6efd;
}

.footer-links li a:hover {
    color: #0d6efd !important;
    padding-left: 15px;
    text-decoration: none;
}

.footer-links li a:hover::before {
    opacity: 1;
}

.contact-item {
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.contact-details a:hover {
    color: #0d6efd !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.footer-bottom-links a {
    transition: all 0.3s ease;
    position: relative;
}

.footer-bottom-links a:hover {
    color: #0d6efd !important;
}

.footer-bottom-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #0d6efd;
    transition: width 0.3s ease;
}

.footer-bottom-links a:hover::after {
    width: 100%;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        text-align: center;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom .col-md-6:last-child {
        margin-top: 1rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .contact-icon {
        margin-right: 0.5rem;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 3rem 0;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        margin: 0 0.25rem;
    }
}

/* Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    background-color: #2A3855;
    opacity: 1;
    transition: opacity 0.9s cubic-bezier(0.77, 0, 0.18, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader.loaded {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.preloader.hidden {
    display: none !important;
}

.preloader .loader {
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader .line-scale {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.preloader .line-scale div {
    width: 0.3rem;
    height: 2rem;
    background-color: #ffffff;
    border-radius: 0.15rem;
    animation: line-scale 1.2s infinite ease-in-out;
}

.preloader .line-scale div:nth-child(1) { animation-delay: -1.2s; }
.preloader .line-scale div:nth-child(2) { animation-delay: -1.1s; }
.preloader .line-scale div:nth-child(3) { animation-delay: -1.0s; }
.preloader .line-scale div:nth-child(4) { animation-delay: -0.9s; }
.preloader .line-scale div:nth-child(5) { animation-delay: -0.8s; }

@keyframes line-scale {
    0%, 40%, 100% {
        transform: scaleY(0.4);
    }
    20% {
        transform: scaleY(1);
    }
}

/* Ensure preloader is visible by default */
.preloader:not(.loaded) {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
}

/* Mobile Preloader Optimizations */
@media (max-width: 767.98px) {
    .preloader {
        background-color: #2A3855;
    }
    
    .preloader .line-scale div {
        width: 0.2rem;
        height: 1.5rem;
        gap: 0.2rem;
    }
    
    /* Ensure preloader is hidden on mobile after loading */
    .preloader.loaded {
        opacity: 0;
        visibility: hidden;
        display: none;
    }
}

/* Force hide preloader if it gets stuck */
.preloader[style*="display: none"],
.preloader.hidden,
.preloader.loaded {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* Emergency preloader hiding */
body.loaded .preloader,
html.loaded .preloader {
    display: none !important;
}

/* ===============================================*/
/*    Mobile Responsiveness & Touch Optimization */
/* ===============================================*/

/* Base Mobile-First Approach */
@media (max-width: 767.98px) {
  /* General Mobile Styles */
  body {
    font-size: 14px;
    line-height: 1.5;
  }
  
  /* Container adjustments for mobile */
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Typography adjustments */
  h1 { font-size: 1.75rem !important; }
  h2 { font-size: 1.5rem !important; }
  h3 { font-size: 1.25rem !important; }
  h4 { font-size: 1.125rem !important; }
  h5 { font-size: 1rem !important; }
  
  /* Section spacing for mobile */
  section {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  
  /* Card adjustments for mobile */
  .card {
    margin-bottom: 1rem;
  }
  
  .card-body {
    padding: 1.25rem !important;
  }
  
  /* Form improvements for mobile */
  .form-control {
    font-size: 16px; /* Prevents zoom on iOS */
    padding: 0.75rem 0.75rem;
    border-radius: 0.375rem;
  }
  
  .form-label {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
  }
  
  /* Button improvements for mobile */
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    border-radius: 0.375rem;
    min-height: 44px; /* Touch-friendly minimum height */
  }
  
  /* Navigation improvements */
  .navbar-brand img {
    max-height: 40px;
  }
  
  .navbar-toggler {
    padding: 0.5rem;
    border: none;
  }
  
  .dropdown-menu {
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    margin-top: 0.5rem;
  }
  
  .dropdown-item {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }
}

/* Small Mobile Devices (320px - 575px) */
@media (max-width: 575.98px) {
  /* Header adjustments */
  .bg-primary.py-3 {
    padding: 0.75rem 0 !important;
  }
  
  .bg-primary .fs--1 {
    font-size: 0.75rem !important;
  }
  
  /* Banner section adjustments */
  .pt-6 {
    padding-top: 3rem !important;
  }
  
  .bg-holder.overlay {
    min-height: 200px;
  }
  
  /* Breadcrumb adjustments */
  .breadcrumb {
    font-size: 0.75rem !important;
  }
  
  .breadcrumb-item + .breadcrumb-item::before {
    padding: 0 0.25rem;
  }
  
  /* Form layout for very small screens */
  .enquiry-form .row.g-3 {
    margin: 0;
  }
  
  .enquiry-form .col-md-6 {
    padding: 0;
    margin-bottom: 1rem;
  }
  
  /* Contact form mobile layout */
  .enquiry-left-panel,
  .enquiry-right-panel {
    width: 100% !important;
    margin-bottom: 1.5rem;
  }
  
  .enquiry-left-content h2 {
    font-size: 1.25rem !important;
  }
  
  .enquiry-form-header h4 {
    font-size: 1rem !important;
  }
  
  /* Product gallery mobile adjustments */
  .product-gallery .thumbnail-item {
    width: 80px !important;
    height: 80px !important;
    min-width: 80px !important;
    min-height: 80px !important;
    max-width: 80px !important;
    max-height: 80px !important;
  }
  
  .main-image-container {
    margin-bottom: 1rem;
  }
  
  .main-image-container img {
    max-height: 300px;
  }
  
  /* Navigation arrows for mobile */
  .nav-arrow {
    width: 40px !important;
    height: 40px !important;
    font-size: 1rem !important;
  }
  
  .nav-arrow.prev {
    left: 10px !important;
  }
  
  .nav-arrow.next {
    right: 10px !important;
  }
  
  /* Footer mobile adjustments */
  .footer {
    padding: 2rem 0 !important;
  }
  
  .footer-section {
    margin-bottom: 2rem;
  }
  
  .footer-bottom {
    text-align: center !important;
  }
  
  .footer-bottom .col-md-6:last-child {
    margin-top: 1rem;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-icon {
    margin: 0 auto 0.5rem auto;
  }
}

/* Medium Mobile Devices (576px - 767px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  /* Better spacing for medium mobile */
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  /* Form improvements */
  .enquiry-form .row.g-3 {
    margin: 0 -0.5rem;
  }
  
  .enquiry-form .col-md-6 {
    padding: 0 0.5rem;
  }
  
  /* Product gallery improvements */
  .product-gallery .thumbnail-item {
    width: 100px !important;
    height: 100px !important;
    min-width: 100px !important;
    min-height: 100px !important;
    max-width: 100px !important;
    max-height: 100px !important;
  }
  
  .main-image-container img {
    max-height: 350px;
  }
}

/* Tablet Devices (768px - 991px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  /* Tablet-specific adjustments */
  .container {
    max-width: 720px;
  }
  
  /* Form layout for tablets */
  .enquiry-left-panel {
    width: 100% !important;
    margin-bottom: 2rem;
  }
  
  .enquiry-right-panel {
    width: 100% !important;
  }
  
  /* Product gallery for tablets */
  .product-gallery .thumbnail-item {
    width: 110px !important;
    height: 110px !important;
    min-width: 110px !important;
    min-height: 110px !important;
    max-width: 110px !important;
    max-height: 110px !important;
  }
  
  .main-image-container img {
    max-height: 400px;
  }
}

/* Large Devices (992px and up) */
@media (min-width: 992px) {
  /* Desktop optimizations */
  .enquiry-left-panel {
    width: 33.333333% !important;
  }
  
  .enquiry-right-panel {
    width: 66.666667% !important;
  }
  
  .product-gallery .thumbnail-item {
    width: 120px !important;
    height: 120px !important;
    min-width: 120px !important;
    min-height: 120px !important;
    max-width: 120px !important;
    max-height: 120px !important;
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  /* Touch-friendly button sizes */
  .btn {
    min-height: 48px;
    min-width: 48px;
  }
  
  /* Touch-friendly form elements */
  .form-control {
    min-height: 48px;
  }
  
  /* Touch-friendly navigation */
  .nav-link {
    padding: 0.75rem 1rem;
    min-height: 48px;
    display: flex;
    align-items: center;
  }
  
  .dropdown-toggle::after {
    margin-left: 0.5rem;
  }
  
  /* Touch-friendly product gallery */
  .thumbnail-item {
    cursor: pointer;
    transition: transform 0.2s ease;
  }
  
  .thumbnail-item:active {
    transform: scale(0.95);
  }
  
  /* Touch-friendly navigation arrows */
  .nav-arrow {
    min-width: 48px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-arrow:active {
    transform: scale(0.95);
  }
}

/* Landscape Mobile Optimizations */
@media (max-width: 767.98px) and (orientation: landscape) {
  /* Reduce padding for landscape mobile */
  section {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  
  .pt-6 {
    padding-top: 2rem !important;
  }
  
  /* Adjust form layout for landscape */
  .enquiry-form .row.g-3 {
    margin: 0 -0.25rem;
  }
  
  .enquiry-form .col-md-6 {
    padding: 0 0.25rem;
  }
  
  /* Product gallery landscape adjustments */
  .product-gallery .thumbnail-item {
    width: 70px !important;
    height: 70px !important;
    min-width: 70px !important;
    min-height: 70px !important;
    max-width: 70px !important;
    max-height: 70px !important;
  }
}

/* High DPI Display Optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  /* Ensure crisp images on high DPI displays */
  .navbar-brand img,
  .footer-logo img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Print Styles */
@media print {
  /* Hide non-essential elements for printing */
  .preloader,
  .navbar,
  .footer,
  .btn,
  .nav-arrow,
  .zoom-indicator {
    display: none !important;
  }
  
  /* Ensure content is readable */
  body {
    font-size: 12pt;
    line-height: 1.4;
    color: #000;
    background: #fff;
  }
  
  /* Optimize images for print */
  img {
    max-width: 100% !important;
    height: auto !important;
  }
  
  /* Ensure proper page breaks */
  .card,
  section {
    page-break-inside: avoid;
  }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
  /* Reduce animations for users who prefer less motion */
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .preloader .line-scale div {
    animation: none !important;
  }
}

/* Dark Mode Support (if user prefers) */
@media (prefers-color-scheme: dark) {
  /* Basic dark mode adjustments */
  .bg-100 {
    background-color: #1a1a1a !important;
  }
  
  .text-1100 {
    color: #e0e0e0 !important;
  }
}

/* Focus States for Accessibility */
.btn:focus,
.form-control:focus,
.nav-link:focus,
.dropdown-item:focus {
  outline: 2px solid #0d6efd;
  outline-offset: 2px;
}

/* Skip to content link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #0d6efd;
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 10000;
}

.skip-link:focus {
  top: 6px;
}

/* Loading states for better UX */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid #0d6efd;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Enhanced mobile navigation */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    margin-top: 1rem;
    padding: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  
  .navbar-nav {
    gap: 0.5rem;
  }
  
  .nav-item {
    border-bottom: 1px solid #f0f0f0;
  }
  
  .nav-item:last-child {
    border-bottom: none;
  }
  
  .dropdown-menu {
    position: static !important;
    float: none;
    width: 100%;
    margin-top: 0;
    border: none;
    box-shadow: none;
    background: #f8f9fa;
    border-radius: 6px;
  }
  
  .dropdown-item {
    padding: 0.5rem 1rem;
    border-bottom: 1px solid #e9ecef;
  }
  
  .dropdown-item:last-child {
    border-bottom: none;
  }
}

/* Mobile-specific utility classes */
@media (max-width: 767.98px) {
  .mobile-hidden {
    display: none !important;
  }
  
  .mobile-full-width {
    width: 100% !important;
  }
  
  .mobile-text-center {
    text-align: center !important;
  }
  
  .mobile-mb-2 {
    margin-bottom: 0.5rem !important;
  }
  
  .mobile-mb-3 {
    margin-bottom: 1rem !important;
  }
  
  .mobile-p-3 {
    padding: 1rem !important;
  }
  
  .mobile-p-4 {
    padding: 1.5rem !important;
  }
}

/* Enhanced Modal Close Button - More Specific Selectors */
#enquiryModal .enquiry-modal-header .btn-close,
.enquiry-modal-header .btn-close,
#enquiryModal .btn-close,
.btn-close,
.modal .btn-close,
.enquiry-modal .btn-close {
    background: transparent !important;
    background-image: none !important;
    background-color: transparent !important;
    background-clip: unset !important;
    background-size: unset !important;
    background-repeat: unset !important;
    background-position: unset !important;
    opacity: 1 !important;
    filter: none !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    border: none !important;
    position: relative !important;
    transition: all 0.3s ease !important;
    box-shadow: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
}

#enquiryModal .enquiry-modal-header .btn-close:hover,
.enquiry-modal-header .btn-close:hover,
#enquiryModal .btn-close:hover,
.btn-close:hover,
.modal .btn-close:hover,
.enquiry-modal .btn-close:hover {
    background: transparent !important;
    background-image: none !important;
    background-color: transparent !important;
    background-clip: unset !important;
    background-size: unset !important;
    background-repeat: unset !important;
    background-position: unset !important;
    border-color: transparent !important;
    transform: scale(1.1) !important;
    box-shadow: none !important;
}

#enquiryModal .enquiry-modal-header .btn-close:active,
.enquiry-modal-header .btn-close:active,
#enquiryModal .btn-close:active {
    transform: scale(0.95);
}

#enquiryModal .enquiry-modal-header .btn-close::before,
#enquiryModal .enquiry-modal-header .btn-close::after,
.enquiry-modal-header .btn-close::before,
.enquiry-modal-header .btn-close::after,
#enquiryModal .btn-close::before,
#enquiryModal .btn-close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    background: #495057;
    transition: all 0.3s ease;
    border-radius: 1px;
}

#enquiryModal .enquiry-modal-header .btn-close::before,
.enquiry-modal-header .btn-close::before,
#enquiryModal .btn-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

#enquiryModal .enquiry-modal-header .btn-close::after,
.enquiry-modal-header .btn-close::after,
#enquiryModal .btn-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

#enquiryModal .enquiry-modal-header .btn-close:hover::before,
#enquiryModal .enquiry-modal-header .btn-close:hover::after,
.enquiry-modal-header .btn-close:hover::before,
.enquiry-modal-header .btn-close:hover::after,
#enquiryModal .btn-close:hover::before,
#enquiryModal .btn-close:hover::after {
    background: #0d6efd;
    width: 20px;
    height: 2.5px;
}

/* Global Bootstrap Close Button Override - Remove Background */
.btn-close,
.modal .btn-close,
.alert .btn-close,
.toast .btn-close,
.offcanvas .btn-close {
    background: transparent !important;
    background-image: none !important;
    background-color: transparent !important;
    background-clip: unset !important;
    background-size: unset !important;
    background-repeat: unset !important;
    background-position: unset !important;
    opacity: 1 !important;
    filter: none !important;
    border: none !important;
    box-shadow: none !important;
}

/* Force remove Bootstrap's SVG background image */
.btn-close[style*="background"],
.btn-close[style*="background-image"],
.modal .btn-close[style*="background"],
.modal .btn-close[style*="background-image"] {
    background: transparent !important;
    background-image: none !important;
    background-color: transparent !important;
    background-clip: unset !important;
    background-size: unset !important;
    background-repeat: unset !important;
    background-position: unset !important;
}

/* Ultra-specific Bootstrap close button override */
button.btn-close,
button[type="button"].btn-close,
.modal-header button.btn-close,
.modal-header button[type="button"].btn-close,
.enquiry-modal-header button.btn-close,
.enquiry-modal-header button[type="button"].btn-close {
    background: transparent !important;
    background-image: none !important;
    background-color: transparent !important;
    background-clip: unset !important;
    background-size: unset !important;
    background-repeat: unset !important;
    background-position: unset !important;
    opacity: 1 !important;
    filter: none !important;
    border: none !important;
    box-shadow: none !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    position: relative !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Target Bootstrap's specific SVG data URI background */
.btn-close[style*="data:image/svg+xml"],
.modal .btn-close[style*="data:image/svg+xml"],
.enquiry-modal .btn-close[style*="data:image/svg+xml"] {
    background: transparent !important;
    background-image: none !important;
    background-color: transparent !important;
    background-clip: unset !important;
    background-size: unset !important;
    background-repeat: unset !important;
    background-position: unset !important;
}

/* Footer Social Icons - Ensure White Color */
.footer-social .social-links {
    display: flex;
    align-items: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: #0d6efd;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
    border-color: #0d6efd;
}

.social-link i {
    color: #ffffff !important;
    font-size: 16px;
}

.social-link:hover i {
    color: #ffffff !important;
}

/* Additional footer icon enhancements */
.footer-social .social-link {
    margin-right: 15px;
}

.footer-social .social-link:last-child {
    margin-right: 0;
}

.footer-social .social-link:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

/* Ensure contact icons are also white */
.contact-icon i {
    color: #0d6efd !important;
}

.contact-icon:hover i {
    color: #0b5ed7 !important;
}

/* Unified Form Styling for Both Modal and Contact Page */
.enquiry-form,
#contactForm {
    width: 100%;
}

.enquiry-form .form-group,
#contactForm .form-group {
    margin-bottom: 1.5rem;
}

.enquiry-form label,
#contactForm label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.enquiry-form .enquiry-input,
#contactForm .enquiry-input,
.enquiry-form .form-control,
#contactForm .form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #495057;
    background: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.enquiry-form .enquiry-input:focus,
#contactForm .enquiry-input:focus,
.enquiry-form .form-control:focus,
#contactForm .form-control:focus {
    outline: none;
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1), 0 4px 12px rgba(13, 110, 253, 0.15);
    transform: translateY(-1px);
}

.enquiry-form .enquiry-input::placeholder,
#contactForm .enquiry-input::placeholder,
.enquiry-form .form-control::placeholder,
#contactForm .form-control::placeholder {
    color: #adb5bd;
    font-style: italic;
}

/* Unified Submit Button Styling */
.enquiry-form .enquiry-submit-btn,
#contactForm .enquiry-submit-btn,
.enquiry-form .btn,
#contactForm .btn {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.enquiry-form .enquiry-submit-btn:hover,
#contactForm .enquiry-submit-btn:hover,
.enquiry-form .btn:hover,
#contactForm .btn:hover {
    background: linear-gradient(135deg, #0b5ed7 0%, #0a58ca 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
}

.enquiry-form .enquiry-submit-btn:active,
#contactForm .enquiry-submit-btn:active,
.enquiry-form .btn:active,
#contactForm .btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.enquiry-form .enquiry-submit-btn i,
#contactForm .enquiry-submit-btn i,
.enquiry-form .btn i,
#contactForm .btn i {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.enquiry-form .enquiry-submit-btn:hover i,
#contactForm .enquiry-submit-btn:hover i,
.enquiry-form .btn:hover i,
#contactForm .btn:hover i {
    transform: translateX(3px);
}

/* Unified Privacy Section Styling */
.enquiry-form .enquiry-privacy,
#contactForm .enquiry-privacy {
    margin-top: 1.5rem;
    text-align: center;
}

.enquiry-form .enquiry-privacy p,
#contactForm .enquiry-privacy p {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

.enquiry-form .privacy-link,
#contactForm .privacy-link {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.enquiry-form .privacy-link:hover,
#contactForm .privacy-link:hover {
    color: #0b5ed7;
    text-decoration: underline;
}

/* Ensure consistent spacing and layout */
.enquiry-form .row.g-3,
#contactForm .row.g-3 {
    margin: 0;
}

.enquiry-form .col-md-6,
#contactForm .col-md-6 {
    padding: 0 0.5rem;
}

/* Mobile optimizations for both forms */
@media (max-width: 768px) {
    .enquiry-modal-header .btn-close {
        width: 30px;
        height: 30px;
    }
    
    .enquiry-modal-header .btn-close::before,
    .enquiry-modal-header .btn-close::after {
        width: 14px;
        height: 2px;
    }
    
    .enquiry-form .enquiry-submit-btn,
    #contactForm .enquiry-submit-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .enquiry-form label,
    #contactForm label {
        font-size: 0.85rem;
    }
    
    .enquiry-form .enquiry-input,
    #contactForm .enquiry-input {
        padding: 0.625rem 0.875rem;
        font-size: 0.9rem;
    }
}

.navbar-elixir {   
    margin-bottom: 0px !important;   
}

