/**
 * SAS Logistics Custom Section Styles
 * Professional organized CSS for all page sections
 */

/* Delivery Boy Image Size Adjustment */
.float-image img {
    max-width: 450px !important;
    height: auto !important;
    width: auto !important;
}

/* Slight left offset for Why Choose Us truck */
.why-choose-us .float-image {
    right: -590px !important;
}

/* HTML: <div class="loader"></div> */
.preloader.custom-preloader {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f5f1;
}

.preloader.custom-preloader:before,
.preloader.custom-preloader:after {
    content: none !important;
}

.custom-preloader .loader {
    width: 40px;
    aspect-ratio: 1;
    color: #f03355;
    position: relative;
    background: radial-gradient(10px, currentColor 94%, #0000);
}

.custom-preloader .loader:before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background:
        radial-gradient(9px at bottom right, #0000 94%, currentColor) top left,
        radial-gradient(9px at bottom left, #0000 94%, currentColor) top right,
        radial-gradient(9px at top right, #0000 94%, currentColor) bottom left,
        radial-gradient(9px at top left, #0000 94%, currentColor) bottom right;
    background-size: 20px 20px;
    background-repeat: no-repeat;
    animation: l18 1.5s infinite cubic-bezier(0.3, 1, 0, 1);
}

@keyframes l18 {
    33% {
        inset: -10px;
        transform: rotate(0deg);
    }
    66% {
        inset: -10px;
        transform: rotate(90deg);
    }
    100% {
        inset: 0;
        transform: rotate(90deg);
    }
}

/* Facility Lightbox Facility Info */
.lightbox-facility-info {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    z-index: 1001;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ================================
   GALLERY SECTION STYLES
   ================================ */

.gallery-section-modern {
    padding: 80px 0;
    background: #f8f9fa;
}

.gallery-header-modern {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-header-modern .badge-modern {
    display: inline-block;
    background: #d70006;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.gallery-header-modern .title-modern {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.2;
}

.gallery-header-modern .text-red {
    color: #d70006;
}

.gallery-header-modern .subtitle-modern {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Gallery Filters */
.gallery-filters-modern {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

.filter-container {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-group label {
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}

.filter-group select {
    padding: 10px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    font-size: 14px;
    min-width: 150px;
    transition: border-color 0.3s ease;
}

.filter-group select:focus {
    outline: none;
    border-color: #d70006;
}

.filter-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

.btn-clear-filters {
    background: #6c757d;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-clear-filters:hover {
    background: #5a6268;
}

.results-count {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Gallery Grid */
.gallery-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.gallery-item-modern {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.gallery-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item-modern:hover .gallery-image-container img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item-modern:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info h4 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.gallery-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 15px;
}

.gallery-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.category-badge {
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-conferences {
    background: #28a745;
    color: white;
}

.category-community {
    background: #17a2b8;
    color: white;
}

.category-events {
    background: #ffc107;
    color: #333;
}

.category-fleet {
    background: #6f42c1;
    color: white;
}

.category-facilities {
    background: #fd7e14;
    color: white;
}

.gallery-date {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
}

.gallery-actions {
    display: flex;
    justify-content: flex-end;
}

.btn-view-image {
    background: #d70006;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.btn-view-image:hover {
    background: #b30005;
    transform: scale(1.1);
}

/* Event Album Styles */
.event-album {
    cursor: pointer;
}

.event-album:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.btn-view-album {
    background: #28a745;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.btn-view-album:hover {
    background: #218838;
    transform: scale(1.05);
}

.album-info {
    margin-top: 10px;
}

.image-count {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.image-count i {
    font-size: 14px;
}

/* Event Album Styles for Our Media Page */
.event-album {
    cursor: pointer;
}

.event-album:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.event-album .gallery-zoom-icon i {
    font-size: 24px;
}

.album-info {
    margin-top: 10px;
}

.album-info .image-count {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.album-info .image-count i {
    font-size: 14px;
}

/* Community Badge */
.community-badge {
    background: #28a745;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Conferences Badge */
.conferences-badge {
    background: #17a2b8;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* No Results */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.no-results i {
    font-size: 48px;
    color: #ddd;
    margin-bottom: 20px;
}

.no-results h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.no-results p {
    font-size: 16px;
    color: #666;
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

.modal-content img {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
}

.modal-info {
    padding: 20px;
    background: white;
}

.modal-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.modal-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-header-modern .title-modern {
        font-size: 28px;
    }
    
    .filter-container {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    
    .filter-actions {
        margin-left: 0;
        justify-content: space-between;
    }
    
    .gallery-grid-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-image-container {
        height: 200px;
    }
    
    .modal-content {
        max-width: 95%;
        max-height: 95%;
    }
}

/* News Gallery Styles */
.news-gallery {
    margin: 40px 0;
    padding: 30px 0;
    border-top: 2px solid #f0f0f0;
}

.gallery-title {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}

.gallery-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #d70006;
    border-radius: 2px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.gallery-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px 15px 15px;
    font-size: 14px;
    font-weight: 500;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    backdrop-filter: blur(5px);
}

.gallery-modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 1000px;
    top: 50%;
    transform: translateY(-50%);
}

.gallery-modal-image {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
}

.gallery-modal-caption {
    color: white;
    text-align: center;
    margin-top: 15px;
    font-size: 16px;
    font-weight: 500;
}

.gallery-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-modal-close:hover {
    color: #d70006;
    transform: scale(1.1);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 30px;
    cursor: pointer;
    padding: 10px 15px;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.gallery-nav:hover {
    background: rgba(215, 0, 6, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav.prev {
    left: 20px;
}

.gallery-nav.next {
    right: 20px;
}

/* Admin Gallery Upload Styles */
.gallery-upload-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 10px;
}

.gallery-upload-item {
    border: 2px dashed #ddd;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.gallery-upload-item:hover {
    border-color: #d70006;
    background: rgba(215, 0, 6, 0.05);
}

.gallery-upload-item input[type="file"] {
    margin-bottom: 10px;
}

.gallery-upload-item input[type="text"] {
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .gallery-image {
        height: 150px;
    }
    
    .gallery-modal-content {
        width: 95%;
        padding: 10px;
    }
    
    .gallery-modal-close {
        top: 10px;
        right: 15px;
        font-size: 30px;
    }
    
    .gallery-nav {
        font-size: 20px;
        padding: 8px 12px;
    }
    
    .gallery-nav.prev {
        left: 10px;
    }
    
    .gallery-nav.next {
        right: 10px;
    }
    
    .gallery-upload-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-title {
        font-size: 20px;
    }
}

/* ================================
   PROFESSIONAL SERVICES PAGE - FULL PAGE DESIGN
   ================================ */

.professional-services-page {
    padding: 60px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.professional-services-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(215, 0, 6, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(35, 35, 49, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Section Header */
.services-page-header {
    max-width: 100%;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d70006 0%, #ca1f26 100%);
    color: #ffffff;
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(215, 0, 6, 0.2);
}

.services-page-header .section-title {
    font-size: 42px;
    font-weight: 800;
    color: #232331;
    margin-bottom: 20px;
    line-height: 1.2;
}

.services-page-header .highlight-text {
    color: #d70006;
    position: relative;
}

.services-page-header .section-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin: 0;
    text-align: left;
    max-width: 100%;
}

/* Professional Services Grid */
.professional-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

/* Professional Service Card */
.pro-service-card {
    position: relative;
}

.pro-service-inner {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pro-service-inner:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Service Number Badge */
.service-number-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d70006 0%, #ca1f26 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(215, 0, 6, 0.3);
    animation: badgePulse 2s ease-in-out infinite;
}

.service-number-badge span {
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
}

/* Service Image */
.pro-service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.pro-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.pro-service-inner:hover .pro-service-image img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(215, 0, 6, 0.7) 0%, rgba(202, 31, 38, 0.9) 100%);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease;
}

.pro-service-inner:hover .image-overlay {
    opacity: 1;
}

.overlay-icon {
    color: #ffffff;
    font-size: 48px;
    transform: scale(0.5);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.pro-service-inner:hover .overlay-icon {
    transform: scale(1);
}

/* Service Content */
.pro-service-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-name {
    font-size: 22px;
    font-weight: 700;
    color: #232331;
    margin-bottom: 15px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.pro-service-inner:hover .service-name {
    color: #d70006;
}

.service-description {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

/* Service Features List */
.service-features-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.service-features-list .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #232331;
}

.service-features-list .feature-item i {
    color: #d70006 !important;
    font-size: 16px;
    flex-shrink: 0;
}

/* Ensure all feature icons are red */
.professional-services-page .service-features-list .feature-item i.fa-check-circle,
.professional-services-page .service-features-list .feature-item i.fa-clock-o,
.professional-services-page .service-features-list .feature-item i.fa-shield {
    color: #d70006 !important;
}

/* Service Details Button */
.service-details-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    background: linear-gradient(135deg, #d70006 0%, #ca1f26 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(215, 0, 6, 0.2);
    position: relative;
    overflow: hidden;
}

.service-details-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.5s ease;
}

.service-details-btn:hover::before {
    left: 100%;
}

.service-details-btn:hover {
    background: linear-gradient(135deg, #b30005 0%, #a81b21 100%);
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(215, 0, 6, 0.3);
    color: #ffffff;
}

.service-details-btn i {
    transition: transform 0.3s ease;
}

.service-details-btn:hover i {
    transform: translateX(5px);
}

/* Card Shine Effect */
.card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: skewX(-20deg);
    transition: left 0.8s ease;
    pointer-events: none;
}

.pro-service-inner:hover .card-shine {
    left: 150%;
}

/* Call to Action Section */
.services-cta-section {
    background: linear-gradient(135deg, #232331 0%, #1a1a1a 100%);
    border-radius: 20px;
    padding: 60px 40px;
    margin-bottom: 80px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.services-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 40%;
    height: 200%;
    background: radial-gradient(circle, rgba(215, 0, 6, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d70006 0%, #ca1f26 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(215, 0, 6, 0.3);
    animation: iconFloat 3s ease-in-out infinite;
}

.cta-text {
    flex: 1;
    min-width: 250px;
}

.cta-text h3 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.cta-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #d70006 0%, #ca1f26 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(215, 0, 6, 0.3);
}

.btn-cta-primary:hover {
    background: linear-gradient(135deg, #b30005 0%, #a81b21 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(215, 0, 6, 0.4);
    color: #ffffff;
}

.btn-cta-secondary {
    background: #ffffff;
    color: #232331;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-cta-secondary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    color: #d70006;
}

/* Why Choose Us Section */
.why-choose-services {
    margin-top: 80px;
    padding: 60px 40px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.why-choose-content {
    padding-right: 40px;
}

.why-choose-content .section-title {
    font-size: 36px;
    font-weight: 800;
    color: #232331;
    margin-bottom: 20px;
    line-height: 1.2;
}

.why-choose-content .section-text {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.choose-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.choose-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.choose-feature-item .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d70006 0%, #ca1f26 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(215, 0, 6, 0.2);
}

.choose-feature-item .feature-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #232331;
    margin-bottom: 8px;
}

.choose-feature-item .feature-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Why Choose Stats */
.why-choose-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(215, 0, 6, 0.15);
    border-color: #d70006;
}

.stat-box .stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d70006 0%, #ca1f26 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 28px;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(215, 0, 6, 0.2);
}

.stat-box .stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #d70006;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-box .stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Animations */
@keyframes badgePulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(215, 0, 6, 0.3); }
    50% { box-shadow: 0 4px 25px rgba(215, 0, 6, 0.5); }
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Responsive Design */
@media (max-width: 991px) {
    .professional-services-page {
        padding: 45px 0 60px;
    }

    .services-page-header .section-title {
        font-size: 32px;
    }

    .professional-services-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        justify-content: center;
    }

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

    .why-choose-stats {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .services-page-header .section-title {
        font-size: 28px;
    }

    .services-page-header .section-description {
        font-size: 14px;
    }

    .professional-services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .services-cta-section {
        padding: 40px 20px;
    }

    .cta-text h3 {
        font-size: 22px;
    }

    .why-choose-services {
        padding: 40px 20px;
    }

    .why-choose-content .section-title {
        font-size: 28px;
    }

    .why-choose-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-box {
        padding: 20px;
    }

    .stat-box .stat-number {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .professional-services-page {
        padding: 30px 0 40px;
    }

    .service-number-badge {
        width: 40px;
        height: 40px;
        top: 15px;
        left: 15px;
    }

    .service-number-badge span {
        font-size: 16px;
    }

    .pro-service-image {
        height: 200px;
    }

    .pro-service-content {
        padding: 20px;
    }

    .service-name {
        font-size: 18px;
    }

    .cta-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ================================
   MODERN FACILITIES PAGE DESIGN - CLEAN & EXPANDABLE
   ================================ */

.facilities-modern-design {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

/* Header Section */
.facilities-header-modern {
    margin-bottom: 60px;
}

.badge-modern {
    display: inline-block;
    background: linear-gradient(135deg, #d70006 0%, #ca1f26 100%);
    color: #ffffff;
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.title-modern {
    font-size: 46px;
    font-weight: 800;
    color: #232331;
    margin-bottom: 20px;
    line-height: 1.2;
}

.text-red {
    color: #d70006;
}

.subtitle-modern {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

/* Overview Stats Grid */
.overview-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.overview-stat-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.overview-stat-card:hover {
    transform: translateY(-5px);
    border-color: #d70006;
    box-shadow: 0 10px 30px rgba(215, 0, 6, 0.15);
}

.stat-icon-modern {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d70006 0%, #ca1f26 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 26px;
    margin: 0 auto 15px;
}

.stat-number-modern {
    font-size: 32px;
    font-weight: 800;
    color: #d70006;
    margin-bottom: 8px;
}

.stat-label-modern {
    font-size: 13px;
    color: #666;
    font-weight: 600;
}

/* Facilities Grid */
.facilities-grid-modern {
    display: grid;
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

.facilities-grid-top {
    grid-template-columns: repeat(2, 1fr);
}

.facilities-grid-bottom {
    grid-template-columns: 1fr;
    max-width: 100%;
}

/* Modern Facility Card */
.facility-modern-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    align-self: flex-start;
}

.facility-modern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Image Section */
.facility-image-section {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

.facility-modern-card:hover .facility-image-section img {
    transform: scale(1.1);
}

.image-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    pointer-events: none;
}

.facility-badge-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.headquarters-badge {
    background: rgba(215, 0, 6, 0.95);
    color: #ffffff;
}

.warehouse-badge {
    background: rgba(40, 167, 69, 0.95);
    color: #ffffff;
}

/* Info Section */
.facility-info-section {
    padding: 35px;
}

.facility-location-header {
    margin-bottom: 20px;
}

.facility-name-modern {
    font-size: 28px;
    font-weight: 800;
    color: #232331;
    margin-bottom: 10px;
}

.location-pin {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.location-pin i {
    color: #d70006;
    font-size: 16px;
}

.facility-intro-text {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
}

/* Specs Grid */
.specs-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.spec-item-modern {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.spec-item-modern:hover {
    background: #ffffff;
    border-color: #d70006;
    transform: translateX(5px);
}

.spec-item-modern i {
    font-size: 24px;
    color: #d70006;
    width: 40px;
    text-align: center;
}

.spec-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.spec-label {
    font-size: 11px;
    color: #999;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-value {
    font-size: 16px;
    font-weight: 800;
    color: #232331;
}

/* Expandable Section */
.expandable-section {
    margin-top: 25px;
}

.expand-btn {
    width: 100%;
    background: linear-gradient(135deg, #d70006 0%, #ca1f26 100%);
    color: #ffffff;
    border: none;
    padding: 16px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.expand-btn:hover {
    background: linear-gradient(135deg, #b30005 0%, #a81b21 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(215, 0, 6, 0.3);
}

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

.details-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.details-content.active {
    max-height: 3000px;
}

.details-inner {
    padding: 30px 0 0;
}

.details-inner p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Details Gallery */
.details-gallery {
    margin: 30px 0;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
}

.details-gallery h4 {
    font-size: 18px;
    font-weight: 700;
    color: #232331;
    margin-bottom: 20px;
}

.gallery-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.gallery-row img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-row img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(215, 0, 6, 0.3);
}

/* Details Map */
.details-map {
    margin: 30px 0;
}

.details-map h4 {
    font-size: 18px;
    font-weight: 700;
    color: #232331;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.details-map h4 i {
    color: #d70006;
}

/* Details Actions */
.details-actions {
    text-align: center;
    margin-top: 25px;
}

.btn-contact-facility {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    background: linear-gradient(135deg, #232331 0%, #1a1a1a 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid #232331;
}

.btn-contact-facility:hover {
    background: #ffffff;
    color: #d70006;
    border-color: #d70006;
    transform: translateY(-2px);
}

/* Bottom CTA */
.facilities-cta-modern {
    background: linear-gradient(135deg, #d70006 0%, #ca1f26 100%);
    border-radius: 20px;
    padding: 50px 60px;
    margin-top: 40px;
    box-shadow: 0 15px 50px rgba(215, 0, 6, 0.3);
}

.cta-inner-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-content-left h3 {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}

.cta-content-left p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.btn-cta-modern-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    background: #ffffff;
    color: #d70006;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-cta-modern-primary:hover {
    background: #232331;
    color: #ffffff;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .facilities-grid-top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .overview-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .title-modern {
        font-size: 36px;
    }

    .facilities-grid-modern {
        gap: 30px;
    }

    .facilities-grid-top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .facilities-modern-design {
        padding: 60px 0;
    }

    .title-modern {
        font-size: 32px;
    }

    .subtitle-modern {
        font-size: 16px;
    }

    .overview-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .facility-image-section {
        height: 250px;
    }

    .facility-info-section {
        padding: 25px;
    }

    .facility-name-modern {
        font-size: 24px;
    }

    .specs-grid-modern {
        grid-template-columns: 1fr;
    }

    .gallery-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .cta-inner-modern {
        flex-direction: column;
        text-align: center;
    }

    .cta-content-left h3 {
        font-size: 26px;
    }

    .btn-cta-modern-primary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .overview-stats-grid {
        grid-template-columns: 1fr;
    }

    .facilities-grid-modern {
        gap: 25px;
    }

    .facility-image-section {
        height: 220px;
    }

    .facility-info-section {
        padding: 20px;
    }

    .gallery-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-row img {
        height: 100px;
    }

    .facilities-cta-modern {
        padding: 35px 25px;
    }
}

/* Image Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

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

.lightbox-content {
    max-width: 95%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: #ffffff;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(215, 0, 6, 0.8);
    border-radius: 50%;
}

.lightbox-close:hover {
    transform: rotate(90deg);
    background: #d70006;
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px 30px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    transform: translateY(-50%);
}

.lightbox-prev,
.lightbox-next {
    background: rgba(215, 0, 6, 0.8);
    color: #ffffff;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: #d70006;
    transform: scale(1.1);
}

/* Large Desktop Lightbox */
@media (min-width: 1200px) {
    .lightbox-content {
        max-width: 98%;
        max-height: 95vh;
    }
}

/* Responsive Lightbox */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 98%;
        max-height: 85vh;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 35px;
        width: 40px;
        height: 40px;
    }

    .lightbox-caption {
        font-size: 14px;
        padding: 10px 20px;
        bottom: 15px;
    }

    .lightbox-nav {
        padding: 0 10px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* ================================
   PROFESSIONAL GALLERY PAGE - MASONRY LAYOUT
   ================================ */

.professional-gallery-page {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.gallery-header-section {
    margin-bottom: 60px;
}

.gallery-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d70006 0%, #ca1f26 100%);
    color: #ffffff;
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.gallery-main-title {
    font-size: 46px;
    font-weight: 800;
    color: #232331;
    margin-bottom: 20px;
    line-height: 1.2;
}

.text-highlight {
    color: #d70006;
}

.gallery-description {
    font-size: 17px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.gallery-stats-bar {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.stat-item-gallery {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-item-gallery i {
    font-size: 32px;
    color: #d70006;
}

.stat-item-gallery .stat-value {
    font-size: 28px;
    font-weight: 800;
    color: #232331;
    margin-right: 5px;
}

.stat-item-gallery .stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

.gallery-filter-bar {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    direction: ltr;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 25px;
    width: 190px;
    background: #ffffff;
    color: #666;
    border: 2px solid #e0e0e0;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Keep category tabs in a fixed visual order */
.gallery-filter-bar .filter-btn:nth-child(1) { order: 1; } /* Fleet */
.gallery-filter-bar .filter-btn:nth-child(2) { order: 2; } /* Team */
.gallery-filter-bar .filter-btn:nth-child(3) { order: 3; } /* Community */
.gallery-filter-bar .filter-btn:nth-child(4) { order: 4; } /* Conferences */
.gallery-filter-bar .filter-btn:nth-child(5) { order: 5; } /* Events */

.filter-btn:hover {
    border-color: #d70006;
    color: #d70006;
    box-shadow: 0 5px 15px rgba(215, 0, 6, 0.15);
}

.filter-btn.active {
    background: linear-gradient(135deg, #d70006 0%, #ca1f26 100%);
    color: #ffffff;
    border-color: #d70006;
    box-shadow: 0 5px 15px rgba(215, 0, 6, 0.3);
    font-weight: 600;
}

.filter-btn i {
    font-size: 16px;
}

.filter-btn span {
    white-space: nowrap;
}

.masonry-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    grid-auto-flow: dense;
}

.gallery-item-masonry {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.3s ease, transform 0.3s ease;
    content-visibility: auto;
    contain: layout paint style;
    contain-intrinsic-size: 320px;
}

.gallery-item-masonry.tall {
    grid-row: span 2;
}

.gallery-item-masonry.wide {
    grid-column: span 2;
}

.gallery-item-inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 250px;
    cursor: pointer;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.gallery-item-inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item-masonry img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.gallery-item-inner:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
}

.gallery-item-inner:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item-inner:hover .overlay-content {
    transform: translateY(0);
}

.gallery-category-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    width: fit-content;
}

.community-badge {
    background: linear-gradient(135deg, #d70006 0%, #ca1f26 100%);
    color: #ffffff;
}

.events-badge {
    background: linear-gradient(135deg, #28a745 0%, #20873a 100%);
    color: #ffffff;
}

.fleet-badge {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: #232331;
}

.facilities-badge {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #ffffff;
}

.gallery-item-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.gallery-item-date {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.gallery-item-date i {
    margin-right: 5px;
}

.gallery-zoom-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(215, 0, 6, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
}

.gallery-item-inner:hover .gallery-zoom-icon {
    opacity: 1;
    transform: scale(1);
}

.gallery-bottom-info {
    background: linear-gradient(135deg, #232331 0%, #1a1a1a 100%);
    border-radius: 20px;
    padding: 50px 60px;
    margin-top: 60px;
}

.bottom-title {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}

.bottom-text {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.social-links-gallery {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

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

.social-btn:hover {
    background: #d70006;
    border-color: #d70006;
    transform: translateY(-3px);
    color: #ffffff;
}

.gallery-lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.gallery-lightbox-content {
    max-width: 95%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

.gallery-lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: #ffffff;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(215, 0, 6, 0.8);
    border-radius: 50%;
}

.gallery-lightbox-close:hover {
    transform: rotate(90deg);
    background: #d70006;
}

.gallery-lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    padding: 15px 30px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    max-width: 80%;
}

.gallery-lightbox-counter {
    position: absolute;
    top: 30px;
    left: 50px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    background: rgba(215, 0, 6, 0.8);
    padding: 10px 20px;
    border-radius: 25px;
}

.gallery-lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    transform: translateY(-50%);
}

.gallery-lightbox-prev,
.gallery-lightbox-next {
    background: rgba(215, 0, 6, 0.8);
    color: #ffffff;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
    background: #d70006;
    transform: scale(1.1);
}

@media (max-width: 1200px) {
    .masonry-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .gallery-main-title {
        font-size: 36px;
    }
    .masonry-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-item-masonry.wide {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .professional-gallery-page {
        padding: 60px 0;
    }
    .gallery-main-title {
        font-size: 32px;
    }
    .gallery-description {
        font-size: 15px;
    }
    .gallery-stats-bar {
        gap: 30px;
    }
    .stat-item-gallery {
        flex-direction: column;
        text-align: center;
    }
    .filter-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    .masonry-gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .gallery-item-masonry.tall,
    .gallery-item-masonry.wide {
        grid-row: span 1;
        grid-column: span 1;
    }
    .gallery-item-inner {
        min-height: 200px;
    }
    .gallery-bottom-info {
        padding: 40px 30px;
        text-align: center;
    }
    .bottom-title {
        font-size: 26px;
    }
    .social-links-gallery {
        justify-content: center;
        margin-top: 20px;
    }
    .gallery-lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 35px;
        width: 40px;
        height: 40px;
    }
    .gallery-lightbox-counter {
        top: 15px;
        left: 15px;
        font-size: 14px;
        padding: 8px 15px;
    }
    .gallery-lightbox-caption {
        font-size: 14px;
        padding: 10px 20px;
        bottom: 15px;
    }
    .gallery-lightbox-nav {
        padding: 0 10px;
    }
    .gallery-lightbox-prev,
    .gallery-lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .gallery-stats-bar {
        flex-direction: column;
        gap: 20px;
    }
    .filter-btn {
        width: 100%;
        justify-content: center;
    }
    .gallery-lightbox-content {
        max-width: 98%;
    }
}

/* ================================
   PROFESSIONAL STATS SECTION - REDESIGNED
   ================================ */

/* Section Container */
.stats-section-professional {
    margin-top: 100px;
    background-image: url(../images/DJI_20250129105809_0013_D.JPG);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* Dark Overlay with Black 80% Opacity */
.stats-overlay {
    position: absolute;
    top: 0;
    background-clip: text;
}

.hero-description {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
}

.hero-stats-inline {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.inline-stat {
    position: relative;
}

.inline-stat .stat-num {
    font-size: 36px;
    font-weight: 800;
    color: #d70006;
    line-height: 1;
    margin-bottom: 8px;
}

.inline-stat .stat-text {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-marker {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    z-index: 10;
}

.marker-pulse {
    width: 40px;
    height: 40px;
    background: rgba(215, 0, 6, 0.3);
    border-radius: 50%;
    position: absolute;
    animation: markerPulse 2s ease-out infinite;
}

.marker-dot {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #d70006 0%, #ca1f26 100%);
    border-radius: 50%;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 15px rgba(215, 0, 6, 0.4);
    position: relative;
    z-index: 2;
}

.marker-label {
    background: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: #232331;
    margin-top: 35px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.marker-1 {
    top: 30%;
    left: 60%;
}

.marker-2 {
    top: 50%;
    left: 30%;
}

.marker-3 {
    top: 70%;
    left: 75%;
}

@keyframes markerPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Timeline Layout */
.facilities-timeline {
    position: relative;
    padding: 40px 0;
}

.facilities-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #d70006, #ca1f26);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 80px;
    position: relative;
}

.timeline-left {
    flex-direction: row;
}

.timeline-right {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5;
}

.marker-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d70006 0%, #ca1f26 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 32px;
    box-shadow: 0 8px 30px rgba(215, 0, 6, 0.3);
    border: 5px solid #ffffff;
}

.marker-line {
    width: 4px;
    height: 100px;
    background: transparent;
}

.marker-line-end {
    background: transparent;
}

.timeline-content {
    width: calc(50% - 60px);
}

.timeline-left .timeline-content {
    margin-right: auto;
    padding-right: 40px;
}

.timeline-right .timeline-content {
    margin-left: auto;
    padding-left: 40px;
}

/* Facility Card Alternative */
.facility-card-alt {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
}

.facility-card-alt:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.card-header-alt {
    background: linear-gradient(135deg, #232331 0%, #1a1a1a 100%);
    padding: 35px;
    position: relative;
}

.card-header-alt::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d70006 0%, #ca1f26 100%);
}

.location-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.headquarters-tag {
    background: linear-gradient(135deg, #d70006 0%, #ca1f26 100%);
    color: #ffffff;
}

.warehouse-tag {
    background: linear-gradient(135deg, #28a745 0%, #20873a 100%);
    color: #ffffff;
}

.facility-title-alt {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.facility-location-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.facility-location-text i {
    color: #d70006;
    margin-right: 8px;
}

.card-body-alt {
    padding: 40px;
}

/* Image Showcase */
.facility-image-showcase {
    margin-bottom: 35px;
}

.main-showcase-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 350px;
    margin-bottom: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.facility-card-alt:hover .main-showcase-image img {
    transform: scale(1.05);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    color: #ffffff;
    font-weight: 600;
}

.showcase-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.showcase-thumbnails img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.showcase-thumbnails img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(215, 0, 6, 0.3);
}

.more-images {
    background: linear-gradient(135deg, #d70006 0%, #ca1f26 100%);
    color: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
}

/* Info Grid */
.facility-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.info-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.info-item:hover {
    background: #ffffff;
    border-color: #d70006;
    box-shadow: 0 5px 20px rgba(215, 0, 6, 0.1);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d70006 0%, #ca1f26 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
    flex-shrink: 0;
}

.info-details {
    flex: 1;
}

.info-label {
    font-size: 12px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.info-value {
    font-size: 18px;
    font-weight: 800;
    color: #232331;
}

/* Description Box */
.facility-desc-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-left: 4px solid #d70006;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
}

.facility-desc-box p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.facility-desc-box p:last-child {
    margin-bottom: 0;
}

/* Facility Actions */
.facility-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.btn-facility-primary,
.btn-facility-map {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-facility-primary {
    background: linear-gradient(135deg, #d70006 0%, #ca1f26 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(215, 0, 6, 0.3);
}

.btn-facility-primary:hover {
    background: linear-gradient(135deg, #b30005 0%, #a81b21 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(215, 0, 6, 0.4);
    color: #ffffff;
}

.btn-facility-map {
    background: #ffffff;
    color: #232331;
    border: 2px solid #e0e0e0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.btn-facility-map:hover {
    background: #f8f9fa;
    border-color: #d70006;
    color: #d70006;
    transform: translateY(-2px);
}

/* Map Embed */
.facility-map-embed {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Comparison Section */
.facilities-comparison-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 60px 40px;
    margin-top: 80px;
    margin-bottom: 60px;
}

.comparison-title {
    font-size: 36px;
    font-weight: 800;
    color: #232331;
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.title-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d70006 0%, #ca1f26 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 28px;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.facilities-comparison-table {
    width: 100%;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.facilities-comparison-table thead {
    background: linear-gradient(135deg, #232331 0%, #1a1a1a 100%);
}

.facilities-comparison-table th {
    padding: 25px 20px;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    border-bottom: 4px solid #d70006;
}

.facilities-comparison-table th:first-child {
    text-align: left;
}

.table-facility-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.table-facility-header i {
    font-size: 24px;
    color: #d70006;
}

.facilities-comparison-table tbody tr {
    transition: all 0.3s ease;
}

.facilities-comparison-table tbody tr:hover {
    background: #f8f9fa;
}

.facilities-comparison-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
    font-size: 15px;
}

.facilities-comparison-table td:first-child {
    text-align: left;
    color: #232331;
    font-weight: 600;
}

.highlight-value {
    color: #d70006;
    font-weight: 700;
}

.text-success {
    color: #28a745;
}

.text-muted {
    color: #999;
}

/* Final CTA */
.facilities-final-cta {
    background: linear-gradient(135deg, #232331 0%, #1a1a1a 100%);
    border-radius: 20px;
    padding: 50px 60px;
    position: relative;
    overflow: hidden;
}

.facilities-final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(215, 0, 6, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-title {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.cta-text {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.btn-cta-large {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #d70006 0%, #ca1f26 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 35px;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(215, 0, 6, 0.3);
}

.btn-cta-large:hover {
    background: linear-gradient(135deg, #b30005 0%, #a81b21 100%);
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(215, 0, 6, 0.4);
    color: #ffffff;
}

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

    .timeline-marker {
        left: 30px;
        transform: none;
    }

    .marker-circle {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .timeline-left,
    .timeline-right {
        flex-direction: row;
    }

    .timeline-content {
        width: calc(100% - 100px);
        margin-left: 100px !important;
        padding-left: 20px !important;
        padding-right: 0 !important;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-visual {
        height: 350px;
        margin-top: 30px;
    }

    .facilities-comparison-table {
        font-size: 13px;
    }

    .facilities-comparison-table th,
    .facilities-comparison-table td {
        padding: 15px 10px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-stats-inline {
        gap: 20px;
    }

    .inline-stat .stat-num {
        font-size: 28px;
    }

    .hero-visual {
        height: 300px;
    }

    .marker-circle {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .card-header-alt {
        padding: 25px;
    }

    .facility-title-alt {
        font-size: 24px;
    }

    .card-body-alt {
        padding: 25px;
    }

    .main-showcase-image {
        height: 250px;
    }

    .facility-info-grid {
        grid-template-columns: 1fr;
    }

    .facilities-comparison-section {
        padding: 40px 20px;
    }

    .comparison-title {
        font-size: 28px;
        flex-direction: column;
    }

    .facilities-final-cta {
        padding: 40px 30px;
        text-align: center;
    }

    .cta-title {
        font-size: 24px;
    }

    .btn-cta-large {
        width: 100%;
        justify-content: center;
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .facilities-timeline::before {
        left: 20px;
    }

    .timeline-marker {
        left: 20px;
    }

    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
        padding-left: 15px !important;
    }

    .showcase-thumbnails {
        grid-template-columns: repeat(2, 1fr);
    }

    .facility-actions {
        flex-direction: column;
    }

    .btn-facility-primary,
    .btn-facility-map {
        width: 100%;
        justify-content: center;
    }
}

/* ================================
   PROFESSIONAL STATS SECTION - REDESIGNED
   ================================ */

/* Section Container */
.stats-section-professional {
    margin-top: 100px;
    background-image: url(../images/DJI_20250129105809_0013_D.JPG);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* Dark Overlay with Black 80% Opacity */
.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.stats-section-professional .container {
    position: relative;
    z-index: 1;
}

/* Left Content Box */
.stats-content-box {
    padding-right: 30px;
}

/* Trust Badge */
.stats-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(215, 0, 6, 0.2) 0%, rgba(35, 35, 49, 0.3) 100%);
    backdrop-filter: blur(15px);
    padding: 12px 25px;
    border-radius: 35px;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 25px;
    border: 2px solid rgba(215, 0, 6, 0.4);
    box-shadow: 0 4px 15px rgba(215, 0, 6, 0.2);
    text-transform: uppercase;
}

.stats-badge i {
    color: #d70006;
    margin-right: 8px;
}

/* Main Title */
.stats-main-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 25px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.highlight-text {
    color: #d70006;
    display: block;
    font-style: normal;
}

/* Description */
.stats-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 300;
}

/* Feature Items */
.stats-features {
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #fff;
    font-size: 15px;
}

.feature-item i {
    color: #4caf50;
    font-size: 18px;
    margin-right: 12px;
}

/* CTA Buttons */
.stats-cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background: linear-gradient(135deg, #d70006 0%, #ca1f26 100%);
    color: #fff;
    padding: 16px 35px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(215, 0, 6, 0.4);
    border: 2px solid transparent;
    flex-shrink: 0;
    white-space: nowrap;
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    color: #d70006;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
    border-color: #d70006;
}

.btn-secondary-custom {
    background: linear-gradient(135deg, #232331 0%, #1a1a1a 100%);
    color: #ffffff;
    padding: 16px 35px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid #232331;
    transition: all 0.3s ease;
    text-decoration: none;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 5;
    box-shadow: 0 4px 15px rgba(35, 35, 49, 0.4);
    flex-shrink: 0;
    white-space: nowrap;
}

.btn-secondary-custom:hover {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    color: #ffffff;
    border-color: #d70006;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(35, 35, 49, 0.6);
}

/* Stats Grid */
.stats-grid-professional {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Stat Cards */
.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(215, 0, 6, 0.6);
}

/* Highlighted Cards */
.stat-card-highlight {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(248, 249, 250, 0.2) 100%);
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.stat-card-highlight:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(248, 249, 250, 0.4) 100%);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Stat Icons */
.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(215, 0, 6, 0.1) 0%, rgba(35, 35, 49, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(215, 0, 6, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(215, 0, 6, 0.2);
}

.stat-card:hover .stat-icon {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(215, 0, 6, 0.1) 100%);
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.8);
}

.stat-card:hover .stat-icon i {
    color: #ffffff;
}

.stat-icon i {
    font-size: 36px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Stat Content */
.stat-content {
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff !important;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-description {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

/* ================================
   OFFER SECTION (Community Support)
   ================================ */
.offer-section {
    background: #a31d1d;
    color: #ffffff;
    padding: 50px 0;
}

.offer-section .sec-title {
    margin-bottom: 20px;
}

.offer-section .sec-title .sub-title {
    font-size: 18px;
    color: #f4f4f4;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offer-section .sec-title h2 {
    font-size: 32px;
    color: #ffffff;
    margin: 10px 0;
}

.offer-section .list-style-two li {
    margin-bottom: 10px;
    font-size: 16px;
}

.offer-section .list-style-two li i {
    margin-right: 8px;
    color: #d70006;
}

.offer-section .theme-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #000000;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 14px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.offer-section .theme-btn:hover {
    background: #d70006;
    color: #ffffff;
}

.offer-section .image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.offer-section .image-grid .image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-section .image-grid .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.offer-section .image-grid .image:hover img {
    transform: scale(1.1);
}

.offer-section .image-grid .image:hover {
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
}

/* ================================
   NEWS/BLOG SECTION
   ================================ */
.blog-section .container-fluid {
    padding: 3rem 2rem;
    margin-bottom: 10rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.blog-section .text-center {
    text-align: center;
}

.blog-section .mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.blog-section .mb-5 {
    margin-bottom: 3rem;
}

.blog-section .display-5 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333 !important;
}

.blog-section .w-25 {
    width: 25%;
}

.blog-section .bg-primary {
    background-color: #d70006 !important;
}

.blog-section hr {
    border: 0;
    height: 3px;
    margin: 1rem auto;
}

.blog-section .row.g-5 {
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
}

.blog-section .col-lg-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 15px;
}

.blog-section .blog-item {
    background: #fff !important;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.blog-section .blog-item:hover {
    transform: translateY(-5px);
}

.blog-section .position-relative {
    position: relative;
}

.blog-section .overflow-hidden {
    overflow: hidden;
}

.blog-section .img-fluid {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.blog-section .blog-item:hover .img-fluid {
    transform: scale(1.05);
}

.blog-section .bg-secondary {
    background-color: #fff !important;
    position: relative;
}

.blog-section .d-flex {
    display: flex;
}

.blog-section .flex-shrink-0 {
    flex-shrink: 0;
}

.blog-section .flex-column {
    flex-direction: column;
}

.blog-section .justify-content-center {
    justify-content: center;
}

.blog-section .bg-primary.text-white {
    background-color: #d70006 !important;
    color: #fff !important;
    padding: 1rem;
}

.blog-section .bg-primary span {
    font-size: 1.5rem;
    font-weight: bold;
}

.blog-section .bg-primary h5 {
    font-size: 1rem;
    margin: 0.5rem 0;
}

.blog-section .py-3 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.blog-section .px-4 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.blog-section .mb-2 {
    margin-bottom: 0.5rem;
}

.blog-section .text-uppercase {
    text-transform: uppercase;
}

.blog-section .me-3 {
    margin-right: 1rem;
}

.blog-section .bi {
    font-size: 0.9rem;
    vertical-align: middle;
}

.blog-section small {
    font-size: 0.75rem;
    color: #6c757d !important;
}

.blog-section .h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333 !important;
    margin: 0;
    text-decoration: none;
    line-height: 1.4;
    text-align: left !important;
}

.blog-section .h4:hover {
    color: #d70006 !important;
}

.blog-section .blog-item-content {
    text-align: center;
}

.blog-section .arrow-icon {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}

.blog-section .arrow-icon i {
    color: #d70006 !important;
    font-size: 1.5rem;
}

/* ================================
   ABOUT SECTION BUTTON STYLES
   ================================ */
.btm-box {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
}

/* ========================================
   LOGISTICS TIMELINE BRIDGE
   ======================================== */

.logistics-timeline-bridge {
    position: relative;
    z-index: 100;
    margin-top: -100px;
    margin-bottom: -50px;
    background: transparent;
}

.logistics-timeline-bridge .timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(215, 0, 6, 0.1);
}

.logistics-timeline-bridge .timeline-line {
    position: absolute;
    top: 50%;
    left: 90px;
    right: 90px;
    height: 100px;
    transform: translateY(-50%);
    z-index: 1;
}

.logistics-timeline-bridge .timeline-line svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 10px rgba(215, 0, 6, 0.3));
}

.logistics-timeline-bridge .wave-path {
    stroke: url(#waveGradient);
    stroke-width: 4;
    stroke-linecap: round;
}

.logistics-timeline-bridge .checkpoint {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.logistics-timeline-bridge .checkpoint-circle {
    width: 80px;
    height: 80px;
    background: #d70006;
    border: 4px solid #d70006;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(215, 0, 6, 0.2);
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
    min-width: 80px;
    min-height: 80px;
}

.logistics-timeline-bridge .checkpoint-circle::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid rgba(215, 0, 6, 0.5);
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s ease;
    animation: checkpointPulse 2s infinite;
}

.logistics-timeline-bridge .checkpoint.active .checkpoint-circle {
    transform: scale(1.2);
    box-shadow: 0 8px 30px rgba(215, 0, 6, 0.4);
    background: #d70006;
}

.logistics-timeline-bridge .checkpoint-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logistics-timeline-bridge .checkpoint-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
    max-width: 40px;
    max-height: 40px;
}

.logistics-timeline-bridge .checkpoint-label {
    margin-top: 20px;
    font-size: 14px;
    font-weight: 700;
    color: #232331;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.logistics-timeline-bridge .checkpoint.active .checkpoint-label {
    color: #d70006;
}

/* Mobile Responsive for Timeline Bridge */
@media (max-width: 768px) {
    .logistics-timeline-bridge {
        margin-top: -80px;
        margin-bottom: -40px;
        padding: 0 15px;
    }
    
    .logistics-timeline-bridge .timeline-container {
        height: 120px;
        padding: 20px 30px;
        justify-content: space-between;
        max-width: 100%;
        margin: 0;
    }
    
    .logistics-timeline-bridge .timeline-line {
        left: 50px;
        right: 50px;
        height: 80px;
    }
    
    .logistics-timeline-bridge .checkpoint {
        flex: 0 0 auto;
        min-width: 60px;
    }
    
    .logistics-timeline-bridge .checkpoint-circle {
        width: 10px;
        height: 10px;
    }
    
    .logistics-timeline-bridge .checkpoint-icon {
        width: 40px;
        height: 40px;
    }
    
    .logistics-timeline-bridge .checkpoint-label {
        font-size: 10px;
        margin-top: 8px;
        font-weight: 600;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 576px) {
    .logistics-timeline-bridge {
        margin-top: -60px;
        margin-bottom: -30px;
        padding: 0 10px;
    }
    
    .logistics-timeline-bridge .timeline-container {
        height: 100px;
        padding: 15px 25px;
        justify-content: space-between;
        max-width: 100%;
        margin: 0;
    }
    
    .logistics-timeline-bridge .timeline-line {
        left: 40px;
        right: 40px;
        height: 60px;
    }
    
    .logistics-timeline-bridge .checkpoint {
        flex: 0 0 auto;
        min-width: 50px;
    }
    
    .logistics-timeline-bridge .checkpoint-circle {
        width: 10px;
        height: 10px;
    }
    
    .logistics-timeline-bridge .checkpoint-icon {
        width: 40px;
        height: 40px;
    }
    
    .logistics-timeline-bridge .checkpoint-label {
        font-size: 9px;
        margin-top: 6px;
        font-weight: 600;
        letter-spacing: 0.3px;
    }
}

/* ================================
   PROFESSIONAL SERVICES SECTION
   ================================ */

/* Section Container */
.services-section-professional {
    padding: 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

/* Animated Background Elements */
.services-section-professional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(215, 0, 6, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(215, 0, 6, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(215, 0, 6, 0.06) 0%, transparent 50%);
    z-index: 0;
    animation: backgroundPulse 8s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

/* Floating Geometric Shapes */
.services-section-professional::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 10%;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, rgba(215, 0, 6, 0.1), rgba(215, 0, 6, 0.05));
    border-radius: 50%;
    z-index: 0;
    animation: floatShape1 6s ease-in-out infinite;
}

@keyframes floatShape1 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Services Overlay */
.services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    z-index: 0;
}

.services-section-professional .container {
    position: relative;
    z-index: 1;
}

/* Additional Animated Elements */
.services-section-professional .container::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 5%;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(215, 0, 6, 0.15), rgba(215, 0, 6, 0.05));
    border-radius: 8px;
    z-index: 0;
    animation: floatShape2 7s ease-in-out infinite;
}

.services-section-professional .container::after {
    content: '';
    position: absolute;
    bottom: 30%;
    right: 15%;
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, rgba(215, 0, 6, 0.12), rgba(215, 0, 6, 0.03));
    border-radius: 50%;
    z-index: 0;
    animation: floatShape3 5s ease-in-out infinite;
}

@keyframes floatShape2 {
    0%, 100% { transform: translateX(0px) translateY(0px) rotate(0deg); }
    25% { transform: translateX(10px) translateY(-15px) rotate(90deg); }
    50% { transform: translateX(-5px) translateY(-25px) rotate(180deg); }
    75% { transform: translateX(-10px) translateY(-10px) rotate(270deg); }
}

@keyframes floatShape3 {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-15px) scale(1.2); }
}

/* Floating Particles */
.services-section-professional .services-header::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 20%;
    width: 8px;
    height: 8px;
    background: rgba(215, 0, 6, 0.2);
    border-radius: 50%;
    z-index: 0;
    animation: particleFloat1 4s ease-in-out infinite;
}

.services-section-professional .services-header::after {
    content: '';
    position: absolute;
    top: -10px;
    right: 25%;
    width: 6px;
    height: 6px;
    background: rgba(215, 0, 6, 0.15);
    border-radius: 50%;
    z-index: 0;
    animation: particleFloat2 6s ease-in-out infinite;
}

@keyframes particleFloat1 {
    0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.2; }
    50% { transform: translateY(-30px) translateX(10px); opacity: 0.8; }
}

@keyframes particleFloat2 {
    0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.15; }
    50% { transform: translateY(-25px) translateX(-15px); opacity: 0.6; }
}

/* Section Header */
.services-header {
    margin-bottom: 80px;
    text-align: center;
}

/* Services Title - Keep Simple */
.services-title {
    font-size: 48px;
    font-weight: 800;
    color: #232331;
    line-height: 1.0;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.services-highlight {
    color: #d70006;
    font-style: normal;
}

/* Services Description */
.services-description {
    color: #666;
    font-size: 18px;
    line-height: 1.8;
    margin: 0 auto;
    font-weight: 400;
    text-align: left;
    padding: 0;
    max-width: 1200px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Service Card */
.service-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(215, 0, 6, 0.1);
}

/* Animated Card Background */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(215, 0, 6, 0.02) 0%, rgba(215, 0, 6, 0.01) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(215, 0, 6, 0.15);
    border-color: rgba(215, 0, 6, 0.3);
}

.service-card-inner {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Service Number Badge */
.service-number {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    background: linear-gradient(135deg, #d70006 0%, #ca1f26 100%);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(215, 0, 6, 0.3);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 15px rgba(215, 0, 6, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 6px 20px rgba(215, 0, 6, 0.4); }
}

/* Service Image */
.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(215, 0, 6, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.service-link {
    color: #ffffff;
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.service-link:hover {
    transform: scale(1.2);
}

/* Service Content */
.service-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Service Title */
.service-title {
    font-size: 24px;
    font-weight: 700;
    color: #232331;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-title a:hover {
    color: #d70006;
}

/* Service Description */
.service-description {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Service Features */
.service-features {
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: #666;
    font-size: 14px;
}

.feature-item i {
    color: #d70006;
    font-size: 16px;
    margin-right: 10px;
}

/* Service CTA */
.service-cta {
    margin-top: auto;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #d70006 0%, #ca1f26 100%);
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(215, 0, 6, 0.3);
}

.service-btn:hover {
    background: linear-gradient(135deg, #ca1f26 0%, #d70006 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(215, 0, 6, 0.4);
    color: #ffffff;
}

/* Section CTA */
.services-section-cta {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Services Section Button Styling */
.services-section-cta .btn-primary-custom,
.services-section-cta .btn-secondary-custom {
    min-width: 200px;
    max-width: 250px;
    width: auto;
    flex: 0 0 auto;
    justify-content: center;
    white-space: nowrap;
}

/* ================================
   PROFESSIONAL ABOUT SECTION
   ================================ */

/* Section Container */
.about-section-professional {
    padding: 20px 0 50px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* About Overlay */
.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 0;
}

.about-section-professional .container {
    position: relative;
    z-index: 1;
    padding-left: 40px;
    padding-right: 40px;
}

/* Content Box */
.about-content-box {
    padding-right: 40px;
}

/* About Badge */
.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(215, 0, 6, 0.1);
    color: #d70006;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(215, 0, 6, 0.2);
}

.about-badge i {
    font-size: 14px;
}

/* Main Title */
.about-main-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #232331;
}

.about-main-title .highlight-text {
    color: #d70006;
    position: relative;
}

.about-main-title .highlight-text::after {
    display: none;
}

/* Description */
.about-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

/* Features */
.about-features {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-features .feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(215, 0, 6, 0.1);
    transition: all 0.3s ease;
}

.about-features .feature-item:hover {
    background: rgba(215, 0, 6, 0.05);
    border-color: rgba(215, 0, 6, 0.2);
    transform: translateX(10px);
}

.about-features .feature-item i {
    font-size: 20px;
    color: #d70006;
    width: 30px;
    text-align: center;
}

.about-features .feature-item span {
    font-size: 16px;
    font-weight: 600;
    color: #232331;
}

/* CTA Buttons */
.about-cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    position: relative;
    z-index: 4;
    align-items: center;
}

/* Modern Images Container */
.about-images-modern {
    position: relative;
    height: 760px;
    padding: 20px;
}

/* Hero Image Container */
.hero-image-container {
    position: relative;
    width: 100%;
    height: 48%;
    max-height: 360px;
    margin-bottom: 20px;
}

/* Hero Video */
.hero-video {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

/* Video Thumbnail */
.video-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: all 0.4s ease;
}

.video-thumbnail:hover {
    transform: scale(1.02);
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.6s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.02);
}

/* Video Overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(215, 0, 6, 0.3) 0%, rgba(215, 0, 6, 0.2) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.4s ease;
    text-align: center;
    padding: 0;
    margin: 0;
    padding-top: 30px;
}

.video-thumbnail:hover .video-overlay {
    background: linear-gradient(135deg, rgba(215, 0, 6, 0.8) 0%, rgba(215, 0, 6, 0.6) 100%);
}

/* Large Play Button */
.play-button-large {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d70006;
    font-size: 36px;
    transition: all 0.3s ease;
    margin: 0;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    flex-shrink: 0;
    animation: playButtonPulse 2s infinite;
}

.play-button-large::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: playButtonRing 2s infinite;
}

.play-button-large:hover {
    background: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    animation: none;
}

.play-button-large:hover::before {
    animation: playButtonRingHover 0.6s infinite;
}

.play-button-large i {
    margin-left: 3px; /* Slight adjustment for visual centering */
    animation: playIconBounce 2s infinite;
}

@keyframes playButtonPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    }
}

@keyframes playButtonRing {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

@keyframes playButtonRingHover {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

@keyframes playIconBounce {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(2px);
    }
}

/* Video Content */
.video-content {
    text-align: center;
    color: #ffffff;
    transform: translateY(20px);
    transition: transform 0.4s ease;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}

.video-thumbnail:hover .video-content {
    transform: translateY(0);
}

.video-content h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.video-content p {
    font-size: 16px;
    opacity: 0.9;
}

/* Hero Image (Fallback) */
.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

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

.hero-image:hover img {
    transform: scale(1.08);
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(215, 0, 6, 0.9) 0%, rgba(215, 0, 6, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.hero-image:hover .hero-overlay {
    opacity: 1;
}

.hero-content {
    text-align: center;
    color: #ffffff;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.hero-image:hover .hero-content {
    transform: translateY(0);
}

.hero-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-icon i {
    font-size: 32px;
    color: #ffffff;
}

.hero-content h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 16px;
    opacity: 0.9;
}

/* Floating Shapes */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(215, 0, 6, 0.1), rgba(215, 0, 6, 0.05));
    animation: floatShape 6s ease-in-out infinite;
}

.shape-1 {
    width: 60px;
    height: 60px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 40px;
    height: 40px;
    bottom: 20%;
    left: 5%;
    animation-delay: 3s;
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Single Large Image */
.single-large-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    height: 48%;
    margin-bottom: 20px;
}

.single-large-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}




/* Industry Excellence Badge - Modern Showcase Design */
.industry-excellence-badge {
    position: absolute;
    top: 200px;
    right: -150px;
    z-index: 3;
    animation: excellenceFloat 6s ease-in-out infinite;
}

@keyframes excellenceFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

.excellence-showcase {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    padding: 28px;
    min-width: 300px;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(215, 0, 6, 0.3);
    overflow: hidden;
}

.excellence-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(215, 0, 6, 0.1) 0%, transparent 50%, rgba(215, 0, 6, 0.05) 100%);
    pointer-events: none;
}

.showcase-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.showcase-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #d70006 0%, #ff4444 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(215, 0, 6, 0.4);
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 8px 20px rgba(215, 0, 6, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 12px 25px rgba(215, 0, 6, 0.6); }
}

.showcase-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.showcase-content {
    position: relative;
    z-index: 2;
}

.main-achievement {
    text-align: center;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(215, 0, 6, 0.2);
}

.achievement-number {
    font-size: 48px;
    font-weight: 900;
    color: #d70006;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(215, 0, 6, 0.5);
}

.achievement-text {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.achievement-grid {
    display: flex;
    gap: 15px;
}

.achievement-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.achievement-item:hover {
    background: rgba(215, 0, 6, 0.1);
    border-color: rgba(215, 0, 6, 0.3);
    transform: translateY(-2px);
}

.achievement-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #d70006 0%, #ca1f26 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    flex-shrink: 0;
}

.achievement-details {
    flex: 1;
}

.achievement-count {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 2px;
}

.achievement-label {
    font-size: 11px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.showcase-footer {
    margin-top: 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.excellence-tag {
    display: inline-block;
    background: linear-gradient(135deg, #d70006 0%, #ca1f26 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 15px rgba(215, 0, 6, 0.3);
}

/* Decorative Elements */
.decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.deco-line {
    position: absolute;
    background: linear-gradient(90deg, rgba(215, 0, 6, 0.1), transparent);
    height: 2px;
    animation: lineMove 8s ease-in-out infinite;
}

.line-1 {
    top: 30%;
    left: 0;
    width: 40%;
    animation-delay: 0s;
}

.line-2 {
    bottom: 40%;
    right: 0;
    width: 35%;
    animation-delay: 4s;
}

@keyframes lineMove {
    0%, 100% { transform: translateX(0px); opacity: 0.3; }
    50% { transform: translateX(20px); opacity: 0.8; }
}

.deco-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(215, 0, 6, 0.3);
    border-radius: 50%;
    animation: dotPulse 3s ease-in-out infinite;
}

.dot-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.dot-2 {
    top: 60%;
    right: 20%;
    animation-delay: 1s;
}

.dot-3 {
    bottom: 25%;
    left: 25%;
    animation-delay: 2s;
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.5); opacity: 0.8; }
}

/* ================================
   RESPONSIVE STYLES
   ================================ */

/* Professional Services Section Responsive */
@media (max-width: 1024px) {
    .services-title {
        font-size: 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

/* Professional Stats Section Responsive */
@media (max-width: 1024px) {
    .stats-main-title {
        font-size: 36px;
    }
    
    .stats-grid-professional {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .about-section-professional {
        padding: 20px 0 30px 0;
    }

    .about-section-professional .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    /* CTA Buttons - Mobile */
    .about-cta-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        justify-content: center;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        padding: 12px 25px;
        font-size: 12px;
        width: auto;
        min-width: 200px;
        justify-content: center;
        text-align: center;
    }
    
    /* Industry Excellence Badge - Mobile */
    .industry-excellence-badge {
        top: -150px;
        right: -20px;
        transform: scale(0.7);
    }
    
    .excellence-showcase {
        padding: 20px;
        min-width: 210px;
    }
    
    .showcase-header {
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .showcase-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .showcase-title {
        font-size: 12px;
    }
    
    .main-achievement {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .achievement-number {
        font-size: 32px;
        margin-bottom: 6px;
    }
    
    .achievement-text {
        font-size: 11px;
    }
    
    .achievement-grid {
        gap: 10px;
    }
    
    .achievement-item {
        padding: 12px;
        gap: 8px;
    }
    
    .achievement-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .achievement-count {
        font-size: 14px;
    }
    
    .achievement-label {
        font-size: 9px;
        color: #ffffff;
    }
    
    .excellence-tag {
        padding: 6px 12px;
        font-size: 9px;
    }
    
    .services-section-professional {
        padding: 0 0 5px 0;
    }
    
    .services-title {
        font-size: 32px;
        white-space: nowrap;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-section-cta {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
        max-width: 300px;
    }
    
    .stats-section-professional {
        padding: 40px 0;
        margin-top: 60px;
    }
    
    .stats-content-box {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .stats-main-title {
        font-size: 32px;
    }
    
    .stats-grid-professional {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stats-cta-buttons {
        justify-content: center;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
        justify-content: center;
    }
    
    .stats-features {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .stats-main-title {
        font-size: 28px;
    }
    
    /* About Section Mobile */
    .about-section-professional {
        padding: 30px 0 60px 0;
    }

    .about-section-professional .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .about-content-box {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .about-main-title {
        font-size: 32px;
    }
    
    .about-features {
        align-items: center;
    }
    
    .about-features .feature-item {
        justify-content: center;
        text-align: center;
    }
    
    .about-cta-buttons {
        justify-content: center;
    }
    
    .about-images-modern {
        height: 620px;
        padding: 10px;
    }
    
    .hero-image-container {
        height: 48%;
        max-height: 300px;
        margin-bottom: 15px;
    }
    
    .image-gallery {
        height: 30%;
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .industry-excellence-badge {
        top: 220px;
        right: -30px;
    }
    
    .excellence-container {
        padding: 20px;
        min-width: 250px;
    }
    
    .excellence-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        top: 10px;
        right: 20px;
    }
    
    .excellence-number .counter {
        font-size: 28px;
    }
    
    .excellence-plus {
        font-size: 18px;
    }
    
    .excellence-label {
        font-size: 12px;
    }
    
    .excellence-subtitle {
        font-size: 10px;
    }
    
    .excellence-stats {
        gap: 15px;
    }
    
    .excellence-stats .stat-number {
        font-size: 16px;
        color: #d70006 !important;
    }
    
    .excellence-stats .stat-label {
        font-size: 9px;
    }
    
    .experience-badge {
        top: 10px;
        left: 10px;
        padding: 15px;
    }
    
    .experience-number {
        font-size: 24px;
    }
}
    
    .stat-number {
        font-size: 40px;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon i {
        font-size: 28px;
    }
}

/* Blog Section Responsive */
@media (max-width: 992px) {
    .blog-section .row.g-5 {
        flex-wrap: wrap;
    }
    .blog-section .col-lg-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    .blog-section .container-fluid {
        padding: 3rem 0;
    }
    
    .blog-section .row.g-5 {
        flex-wrap: wrap;
    }
    
    .blog-section .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0;
    }
    
    .blog-section .display-5 {
        font-size: 2rem;
    }
}




