    /* Modern Product Card Styles */
    .product-card {
        background: #fff;
        border-radius: 20px;
        padding: 0;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        overflow: hidden;
        position: relative;
        height: 200px;
        cursor: pointer;
        border: 1px solid #f0f0f0;
    }

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

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

    .product-card:hover {
        transform: translateY(-12px) scale(1.02);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        border-color: #fecc00;
    }

    .product-content {
        padding: 40px 30px;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        position: relative;
        z-index: 2;
    }

    .product-icon {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #fecc00, #ffd700);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        transition: all 0.4s ease;
        transform: scale(0.9);
    }

    .product-card:hover .product-icon {
        transform: scale(1.1) rotate(5deg);
        background: linear-gradient(135deg, #ff6b35, #fecc00);
    }

    .product-icon svg {
        width: 24px;
        height: 24px;
        fill: #fff;
        transition: all 0.3s ease;
    }

    .product-card:hover .product-icon svg {
        transform: scale(1.2);
    }

    .product-name {
        font-size: 18px;
        font-weight: 600;
        color: #333;
        margin: 0;
        transition: all 0.3s ease;
        text-decoration: none;
        line-height: 1.3;
    }

    .product-card:hover .product-name {
        color: #fecc00;
        transform: translateY(-2px);
    }

    .product-subtitle {
        font-size: 13px;
        color: #666;
        margin-top: 8px;
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.4s ease;
    }

    .product-card:hover .product-subtitle {
        opacity: 1;
        transform: translateY(0);
    }

    .product-button {
        background: linear-gradient(135deg, #fecc00, #ffd700);
        color: #fff;
        border: none;
        padding: 8px 20px;
        border-radius: 25px;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        cursor: pointer;
        opacity: 0;
        transform: translateY(15px);
        transition: all 0.4s ease 0.1s;
        text-decoration: none;
        display: inline-block;
        margin-top: 12px;
        box-shadow: 0 4px 10px rgba(254, 204, 0, 0.3);
    }

    .product-card:hover .product-button {
        opacity: 1;
        transform: translateY(0);
    }

    .product-button:hover {
        background: linear-gradient(135deg, #ff6b35, #fecc00);
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(254, 204, 0, 0.4);
        color: #fff;
        text-decoration: none;
    }

    /* Category Headers */
    .category-header {
        background: transparent;
        color: #333;
        padding: 15px 0;
        margin-bottom: 30px;
        position: relative;
    }

    .category-header h3 {
        margin: 0;
        font-size: 24px;
        font-weight: 600;
        color: #333;
    }

    /* Filter Dropdown Styles */
    .filter-dropdown {
        position: relative;
    }

    .filter-dropdown select {
        background: white;
        border: 2px solid #ccc;
        border-radius: 8px;
        color: #333;
        padding: 8px 35px 8px 15px;
        font-size: 14px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
        appearance: none;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23666666' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
        background-position: right 10px center;
        background-repeat: no-repeat;
        background-size: 16px;
        min-width: 180px;
    }

    .filter-dropdown select:hover {
        border-color: #999;
    }

    .filter-dropdown select:focus {
        outline: none;
        border-color: #fecc00;
        box-shadow: 0 0 0 3px rgba(254, 204, 0, 0.2);
    }

    .filter-dropdown select option {
        background: white;
        color: #333;
        padding: 10px;
    }

    /* Product card fade animation for filtering */
    .product-card {
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .product-card.hidden {
        opacity: 0;
        transform: scale(0.8);
        pointer-events: none;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .product-card {
            height: 180px;
        }
        
        .product-content {
            padding: 30px 20px;
        }
        
        .product-name {
            font-size: 16px;
        }
        
        .product-icon {
            width: 40px;
            height: 40px;
            margin-bottom: 15px;
        }
        
        .category-header {
            padding: 12px 20px;
        }
        
        .category-header h3 {
            font-size: 18px;
        }
    }

    @media (max-width: 576px) {
        .product-card {
            height: 160px;
        }
        
        .product-content {
            padding: 25px 15px;
        }
        
        .product-name {
            font-size: 15px;
        }
        
        .product-icon {
            width: 35px;
            height: 35px;
        }
    }

    /* Loading Animation */
    .product-card.loading {
        animation: pulse 1.5s ease-in-out infinite;
    }

    @keyframes pulse {
        0% {
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }
        50% {
            box-shadow: 0 8px 25px rgba(254, 204, 0, 0.3);
        }
        100% {
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }
    }

    /* Remove old styles */
    .people-card2.two .people-content .contact-area .contact-number .content {
        display: none;
    }

    /* Salient Features & Contact Section Styles */
    .features-contact-section {
        padding: 3rem 0;
        background-color: #f8f9fa;
    }

    .salient-features .section-title {
        /* color: #fecc00; */
        font-weight: 700;
        border-bottom: 3px solid #000;
        padding-bottom: 10px;
        display: inline-block;
        margin-bottom: 2rem;
    }

    .salient-features .feature-category {
        color: #333;
        font-weight: 600;
        margin-bottom: 20px;
        font-size: 18px;
    }

    .salient-features .feature-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .salient-features .feature-list li {
        padding: 8px 0;
        position: relative;
        padding-left: 20px;
        line-height: 1.6;
        color: #333;
    }

    .salient-features .feature-bullet {
        position: absolute;
        left: 0;
        top: 18px;
        width: 8px;
        height: 8px;
        background: #fecc00;
        display: inline-block;
    }

    /* Contact Form Section Styles */
    .contact-form-section {
        background: #fff;
        padding: 80px 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        height: auto;
        margin-top: 50px;
    }

    .contact-form-section .section-title {
        /* color: #fecc00; */
        /* font-weight: 700; */
        /* border-bottom: 1px solid #fecc00; */
        padding-bottom: 10px;
        display: inline-block;
        /* margin-bottom: 2rem; */
    }

    .contact-form-section .form-control {
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 5px;
        margin-bottom: 1rem;
    }

    .contact-form-section .form-control:focus {
        outline: none;
        border-color: #fecc00;
        box-shadow: 0 0 0 2px rgba(74, 144, 194, 0.2);
    }

    .contact-form-section textarea.form-control {
        resize: vertical;
    }

    .contact-form-section .finance-checkbox {
        display: flex;
        align-items: center;
        margin-bottom: 1rem;
    }

    .contact-form-section .finance-checkbox input[type="checkbox"] {
        margin-right: 8px;
    }

    .contact-form-section .finance-checkbox label {
        margin: 0;
        font-size: 14px;
        cursor: pointer;
    }

    .contact-form-section .submit-btn {
        background: #fecc00;
        border: none;
        padding: 12px 30px;
        border-radius: 5px;
        font-weight: 600;
        width: 100%;
        color: white;
        transition: all 0.3s ease;
        border: 1px solid transparent;
    }

    .contact-form-section .submit-btn:hover {
        background: transparent;
        border: 1px solid #000;
        transform: translateY(-1px);
    }

    /* Service Badges Section Styles */
    .service-badges-section {
        padding: 2rem 0;
        background: #fff;
    }

    .service-badge {
        text-align: center;
        padding: 20px;
        border: 2px solid #e9ecef;
        border-radius: 10px;
        height: 100%;
        transition: all 0.3s ease;
    }

    .service-badge:hover {
        border-color: #fecc00;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(74, 144, 194, 0.1);
    }

    .service-badge .badge-icon {
        color: #fecc00;
        font-size: 40px;
        margin-bottom: 1rem;
    }

    .service-badge h6 {
        color: #fecc00;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .service-badge p {
        margin: 0;
        font-size: 12px;
        color: #666;
        line-height: 1.4;
    }

    /* Responsive adjustments for features section */
    @media (max-width: 768px) {
        .features-contact-section {
            padding: 2rem 0;
        }
        
        .contact-form-section {
            padding: 20px;
            margin-top: 2rem;
        }
        
        .service-badge {
            padding: 15px;
            margin-bottom: 1rem;
        }
        
        .service-badge .badge-icon {
            font-size: 30px;
        }
    }

    @media (max-width: 576px) {
        .salient-features .section-title,
        .contact-form-section .section-title {
            font-size: 1.3rem;
        }
        
        .salient-features .feature-category {
            font-size: 16px;
        }
        
        .service-badge {
            padding: 10px;
        }
        
        .service-badge .badge-icon {
            font-size: 25px;
        }
        
        .service-badge p {
            font-size: 11px;
        }
    }


      /* Product Table Styles */
      .product-table-section {
        background: #f8f9fa;
        }
    
        .table-responsive {
        overflow-x: auto;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border-radius: 12px;
        background: white;
        }
    
        .product-table {
        width: 100%;
        border-collapse: collapse;
        margin: 0;
        font-size: 14px;
        background: white;
        border-radius: 12px;
        overflow: hidden;
        }
    
        .product-table thead {
        background: linear-gradient(135deg, #333, #555);
        color: white;
        }
    
        .product-table thead th {
        padding: 18px 16px;
        text-align: left;
        font-weight: 600;
        font-size: 14px;
        /* text-transform: uppercase; */
        letter-spacing: 0.5px;
        border-bottom: 2px solid #fecc00;
        }
    
        .product-table tbody tr {
        border-bottom: 1px solid #e9ecef;
        transition: all 0.3s ease;
        }
    
        .product-table tbody tr:hover {
        background: #f8f9fa;
        transform: translateX(2px);
        }
    
        .product-table tbody tr:last-child {
        border-bottom: none;
        }
    
        .product-table tbody td {
        padding: 16px;
        vertical-align: middle;
        color: #333;
        font-size: 14px;
        line-height: 1.4;
        }
    
        .product-table tbody tr:nth-child(even) {
        background: #f9f9f9;
        }
    
        .product-table tbody tr:nth-child(even):hover {
        background: #f0f0f0;
        }
    
    
        /* Mobile Responsive */
        @media (max-width: 768px) {
        .product-table {
          font-size: 12px;
        }
    
        .product-table thead th {
          padding: 12px 8px;
          font-size: 12px;
        }
    
        .product-table tbody td {
          padding: 12px 8px;
          font-size: 12px;
        }
    
        .download-link {
          padding: 6px 12px;
          font-size: 12px;
        }
    
        .category-filter-section .row {
          text-align: center;
        }
    
        .category-filter-section .col-md-6 {
          margin-bottom: 15px;
        }
    
        .category-dropdown {
          min-width: 100%;
          width: 100%;
        }
        }
    
        @media (max-width: 600px) {
    
        .product-table thead th,
        .product-table tbody td {
          padding: 8px 6px;
          font-size: 11px;
        }
    
        .download-link {
          padding: 4px 8px;
          font-size: 11px;
        }
        }
    
    
        .gallery-heading-section {
        margin: 50px 0 40px;
        }
    
        .gallery-header {
        display: flex;
        align-items: center;
        }
    
        .gallery-sup-title {
        color: #888;
        font-size: 14px;
        line-height: 1em;
        letter-spacing: .05em;
        text-transform: uppercase;
        margin-right: 20px;
        writing-mode: vertical-lr;
        /* Makes text vertical */
        transform: rotate(180deg);
        /* Rotates to read bottom-to-top */
        line-height: 1;
        color: #fecc00;
        }
    
        .gallery-main-title {
        color: #333;
        font-size: 36px;
        font-weight: 700;
        text-transform: capitalize;
        position: relative;
        margin-top: 60px;
        }
    
        /* .gallery-main-title:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 80px;
        height: 2px;
        background-color: #f39c12;
        } */
    
        .gallery-wrapper {
        max-width: 100%;
        overflow: hidden;
        margin: auto;
        position: relative;
        }
    
        .gallery-container {
        display: flex;
        transition: transform 0.5s ease-in-out;
        will-change: transform;
        }
    
        .gallery-item {
        min-width: 25%;
        flex: 0 0 auto;
        box-sizing: border-box;
        padding: 10px;
        }
    
        .gallery-item img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        border-radius: 8px;
        display: block;
        }
    
        .dots {
        text-align: center;
        margin-top: 15px;
        display: flex;
        justify-content: center;
        gap: 8px;
        }
    
        .dot {
        height: 12px;
        width: 12px;
        background-color: #bbb;
        border-radius: 50%;
        display: inline-block;
        cursor: pointer;
        transition: background-color 0.3s ease;
        }
    
        .dot.active {
        background-color: #333;
        }
    
        /* Responsive adjustments */
        @media (max-width: 992px) {
        .gallery-item {
          min-width: 33.33%;
        }
        }
    
        @media (max-width: 768px) {
        .gallery-item {
          min-width: 50%;
        }
        }
    
        @media (max-width: 480px) {
        .gallery-item {
          min-width: 100%;
        }
        }
    
        /* Features & Video Section Styles */
        .features-video-section {
        background: #f8f9fa;
        padding: 80px 0;
        }
    
        .salient-features-card,
        .video-card {
        background: white;
        border-radius: 16px;
        padding: 40px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
        height: 100%;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
    
        .salient-features-card:hover,
        .video-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
        }
    
        .section-header {
        margin-bottom: 30px;
        }
    
        .section-title {
        color: #333;
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 10px;
        /* text-transform: uppercase; */
        letter-spacing: 1px;
        text-align: left;
        }
    
            .title-underline {
          width: 60px;
          height: 4px;
          background: #fecc00;
          border-radius: 2px;
        }
    
        /* Features Content */
        .features-content {
        margin-bottom: 30px;
        }
    
        .feature-category {
        margin-bottom: 25px;
        }
    
            .feature-category h4 {
          color: #333;
          font-size: 18px;
          font-weight: 600;
          margin-bottom: 12px;
          display: flex;
          align-items: center;
        }
    
        .feature-category h4::before {
          content: '';
          width: 8px;
          height: 8px;
          background: #fecc00;
          border-radius: 50%;
          margin-right: 12px;
          flex-shrink: 0;
        }
    
        .feature-list {
        list-style: none;
        padding: 0;
        margin: 0;
        }
    
        .feature-list li {
        color: #555;
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 8px;
        padding-left: 20px;
        position: relative;
        }
    
        .feature-list li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: #28a745;
        font-weight: bold;
        font-size: 12px;
        }
    
        /* Service Icons Row */
        .service-icons-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 30px;
        padding-top: 30px;
        border-top: 1px solid #e9ecef;
        }
    
        .service-icon {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        flex: 1;
        min-width: 80px;
        }
    
            .icon-circle {
          width: 50px;
          height: 50px;
          background: #fecc00;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          margin-bottom: 8px;
          transition: transform 0.3s ease;
        }
    
        .icon-circle:hover {
        transform: scale(1.1);
        }
    
            .icon-circle i {
          color: white;
          font-size: 20px;
        }
    
        .service-icon span {
        font-size: 11px;
        color: #666;
        font-weight: 500;
        line-height: 1.3;
        }
    
            /* Video Card Styles */
        .video-container {
          position: relative;
          width: 100%;
          border-radius: 16px;
          overflow: hidden;
          /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15); */
          /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
          height: fit-content;
        }
    
        .video-wrapper {
          position: relative;
          /* width: 100%; */
          /* padding-bottom: 56.25%; */
          /* 16:9 aspect ratio */
          background: #000;
          border-radius: 12px;
          margin: 20px;
          overflow: hidden;
          height: 400px;
        }
    
        .video-placeholder {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: #fecc00;
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          color: #333;
          z-index: 2;
          transition: all 0.3s ease;
        }
    
        .video-placeholder:hover {
          background: #ffd700;
          transform: scale(1.02);
        }
    
        .play-button {
          font-size: 80px;
          color: #333;
          margin-bottom: 20px;
          transition: all 0.3s ease;
        }
    
        .play-button:hover {
          transform: scale(1.1);
          color: #000;
        }
    
        .video-overlay {
          text-align: center;
        }
    
        .video-overlay h4 {
          font-size: 24px;
          font-weight: 700;
          margin-bottom: 8px;
          color: #333;
        }
    
        .video-overlay p {
          font-size: 16px;
          opacity: 0.9;
          margin: 0;
        }
    
        .video-wrapper iframe {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          border: none;
          z-index: 1;
        }
    
        .video-description {
          padding: 25px;
          background: white;
          border-top: 1px solid #e9ecef;
        }
    
        .video-info {
          display: flex;
          align-items: flex-start;
          gap: 15px;
        }
    
        .video-icon {
          flex-shrink: 0;
          width: 50px;
          height: 50px;
          background: #fecc00;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          color: #333;
          font-size: 20px;
        }
    
        .video-text h5 {
          color: #333;
          font-size: 18px;
          font-weight: 600;
          margin-bottom: 8px;
        }
    
        .video-text p {
          color: #666;
          font-size: 14px;
          line-height: 1.6;
          margin: 0;
        }
    
        /* Responsive Design */
        @media (max-width: 992px) {
        .features-video-section {
          padding: 60px 0;
        }
    
        .salient-features-card,
        .video-card {
          padding: 30px;
          margin-bottom: 30px;
        }
    
        .section-title {
          font-size: 24px;
        }
    
        .service-icons-row {
          justify-content: center;
          gap: 20px;
        }
    
        .service-icon {
          flex: 0 0 auto;
          min-width: 100px;
        }
        }
    
        @media (max-width: 768px) {
        .features-video-section {
          padding: 40px 0;
        }
    
        .salient-features-card,
        .video-card {
          padding: 25px;
        }
    
        .section-title {
          font-size: 22px;
        }
    
        .service-icons-row {
          flex-wrap: wrap;
          gap: 15px;
        }
    
        .service-icon {
          flex: 0 0 calc(50% - 15px);
          min-width: 120px;
        }
    
        .icon-circle {
          width: 45px;
          height: 45px;
        }
    
        .icon-circle i {
          font-size: 16px;
        }
        }
    
        @media (max-width: 480px) {
    
        .salient-features-card,
        .video-card {
          padding: 20px;
        }
    
        .section-title {
          font-size: 20px;
        }
    
        .feature-category h4 {
          font-size: 16px;
        }
    
        .feature-list li {
          font-size: 13px;
        }
    
        .service-icons-row .row {
          gap: 15px;
        }
    
        .service-icons-row .col-md-4 {
          flex: 0 0 calc(50% - 7.5px);
          max-width: calc(50% - 7.5px);
        }
    
        .service-icon {
          min-width: auto;
        }
    
        .icon-circle {
          width: 45px;
          height: 45px;
        }
    
        .icon-circle i {
          font-size: 16px;
        }
    
        .service-icon span {
          font-size: 10px;
        }
        .video-wrapper {
          height: 250px;
        }
        }