 :root {
            --primary-orange: #ff8800;
            --primary-gradient: linear-gradient(45deg, #ff6600, #ffaa00);
            --light-gray: #f8f9fa;
            --dark-gray: #6c757d;
            --text-dark: #212529;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Barlow Condensed', sans-serif;
            color: #172231;
            font-weight: 600;
        }

        ul {
            padding: 0;
            margin: 0;
        }

        ul li {
            list-style-type: none;
        }
        
        .navbar {
            background: white !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-orange) !important;
        }
        
        .nav-link {
            color: var(--text-dark) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--primary-orange) !important;
        }
        
        .hero-section {
            background: var(--light-gray);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
            margin-top: 50px;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: var(--primary-gradient);
            opacity: 0.05;
            transform: skewX(-15deg);
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero-title {
            font-size: 3.5rem;
            /* font-weight: 800; */
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .hero-subtitle {
            font-size: 1.3rem;
            color: var(--dark-gray);
            margin-bottom: 2rem;
        }
        
        .btn-primary-custom {
            background: var(--primary-gradient);
            border: none;
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            color: white;
            transition: all 0.3s ease;
        }
        
        .btn-primary-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 136, 0, 0.3);
            color: white;
        }
        
        .features-section {
            padding: 80px 0;
            background: white;
        }
        
        .feature-card {
            text-align: center;
            padding: 40px 30px;
            height: 100%;
            transition: all 0.3s ease;
            border-radius: 15px;
            border: 2px solid #f0f0f0;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            border-color: var(--primary-orange);
        }
        
        .feature-icon {
            font-size: 3.5rem;
            color: var(--primary-orange);
            margin-bottom: 1.5rem;
        }
        
        .feature-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }
        
        .products-preview {
            padding: 80px 0;
            background: var(--light-gray);
        }
        
        .product-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
            border: none;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        
        .product-image {
            height: 200px;
            background: var(--light-gray);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: var(--primary-orange);
        }
        
        .stats-section {
            padding: 60px 0;
            background: var(--primary-gradient);
            color: white;
        }
        
        .stat-item {
            text-align: center;
            padding: 20px;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            display: block;
        }
        
        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
            text-transform: uppercase;
            font-weight: 500;
            letter-spacing: 1px;
        }
        
        .contact-section {
            padding: 80px 0;
            background: white;
        }
        
      /*  .contact-info {
            background: var(--light-gray);
            padding: 40px;
            border-radius: 15px;
            height: 100%;
        }*/
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }
        
        .contact-icon {
            background: var(--primary-gradient);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;

        }
        
         
        
        .section-title {
            font-size: 2.8rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 3rem;
            color: var(--text-dark);
        }
        
        .section-subtitle {
            text-align: center;
            color: var(--dark-gray);
            font-size: 1.2rem;
            margin-bottom: 4rem;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
        }
        
        .logo-image {
            width: 200px; 
            background: var(--primary-gradient);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
        }
        .logo-image img{
            width: 100%;
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .hero-subtitle {
                font-size: 1.1rem;
            }
            .section-title {
                font-size: 2.2rem;
            }
        }



        /* ABout Us */

        :root {
            --primary-orange: #ff8800;
            --primary-gradient: linear-gradient(45deg, #ff6600, #ffaa00);
            --light-gray: #f8f9fa;
            --dark-gray: #6c757d;
            --text-dark: #212529;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
        }
        
        .navbar {
            background: white !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 5px 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-orange) !important;
        }
        
        .nav-link {
            color: var(--text-dark) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--primary-orange) !important;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
        }
        
   
        
        .page-header {
            background: var(--primary-gradient);
            color: white;
            padding: 120px 0 80px;
            margin-top: 76px;
        }
        
        .page-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }
        
        .page-subtitle {
            font-size: 1.3rem;
            opacity: 0.9;
        }
        
        .section {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 3rem;
            color: var(--text-dark);
        }
        
        .about-content {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--dark-gray);
        }
        
        .mission-vision-card {
            background: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            height: 100%;
            transition: transform 0.3s ease;
        }
        
        .mission-vision-card:hover {
            transform: translateY(-5px);
        }
        
        .card-icon {
            font-size: 3rem;
            color: var(--primary-orange);
            margin-bottom: 1.5rem;
        }
        
        .card-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--text-dark);
        }
        
        .value-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 2rem;
        }
        
        .value-icon {
            background: var(--primary-gradient);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .value-content h5 {
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
        }
        
        .team-member {
            text-align: center;
            padding: 30px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .team-member:hover {
            transform: translateY(-5px);
        }
        
        .team-avatar {
            width: 120px;
            height: 120px;
            background: var(--primary-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 3rem;
            color: white;
        }
        
        .timeline {
            position: relative;
            padding: 20px 0;
        }
        
        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--primary-gradient);
            transform: translateX(-50%);
        }
        
        .timeline-item {
            margin-bottom: 50px;
            position: relative;
        }
        
        .timeline-content {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            width: 45%;
            position: relative;
        }
        
        .timeline-item:nth-child(odd) .timeline-content {
            margin-left: auto;
        }
        
        .timeline-year {
            background: var(--primary-gradient);
            color: white;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.1rem;
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
        }
        
      
        
        @media (max-width: 768px) {
            .page-title {
                font-size: 2.5rem;
            }
            .section-title {
                font-size: 2.2rem;
            }
            .timeline::before {
                left: 30px;
            }
            .timeline-content {
                width: calc(100% - 80px);
                margin-left: 80px !important;
            }
            .timeline-year {
                left: 30px;
            }
        }


        /* Services Page */

         :root {
            --primary-orange: #ff8800;
            --primary-gradient: linear-gradient(45deg, #ff6600, #ffaa00);
            --light-gray: #f8f9fa;
            --dark-gray: #6c757d;
            --text-dark: #212529;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
        }
        
        .navbar {
            background: white !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-orange) !important;
        }
        
        .nav-link {
            color: var(--text-dark) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--primary-orange) !important;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
        }
        
     

        
        .page-header {
            background: var(--primary-gradient);
            color: white;
            padding: 120px 0 80px;
            margin-top: 76px;
        }
        
        .page-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }
        
        .page-subtitle {
            font-size: 1.3rem;
            opacity: 0.9;
        }
        
        .section {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.8rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 3rem;
            color: var(--text-dark);
        }
        
        .service-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--primary-gradient);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }
        
        .service-icon {
            font-size: 4rem;
            color: var(--primary-orange);
            margin-bottom: 2rem;
        }
        
        .service-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--text-dark);
        }
        
        .service-description {
            color: var(--dark-gray);
            line-height: 1.8;
            margin-bottom: 2rem;
        }
        
        .service-features {
            list-style: none;
            padding: 0;
            text-align: left;
        }
        
        .service-features li {
            padding: 8px 0;
            color: var(--dark-gray);
            position: relative;
            padding-left: 25px;
        }
        
        .service-features li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--primary-orange);
            font-weight: bold;
        }
        
        .process-timeline {
            position: relative;
            padding: 50px 0;
        }
        
        .process-step {
            display: flex;
            align-items: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .process-step:nth-child(even) {
            flex-direction: row-reverse;
        }
        
        .step-number {
            width: 80px;
            height: 80px;
            background: var(--primary-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            font-weight: 800;
            flex-shrink: 0;
            z-index: 2;
            position: relative;
        }
        
        .step-content {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin: 0 30px;
            flex-grow: 1;
        }
        
        .step-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }
        
        .pricing-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%;
            text-align: center;
            position: relative;
        }
        
        .pricing-card.featured {
            border: 3px solid var(--primary-orange);
            transform: scale(1.05);
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }
        
        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }
        
        .price-tag {
            background: var(--primary-gradient);
            color: white;
            padding: 15px 25px;
            border-radius: 15px;
            margin-bottom: 2rem;
            display: inline-block;
        }
        
        .price-amount {
            font-size: 2.5rem;
            font-weight: 800;
            display: block;
        }
        
        .price-period {
            font-size: 1rem;
            opacity: 0.9;
        }
        
        .package-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--text-dark);
        }
        
        .btn-service {
            background: var(--primary-gradient);
            border: none;
            color: white;
            padding: 15px 30px;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-service:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 136, 0, 0.3);
            color: white;
        }
        
        .support-section {
            background: var(--light-gray);
            padding: 80px 0;
        }
        
        .support-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 2rem;
            padding: 20px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }
        
        .support-icon {
            background: var(--primary-gradient);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
       
        
        @media (max-width: 768px) {
            .page-title {
                font-size: 2.5rem;
            }
            .section-title {
                font-size: 2.2rem;
            }
            .process-step {
                flex-direction: column !important;
                text-align: center;
            }
            .step-content {
                margin: 20px 0 0 0;
            }
            .pricing-card.featured {
                transform: none;
            }
        }

        /* Products Page  */

         :root {
            --primary-orange: #ff8800;
            --primary-gradient: linear-gradient(45deg, #ff6600, #ffaa00);
            --light-gray: #f8f9fa;
            --dark-gray: #6c757d;
            --text-dark: #212529;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
        }
        
        .navbar {
            background: white !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-orange) !important;
        }
        
        .nav-link {
            color: var(--text-dark) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--primary-orange) !important;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
        }
        
     

        
        .page-header {
            background: var(--primary-gradient);
            color: white;
            padding: 120px 0 80px;
            margin-top: 76px;
        }
        
        .page-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }
        
        .page-subtitle {
            font-size: 1.3rem;
            opacity: 0.9;
        }
        
        .section {
            padding: 80px 0;
        }
        
        .category-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%;
            text-align: center;
        }
        
        .category-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }
        
        .category-icon {
            font-size: 4rem;
            color: var(--primary-orange);
            margin-bottom: 2rem;
        }
        
        .category-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--text-dark);
        }
        
        .product-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        
        .product-image {
            height: 200px;
            background: var(--light-gray);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: var(--primary-orange);
            position: relative;
        }
        
        .product-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--primary-gradient);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .product-info {
            padding: 25px;
        }
        
        .product-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
        }
        
        .product-brand {
            color: var(--primary-orange);
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }
        
        .product-features {
            list-style: none;
            padding: 0;
            margin-bottom: 1.5rem;
        }
        
        .product-features li {
            padding: 3px 0;
            font-size: 0.9rem;
            color: var(--dark-gray);
        }
        
        .product-features li:before {
            content: "✓";
            color: var(--primary-orange);
            font-weight: bold;
            margin-right: 8px;
        }
        
        .btn-quote {
            background: var(--primary-gradient);
            border: none;
            color: white;
            padding: 10px 25px;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            width: 100%;
        }
        
        .btn-quote:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 136, 0, 0.3);
            color: white;
        }
        
        .filter-tabs {
            margin-bottom: 3rem;
        }
        
        .filter-btn {
            background: transparent;
            border: 2px solid var(--primary-orange);
            color: var(--primary-orange);
            padding: 10px 25px;
            margin: 5px;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .filter-btn.active,
        .filter-btn:hover {
            background: var(--primary-gradient);
            color: white;
        }
        
        .section-title {
            font-size: 2.8rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 3rem;
            color: var(--text-dark);
        }
        
        .brands-section {
            background: var(--light-gray);
            padding: 60px 0;
        }
        
        .brand-logo {
            background: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .brand-logo:hover {
            transform: translateY(-3px);
        }
        
      
        
        @media (max-width: 768px) {
            .page-title {
                font-size: 2.5rem;
            }
            .section-title {
                font-size: 2.2rem;
            }
            .category-icon {
                font-size: 3rem;
            }
        }
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }
        
        .page-subtitle {
            font-size: 1.3rem;
            opacity: 0.9;
        }
        
        .section {
            padding: 80px 0;
        }
        
        .category-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%;
            text-align: center;
        }
        
        .category-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }
        
        .category-icon {
            font-size: 4rem;
            color: var(--primary-orange);
            margin-bottom: 2rem;
        }
        
        .category-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--text-dark);
        }
        
        .product-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        
        .product-image {
            height: 200px;
            background: var(--light-gray);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: var(--primary-orange);
            position: relative;
        }
        
        .product-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--primary-gradient);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .product-info {
            padding: 25px;
        }
        
        .product-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
        }
        
        .product-brand {
            color: var(--primary-orange);
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }
        
        .product-features {
            list-style: none;
            padding: 0;
            margin-bottom: 1.5rem;
        }
        
        .product-features li {
            padding: 3px 0;
            font-size: 0.9rem;
            color: var(--dark-gray);
        }
        
        .product-features li:before {
            content: "✓";
            color: var(--primary-orange);
            font-weight: bold;
            margin-right: 8px;
        }
        
        .btn-quote {
            background: var(--primary-gradient);
            border: none;
            color: white;
            padding: 10px 25px;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            width: 100%;
        }
        
        .btn-quote:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 136, 0, 0.3);
            color: white;
        }
        
        .filter-tabs {
            margin-bottom: 3rem;
        }
        
        .filter-btn {
            background: transparent;
            border: 2px solid var(--primary-orange);
            color: var(--primary-orange);
            padding: 10px 25px;
            margin: 5px;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .filter-btn.active,
        .filter-btn:hover {
            background: var(--primary-gradient);
            color: white;
        }
        
        .section-title {
            font-size: 2.8rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 3rem;
            color: var(--text-dark);
        }
        
        .brands-section {
            background: var(--light-gray);
            padding: 60px 0;
        }
        
        .brand-logo {
            background: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .brand-logo:hover {
            transform: translateY(-3px);
        }
        
       
        
        @media (max-width: 768px) {
            .page-title {
                font-size: 2.5rem;
            }
            .section-title {
                font-size: 2.2rem;
            }
            .category-icon {
                font-size: 3rem;
            }
        }


        /* Contact Page*/
 :root {
            --primary-orange: #ff8800;
            --primary-gradient: linear-gradient(45deg, #ff6600, #ffaa00);
            --light-gray: #f8f9fa;
            --dark-gray: #6c757d;
            --text-dark: #212529;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
        }
        
        .navbar {
            background: white !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 0.2rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-orange) !important;
        }
        
        .nav-link {
            color: var(--text-dark) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--primary-orange) !important;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
        }
        
     

        .page-header {
            background: var(--primary-gradient);
            color: white;
            padding: 120px 0 80px;
            margin-top: 76px;
        }
        
        .page-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }
        
        .page-subtitle {
            font-size: 1.3rem;
            opacity: 0.9;
        }
        
        .section {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.8rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 3rem;
            color: var(--text-dark);
        }
        
        .contact-form {
            background: white;
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        
        .form-control {
            border: 2px solid #e9ecef;
            border-radius: 10px;
            padding: 15px 20px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            border-color: var(--primary-orange);
            box-shadow: 0 0 0 0.2rem rgba(255, 136, 0, 0.25);
        }
        
        .form-label {
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 8px;
        }
        
        .btn-submit {
            background: var(--primary-gradient);
            border: none;
            color: white;
            padding: 15px 40px;
            border-radius: 25px;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            width: 100%;
        }
        
        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(255, 136, 0, 0.3);
            color: white;
        }
        
        .contact-info-card {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            height: 100%;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
            padding: 20px;
            background: var(--light-gray);
            border-radius: 15px;
            transition: transform 0.3s ease;
        }
        
        .contact-item:hover {
            transform: translateY(-3px);
        }
        
        .contact-icon {
            background: var(--primary-gradient);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .contact-details h5 {
            font-weight: 700;
            margin-bottom: 5px;
            color: var(--text-dark);
        }
        
        .contact-details p {
            margin-bottom: 0;
            color: var(--dark-gray);
        }
        
        .contact-details a {
            color: var(--primary-orange);
            text-decoration: none;
            font-weight: 500;
        }
        
        .contact-details a:hover {
            text-decoration: underline;
        }
        
        .map-section {
            background: var(--light-gray);
            padding: 80px 0;
        }
        
        .map-container {
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }
        
        .map-placeholder {
            background: #e9ecef;
            height: auto;
            border-radius: 15px;
       
            align-items: center;
            justify-content: center;
            color: var(--dark-gray);
            font-size: 1.2rem;
        }
        
        .business-hours {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }
        
        .hours-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid #e9ecef;
        }
        
        .hours-item:last-child {
            border-bottom: none;
        }
        
        .day {
            font-weight: 600;
            color: var(--text-dark);
        }
        
        .time {
            color: var(--dark-gray);
        }
        
        .time.closed {
            color: #dc3545;
        }
        
        .time.open {
            color: #28a745;
        }
        
        .quick-contact {
            background: var(--primary-gradient);
            color: white;
            padding: 60px 0;
        }
        
        .quick-contact-item {
            text-align: center;
            padding: 30px 20px;
        }
        
        .quick-contact-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            opacity: 0.9;
        }
        
        .quick-contact-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .quick-contact-link {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
        }
        
        .quick-contact-link:hover {
            color: #f8f9fa;
            text-decoration: underline;
        }
        
       
        
        .alert-success {
            background: linear-gradient(135deg, #d4edda, #c3e6cb);
            border: none;
            border-radius: 10px;
            color: #155724;
        }
        
        @media (max-width: 768px) {
            .page-title {
                font-size: 2.5rem;
            }
            .section-title {
                font-size: 2.2rem;
            }
            .contact-form {
                padding: 30px 20px;
            }
            .contact-info-card {
                padding: 30px 20px;
            }
            .contact-item {
                flex-direction: column;
                text-align: center;
            }
            .contact-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }


        .footer {
            background: var(--text-dark);
            color: #ffffff;
            padding: 60px 0 20px;
        }
        
        .footer-section h5 {
            color: #ffffff;
            font-weight: 600;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-section h5:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background: #4facfe;
        }
        
        .footer-section ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-section ul li {
            margin-bottom: 12px;
        }
        
        .footer-section ul li a {
            color: #e0e0e0;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .footer-section ul li a:hover {
            color: #4facfe;
            padding-left: 5px;
        }
        
        .footer-section p {
            color: #e0e0e0;
            line-height: 1.8;
        }
        
        .contact-info {
            margin-bottom: 15px;
        }
        
        .contact-info i {
            color: #ffffff;
            /* margin-right: 10px; */
            width: 20px;
                font-size: 22px;
        }
        
        .social-links {
            margin-top: 20px;
        }
        
        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            color: #ffffff;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: #4facfe;
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
        }
        
        .footer-bottom p {
            margin: 0;
            color: #e0e0e0;
        }

        .productDetailWrap p {
            font-size: 17px;
        }

        .productDetailWrap h2{
            font-size: 30px;
            margin: 35px 0 10px 0;
            color: #ff6900;
        }

        .productDetailWrap h3{
            font-size: 25px;
        }

        .productDetailWrap ul {
            margin-bottom: 20px;
        }
        
        .productDetailWrap ul li {
            padding: 8px 0;
            color: var(--text-dark);
            position: relative;
            padding-left: 25px;
              font-size: 17px;
        }

        .productDetailWrap ul li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--primary-orange);
            font-weight: bold;
        }

        .service-card-two {
            text-align: left;
        }

        .questionSpan {
            font-weight: 600;
        }

        .carousel-indicators [data-bs-target] {
                background-color: #606060;
        }

        .footer-section  .contact-info i{
            margin-right: 10px;
        }

        .footer-section p {
                display: flex;
    align-items: center;
        }
        
        @media (max-width: 768px) {
            .footer-section {
                margin-bottom: 30px;
            }
        }