/* view files css */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}


body {
        font-family: 'Segoe UI', sans-serif;
    }

    header {
        background: #0F2A72;
        color: white;
    }

    .main-nav {
        background: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-link {
        color: #000 !important;
        font-weight: 600;
        font-size: 18px;
    }

    .nav-link:hover,
    .nav-link.active {
        color: #0F2A72 !important;
    }

    .search-icon {
        width: 40px;
        height: 40px;
        border: 2px solid #0F2A72;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .search-icon:hover {
        background: #0F2A72;
        color: white;
    }

    .search-icon i {
        font-size: 18px;
    }

    /* .hero {
        background: url('<?= base_url('themes/images/banner.jpg') ?>') no-repeat center center / cover;
        height: 80vh;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 3rem;
        font-weight: bold;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
        position: relative;
    } */

    .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        font-size: 3rem;
        font-weight: bold;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .section-title::after {
        content: '';
        display: block;
        width: 100px;
        height: 3px;
        background: #0F2A72;
        margin: 15px auto 40px;;
    }

    .department-card img {
        width: 100%;
        border-radius: 20px;
    }

    .footer {
        background: #0F2A72;
        color: white;
        padding: 40px 0;
    }

    .footer a {
        color: white;
        text-decoration: none;
    }

    .footer a:hover {
        text-decoration: underline;
    }

    .about-section {
        background: #f7f9fc;
        padding: 60px 0;
    }

    .fade-up {
        opacity: 0;
        transform: translateY(40px);
        transition: all 1s ease;
    }

    .fade-up.show {
        opacity: 1;
        transform: translateY(0);
    }

    .image-container {
        margin-bottom: 20px;
        position: relative;
    }

    .Departments-container .card-1 img,
    .Departments-container .card-1 .overlay-text {
        border-radius: 0px 0px 50px 0px;
    }

    .Departments-container .card-2 img,
    .Departments-container .card-2 .overlay-text {
        border-radius: 0px 0px 0px 50px;
    }

    .Departments-container .card-3 img,
    .Departments-container .card-3 .overlay-text {
        border-radius: 0px 50px 0px 0px;
    }

    .Departments-container .card-4 img,
    .Departments-container .card-4 .overlay-text {
        border-radius: 50px 0px 0px 0px;
    }

    .image-container img {
        display: block;
        width: 100%;
        max-height: 500px;
        object-fit: cover;
    }

    .overlay-text {
        position: absolute;
        bottom: 0;
        width: 100%;
        padding: 16px 12px;
        color: white;
        font-size: 18px;
        font-weight: bold;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
        /* border-radius: 0 0 12px 12px; */
        text-align: center;
    }

    .about-section img {
        border-radius: 0px 80px 0px 0px !important;
        margin: 0 auto;
        display: block;

    }

    :root {
        --primary-color: #0F2A72;
        --secondary-color: #dc3545;
        --accent-color: #6c757d;
        --light-gray: #f8f9fa;
        --border-color: #dee2e6;
    }

    body {
        font-family: 'Segoe UI', sans-serif;
        margin: 0;
        padding: 0;
        background-color: #f5f5f5;
    }

    /* Header Styles */
    header {
        background: #0F2A72;
        color: white;
    }

    .main-nav {
        background: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-link {
        color: #000 !important;
        font-weight: 600;
        font-size: 18px;
    }

    .nav-link:hover,
    .nav-link.active {
        color: #0F2A72 !important;
    }

    .search-icon {
        width: 40px;
        height: 40px;
        border: 2px solid #0F2A72;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .search-icon:hover {
        background: #0F2A72;
        color: white;
    }

    .search-icon i {
        font-size: 18px;
    }

    /* Footer Styles */
    .footer {
        background: #0F2A72;
        color: white;
        padding: 40px 0;
    }

    .footer a {
        color: white;
        text-decoration: none;
    }

    .footer a:hover {
        text-decoration: underline;
    }

    /* Top Navigation */
    .top-nav {
        background: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        padding: 15px 0;
        position: sticky;
        top: 0;
        z-index: 100;
    }

    .nav-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 60px;
        position: relative;
    }

    .category-nav {
        display: flex;
        align-items: center;
        gap: 10px;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 0;
    }

    .category-nav::-webkit-scrollbar {
        display: none;
    }

    .nav-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: var(--primary-color);
        color: white;
        border: none;
        border-radius: 50%;
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 10;
    }

    .nav-arrow:hover {
        background: #0a1f54;
        transform: translateY(-50%) scale(1.1);
    }

    .nav-arrow.left {
        left: 10px;
    }

    .nav-arrow.right {
        right: 10px;
    }

    .nav-arrow.hidden {
        display: none;
    }

    .category-btn {
        background: white;
        border: 2px solid var(--border-color);
        color: var(--primary-color);
        padding: 10px 9px;
        border-radius: 25px;
        cursor: pointer;
        transition: all 0.3s ease;
        white-space: nowrap;
        font-weight: 600;
        min-width: 120px;
        text-align: center;
    }

    .category-btn:hover {
        border-color: var(--primary-color);
        transform: translateY(1px);
    }

    .category-btn.active {
        background: linear-gradient(135deg, var(--primary-color), #1e3a8a);
        color: white;
        border-color: var(--primary-color);
        box-shadow: 0 4px 15px rgba(15, 42, 114, 0.3);
    }

    /* Main Layout */
    .main-container-product {
        max-width: 1200px;
        margin: 20px auto;
        padding: 0 20px;
        display: grid;
        grid-template-columns: 250px 1fr;
        gap: 20px;
        min-height: calc(100vh - 400px);
    }

    /* Left Panel - Subcategories */
    .left-panel {
        background: white;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        padding: 20px;
        height: fit-content;
    }

    .subcategory-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .subcategory-item {
        margin-bottom: 10px;
    }

    .subcategory-btn {
        width: 100%;
        background: white;
        border: 1px solid var(--border-color);
        color: var(--accent-color);
        padding: 12px 15px;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-align: left;
        font-weight: 500;
    }

    .subcategory-btn:hover {
        background: var(--light-gray);
        border-color: var(--accent-color);
    }

    .subcategory-btn.active {
        background: var(--secondary-color);
        color: white;
        border-color: var(--secondary-color);
        box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
    }

    /* Middle Panel - Products */
    .middle-panel {
        background: white;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        padding: 20px;
    }

    .products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }

    .product-card {
        background: white;
        border: 1px solid var(--border-color);
        border-radius: 10px;
        overflow: hidden;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        border-color: var(--primary-color);
    }

    .product-image {
        width: 100%;
        height: 150px;
        object-fit: cover;
        background: var(--light-gray);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--accent-color);
        font-size: 2rem;
    }

    .product-info {
        padding: 15px;
    }

    .product-title {
        font-weight: 600;
        color: var(--primary-color);
        margin-bottom: 5px;
        font-size: 0.95rem;
    }

    .product-model {
        color: var(--accent-color);
        font-size: 0.85rem;
    }

    .no-products {
        text-align: center;
        color: var(--accent-color);
        padding: 40px;
    }

    /* Right Panel - Product Details */
    .right-panel {
        background: white;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        padding: 20px;
        height: fit-content;
        position: sticky;
        top: 100px;
    }

    .detail-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 8px;
        background: var(--light-gray);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--accent-color);
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .detail-title {
        font-size: 1.3rem;
        font-weight: bold;
        color: var(--primary-color);
        margin-bottom: 10px;
    }

    .detail-model {
        color: var(--accent-color);
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .add-to-quote-btn {
        width: 100%;
        background: var(--primary-color);
        color: white;
        border: none;
        padding: 12px 20px;
        border-radius: 8px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .add-to-quote-btn:hover {
        background: #0a1f54;
        transform: translateY(-2px);
    }

    .no-selection {
        text-align: center;
        color: var(--accent-color);
        padding: 40px 20px;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .main-container {
            grid-template-columns: 200px 1fr;
            gap: 15px;
        }
        .main-container-product {
            grid-template-columns: 200px 1fr;
            gap: 15px;
        }
    }

    @media (max-width: 768px) {

        .nav-container{
            padding: 0 50px;
        }


        .main-container {
            grid-template-columns: 1fr;
            gap: 15px;
        }
        .main-container-product {
            grid-template-columns: 1fr;
            gap: 15px;
        }

        .left-panel {
            order: 1;
        }

        .middle-panel {
            order: 2;
        }

        .category-nav {
            padding: 0;
        }

        .nav-arrow {
            width: 30px;
            height: 30px;
        }

        .products-grid {
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 15px;
        }
    }

    @media (max-width: 480px) {
        .products-grid {
            grid-template-columns: 1fr;
        }

        .category-btn {
            min-width: 100px;
            padding: 8px 15px;
            font-size: 0.9rem;
        }
    }

    /* Animations */
    .fade-in {
        animation: fadeIn 0.3s ease-in;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .slide-in {
        animation: slideIn 0.3s ease-out;
    }

    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateX(-20px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /* Product Details Tabs */
    .detail-tabs {
        display: flex;
        margin-bottom: 15px;
        border-bottom: 2px solid var(--border-color);
    }

    .tab-btn {
        padding: 10px 20px;
        cursor: pointer;
        background: none;
        border: none;
        font-weight: 600;
        color: var(--accent-color);
        position: relative;
        transition: color 0.3s ease;
    }

    .tab-btn:hover {
        color: var(--primary-color);
    }

    .tab-btn.active {
        color: var(--primary-color);
    }

    .tab-btn.active::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100%;
        height: 2px;
        background: var(--primary-color);
    }

    .tab-content {
        display: none;
        animation: fadeIn 0.4s;
        margin-bottom: 15px;
    }

    .tab-content.active {
        display: block;
    }

    .tab-content ul {
        list-style-position: inside;
        padding-left: 0;
    }

    .tab-content li {
        margin-bottom: 8px;
        color: #333;
    }

    .tab-content table {
        width: 100%;
        border-collapse: collapse;
    }

    .tab-content th,
    .tab-content td {
        padding: 8px 12px;
        border: 1px solid var(--border-color);
        text-align: left;
        font-size: 0.9rem;
    }

    .tab-content th {
        background: var(--light-gray);
        font-weight: 600;
        width: 40%;
    }

    /* Product Image Gallery */
    #detail-gallery {
        margin-bottom: 20px;
    }

    #detail-thumbnails {
        display: flex;
        gap: 10px;
        margin-top: 10px;
    }

    .thumbnail-img {
        width: 60px;
        height: 60px;
        object-fit: cover;
        border: 2px solid var(--border-color);
        border-radius: 5px;
        cursor: pointer;
        transition: border-color 0.3s ease;
    }

    .thumbnail-img:hover,
    .thumbnail-img.active {
        border-color: var(--primary-color);
    }

      body {
            font-family: 'Segoe UI', sans-serif;
        }

        header {
            background: #0F2A72;
            color: white;
        }

        .main-nav {
            background: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .nav-link {
            color: #000 !important;
            font-weight: 600;
            font-size: 18px;
        }

        .nav-link:hover,
        .nav-link.active {
            color: #0F2A72 !important;
        }

        /* .hero-contact {
            background: linear-gradient(rgba(15, 42, 114, 0.8), rgba(15, 42, 114, 0.8)), url('<?= base_url('themes/images/banner.jpg') ?>');
            background-size: cover;
            background-position: center;
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
        } */

 .contact-info-card-2 {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
             word-break: break-word;
            overflow-wrap: break-word;   
            white-space: normal;
        }

 .contact-info-card-2:hover {
            transform: translateY(-10px);
        }

        .contact-info-card-2 i {
            font-size: 2.5rem;
            color: #0F2A72;
            margin-bottom: 20px;
        }

        .contact-info-card-2 a{
            display: inline-block;        /* Har email ko apne block me rakhega */
            max-width: 100%;  
        }

        .contact-info-card .fa-phone-alt {
            transform: rotate(90deg);
        }

        .contact-info-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 0;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
             word-break: break-word;
            overflow-wrap: break-word;   
            white-space: normal;
            display: flex;
            flex-direction: column;
            justify-content: flex-start; /* vertical center */
            align-items: center;     /* horizontal center */
            height: 100%;
            padding: 20px;
            box-sizing: border-box;
        }

@media (min-width: 600px) and (max-width: 1024px) {
    .contact-info-card{
        min-height: 250px;
    }
}
        

        .contact-info-card:hover {
            transform: translateY(-10px);
        }

        .contact-info-card i {
            font-size: 2.5rem;
            color: #0F2A72;
            margin-bottom: 20px;
        }

        .contact-info-card a{
            display: inline-block;        /* Har email ko apne block me rakhega */
            max-width: 100%;  
        }

        .contact-form {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
        }

        .form-control {
            padding: 12px;
            border: 2px solid #eee;
            border-radius: 8px;
        }

        .form-control:focus {
            border-color: #0F2A72;
            box-shadow: none;
        }

        .btn-primary {
            background: #0F2A72;
            border: none;
            padding: 12px 30px;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background: #0a1f54;
            transform: translateY(-2px);
        }

        .map-container {
            height: 400px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
        }

        .footer {
            background: #0F2A72;
            color: white;
            padding: 40px 0;
            margin-top: 50px;
        }

        .footer a {
            color: white;
            text-decoration: none;
        }

        .footer a:hover {
            text-decoration: underline;
        }

        .social-links {
            margin-top: 20px;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            margin-right: 10px;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: white;
            color: #0F2A72;
            transform: translateY(-3px);
        }
         body {
      font-family: 'Segoe UI', sans-serif;
    }

    header {
      background: #0F2A72;
      color: white;
    }

    .main-nav {
      background: white;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
.nav-link{
  color: #000 !important;
  font-weight: 600;
  font-size: 18px;
}
.nav-link:hover, .nav-link.active {
  color: #0F2A72 !important;
}
    .search-icon {
      width: 40px;
      height: 40px;
      border: 2px solid #0F2A72;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .search-icon:hover {
      background: #0F2A72;
      color: white;
    }
    .search-icon i {
      font-size: 18px;
    }

    .section-title {
      text-align: center;
      font-weight: bold;
      font-size: 2rem;
      margin-top: 20px;
      color: #0F2A72;
    }
    .footer {
      background: #0F2A72;
      color: white;
      padding: 40px 0;
    }

    .footer a {
      color: white;
      text-decoration: none;
    }

    .footer a:hover {
      text-decoration: underline;
    }

    .content-section {
         padding: 20px 0;
    background: #f7f9fc;
    padding-bottom: 10px;
    }

    .content-card {
      background: white;
      padding: 40px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      margin-bottom: 30px;
    }

    .content-card h3 {
      color: #0F2A72;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .content-card p {
      line-height: 1.8;
      margin-bottom: 15px;
      color: #333;
    }

    .content-card ul {
      margin-bottom: 15px;
    }

    .content-card li {
      margin-bottom: 8px;
      line-height: 1.6;
    }

     :root {
            --primary-color: #0F2A72;
            --secondary-color: #dc3545;
            --accent-color: #6c757d;
            --light-gray: #f8f9fa;
            --border-color: #dee2e6;
        }

        body {
            font-family: 'Segoe UI', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f5f5f5;
        }

        /* Header Styles */
        header {
            background: #0F2A72;
            color: white;
        }

        .main-nav {
            background: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .nav-link {
            color: #000 !important;
            font-weight: 600;
            font-size: 18px;
        }

        .nav-link:hover, .nav-link.active {
            color: #0F2A72 !important;
        }

        .search-icon {
            width: 40px;
            height: 40px;
            border: 2px solid #0F2A72;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .search-icon:hover {
            background: #0F2A72;
            color: white;
        }

        .search-icon i {
            font-size: 18px;
        }

        /* Footer Styles */
        .footer {
            background: #0F2A72;
            color: white;
            padding: 40px 0;
        }

        .footer a {
            color: white;
            text-decoration: none;
        }

        .footer a:hover {
            text-decoration: underline;
        }

        /* Breadcrumb */
        .breadcrumb-section {
            background: white;
            padding: 15px 0;
            border-bottom: 1px solid var(--border-color);
        }

        .breadcrumb-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 10px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .breadcrumb-item {
            color: #485159;
        }

        .breadcrumb-item a {
            color: var(--primary-color);
            text-decoration: none;
        }

        .breadcrumb-item a:hover {
            text-decoration: underline;
        }

        .breadcrumb-separator {
            color: var(--accent-color);
        }

        /* Main Content */
        .main-container {
            max-width: 1000px;
            margin: 30px auto;
            padding: 30px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }

        #product-detail-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .product-gallery, .product-info {
            animation: fadeIn 0.5s ease-in-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(15px); }
            to { opacity: 1; transform: translateY(0); }
        }

        #detail-main-image {
            width: 100%;
            height: auto;
            max-height: 400px;
            object-fit: cover;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            margin-bottom: 15px;
        }

        #detail-thumbnails {
            display: flex;
            gap: 10px;
        }

        .thumbnail-img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border: 2px solid var(--border-color);
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .thumbnail-img:hover, .thumbnail-img.active {
            border-color: var(--primary-color);
            transform: scale(1.05);
        }

        .detail-title {
            font-size: 2rem;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .detail-model {
            color: var(--accent-color);
            font-size: 1.1rem;
            margin-bottom: 25px;
        }

        .detail-tabs {
            display: flex;
            margin-bottom: 15px;
            border-bottom: 2px solid var(--border-color);
        }

        .tab-btn {
            padding: 10px 20px;
            cursor: pointer;
            background: none;
            border: none;
            font-weight: 600;
            color: var(--accent-color);
            position: relative;
            transition: color 0.3s ease;
        }

        .tab-btn.active { color: var(--primary-color); }

        .tab-btn.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--primary-color);
        }

        .tab-content { display: none; margin-bottom: 20px; }

        .tab-content.active { display: block; }

        .tab-content ul { list-style-position: inside; padding-left: 5px; }

        .tab-content li { margin-bottom: 8px; color: #333; line-height: 1.6; }

        .tab-content table {
            width: 100%;
            border-collapse: collapse;
        }

        .tab-content th, .tab-content td {
            padding: 10px 12px;
            border: 1px solid var(--border-color);
            text-align: left;
            font-size: 0.9rem;
        }

        .tab-content th { background: var(--light-gray); font-weight: 600; width: 40%; }

        .add-to-quote-btn {
            width: 100%;
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 15px 20px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }

        .add-to-quote-btn:hover { background: #0a1f54; transform: translateY(-2px); }

        #not-found { text-align: center; padding: 50px; }

        .back-link {
            display: inline-block;
            margin-bottom: 20px;
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
        }

        .back-link:hover { text-decoration: underline; }

        @media (max-width: 768px) {
            #product-detail-content { grid-template-columns: 1fr; }
            .detail-title { font-size: 1.5rem; }
        }

         body {
            font-family: 'Segoe UI', sans-serif;
        }

        header {
            background: #0F2A72;
            color: white;
        }

        .main-nav {
            background: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .nav-link {
            color: #000 !important;
            font-weight: 600;
            font-size: 18px;
        }

        .nav-link:hover,
        .nav-link.active {
            color: #0F2A72 !important;
        }

        .hero-products {
            background: linear-gradient(rgba(15, 42, 114, 0.8), rgba(15, 42, 114, 0.8)), url('images/banner.jpg');
            background-size: cover;
            background-position: center;
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
        }

        .product-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin-bottom: 30px;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .product-card .card-img-top {
            height: 250px;
            object-fit: cover;
        }

        .product-card .card-body {
            padding: 20px;
        }

        .product-card .card-title {
            font-size: 1.25rem;
            font-weight: bold;
            color: #0F2A72;
            margin-bottom: 15px;
        }

        .product-card .card-text {
            color: #666;
            margin-bottom: 20px;
        }

        .btn-primary {
            background-color: #0F2A72;
            border-color: #0F2A72;
            padding: 10px 25px;
            border-radius: 25px;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background-color: #0a1f54;
            border-color: #0a1f54;
            transform: translateY(-2px);
        }

        .filter-button {
            background: white;
            border: 2px solid #0F2A72;
            color: #0F2A72;
            padding: 8px 20px;
            border-radius: 20px;
            margin: 5px;
            transition: all 0.3s ease;
        }

        .filter-button:hover,
        .filter-button.active {
            background: #0F2A72;
            color: white;
        }

        .search-box {
            position: relative;
            margin-bottom: 30px;
        }

        .search-box input {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #eee;
            border-radius: 30px;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .search-box input:focus {
            border-color: #0F2A72;
            box-shadow: none;
        }

        .search-box i {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: #0F2A72;
        }

        .footer {
            background: #0F2A72;
            color: white;
            padding: 40px 0;
            margin-top: 50px;
        }

        .footer a {
            color: white;
            text-decoration: none;
        }

        .footer a:hover {
            text-decoration: underline;
        }

        .product-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #0F2A72;
            color: white;
            padding: 5px 15px;
            border-radius: 15px;
            font-size: 0.9rem;
        }

        .category-wrapper {
  gap: 10px;
}

.product-categories {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  white-space: nowrap;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  flex: 1; /* Take all space between arrows */
}

.product-categories::-webkit-scrollbar {
  display: none; /* Hide scrollbar */
}

.btn-category {
  flex: 0 0 auto; /* Don't shrink */
}

.arrow-btn {
  flex: 0 0 auto; /* Fix arrow size */
  cursor: pointer;
}


        .btn-category {
            border-radius: 50px;
            padding: 10px 30px;
            font-weight: 600;
            background: #e9ecef;
            color: #0F2A72;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .btn-category.active, .btn-category:hover {
            background: #0F2A72;
            color: white;
            box-shadow: 0 4px 15px rgba(15, 42, 114, 0.3);
        }

        .sub-category-list .list-group-item {
            border-radius: 0;
            border: none;
            padding: 15px 20px;
            font-weight: 600;
            color: #343a40;
            border-left: 4px solid transparent;
        }

        .sub-category-list .list-group-item.active,
        .sub-category-list .list-group-item:hover {
            background-color: #f8f9fa;
            color: #D32F2F;
            border-left-color: #D32F2F;
        }
        
        .product-card-wrapper {
            margin-bottom: 1.5rem;
        }

        .product-card {
            border: 1px solid #dee2e6;
            border-radius: 8px;
            transition: all 0.3s ease;
            text-decoration: none;
            color: inherit;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            border-color: #0F2A72;
        }

        .product-card .card-img-top {
            height: 200px;
            object-fit: contain;
            padding: 10px;
        }
          body {
      font-family: 'Segoe UI', sans-serif;
    }

    header {
      background: #0F2A72;
      color: white;
    }

    .main-nav {
      background: white;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
.nav-link{
  color: #000 !important;
  font-weight: 600;
  font-size: 18px;
}
.nav-link:hover, .nav-link.active {
  color: #0F2A72 !important;
}
    .search-icon {
      width: 40px;
      height: 40px;
      border: 2px solid #0F2A72;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .search-icon:hover {
      background: #0F2A72;
      color: white;
    }
    .search-icon i {
      font-size: 18px;
    }
    .footer {
      background: #0F2A72;
      color: white;
      padding: 40px 0;
    }

    .footer a {
      color: white;
      text-decoration: none;
    }

    .footer a:hover {
      text-decoration: underline;
    }

    .content-card {
      background: white;
      padding: 40px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      margin-bottom: 30px;
    }

    .content-card h3 {
      color: #0F2A72;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .content-card p {
      line-height: 1.8;
      margin-bottom: 15px;
      color: #333;
    }

    .content-card ul {
      margin-bottom: 15px;
    }

    .content-card li {
      margin-bottom: 8px;
      line-height: 1.6;
    }

    .contact-info {
      background: #0F2A72;
      color: white;
      padding: 20px;
      border-radius: 10px;
      text-align: center;
      margin-top: 20px;
    }

    .contact-info a {
      color: white;
      text-decoration: none;
      font-weight: bold;
    }

    .contact-info a:hover {
      text-decoration: underline;
    }

    body {
      font-family: 'Segoe UI', sans-serif;
    }

    header {
      background: #0F2A72;
      color: white;
    }

    .main-nav {
      background: white;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
.nav-link{
  color: #000 !important;
  font-weight: 600;
  font-size: 18px;
}
.nav-link:hover, .nav-link.active {
  color: #0F2A72 !important;
}
    .search-icon {
      width: 40px;
      height: 40px;
      border: 2px solid #0F2A72;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .search-icon:hover {
      background: #0F2A72;
      color: white;
    }
    .search-icon i {
      font-size: 18px;
    }
    
    .footer {
      background: #0F2A72;
      color: white;
      padding: 40px 0;
    }

    .footer a {
      color: white;
      text-decoration: none;
    }

    .footer a:hover {
      text-decoration: underline;
    }


    .content-card {
      background: white;
      padding: 40px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      margin-bottom: 30px;
    }

    .content-card h3 {
      color: #0F2A72;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .content-card p {
      line-height: 1.8;
      margin-bottom: 15px;
      color: #333;
    }

    .content-card ul {
      margin-bottom: 15px;
    }

    .content-card li {
      margin-bottom: 8px;
      line-height: 1.6;
    }

    
/* view files css */


#categoryNav {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox ke liye */
}
#categoryNav::-webkit-scrollbar {
    display: none; /* Chrome/Safari ke liye */
}







 .hero-about {
            background: linear-gradient(rgba(15, 42, 114, 0.8), rgba(15, 42, 114, 0.8)), url('../images/banner.jpg');
            background-size: cover;
            background-position: center;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
        }

        .section-title {
            text-align: center;
            font-weight: bold;
            font-size: 2rem;
            margin: 40px 0;
            color: #0F2A72;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 100px;
            height: 3px;
            background: #0F2A72;
            margin: 10px auto 20px;
        }
        .about-title::after{
            content: '';
            display: block;
            width: 100px;
            height: 3px;
            background: #0F2A72;
            margin: 10px 0;
        }

        .timeline {
            position: relative;
            padding: 60px 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            width: 2px;
            background: #0F2A72;
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -1px;
        }

        .timeline-item {
            margin-bottom: 60px;
            position: relative;
        }

        .timeline-content {
            padding: 30px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
            width: calc(50% - 40px);
            position: relative;
        }

        .timeline-content::before {
            content: '';
            position: absolute;
            top: 20px;
            width: 40px;
            height: 2px;
            background: #0F2A72;
        }

        .timeline-item:nth-child(odd) .timeline-content {
            float: left;
        }

        .timeline-item:nth-child(odd) .timeline-content::before {
            right: -40px;
        }

        .timeline-item:nth-child(even) .timeline-content {
            float: right;
        }

        .timeline-item:nth-child(even) .timeline-content::before {
            left: -40px;
        }

        .timeline-date {
            position: absolute;
            width: 40px;
            height: 40px;
            background: #0F2A72;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            top: 20px;
        }

        .timeline-item:nth-child(odd) .timeline-date {
            right: -60px;
        }

        .timeline-item:nth-child(even) .timeline-date {
            left: -60px;
        }

        .stats-box {
            text-align: center;
            padding: 30px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
            margin: 0;
            transition: transform 0.3s ease;
        }

        .stats-box:hover {
            transform: translateY(-10px);
        }

        .stats-box i {
            font-size: 40px;
            color: #0F2A72;
            margin-bottom: 20px;
        }

        .stats-box h3 {
            font-size: 36px;
            font-weight: bold;
            color: #0F2A72;
            margin-bottom: 10px;
        }

        .team-member {
            text-align: center;
            margin-bottom: 30px;
        }

        .team-member img {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            margin-bottom: 20px;
            object-fit: cover;
        }

        .footer {
            background: #0F2A72;
            color: white;
            padding: 40px 0;
        }

        .footer a {
            color: white;
            text-decoration: none;
        }

        .footer a:hover {
            text-decoration: underline;
        }
        .text-primary {
    color: #0F2A72 !important;
}



@media only screen and (max-width: 768px) {
    .main-container{
        margin: 20px;
    }
}




@media (max-width: 767px) {
  .form-group-col {
    margin-bottom: 1rem; /* bootstrap jeti gap (16px) */
  }
}



.g-recaptcha {
  transform: scale(0.9);       /* adjust scale percentage as needed */
  transform-origin: 0 0;       /* anchor scaling to top left */
}

@media only screen and (max-width: 400px) {
  .g-recaptcha {
    transform: scale(0.77);    /* smaller screens = more shrink */
    transform-origin: 0 0;
  }
}
