	.container {
		max-width: 1140px;
		margin: 0 auto;
		padding: 20px;
		
      /*background: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);*/
  }

  h1 {
  	text-align: center;
  	margin-bottom: 30px;
  	font-size: 2em;
  	color: #004080;
  }

  .feature {
  	display: flex;
  	flex-direction: column;
  	gap: 20px;
  }

  .feature-item {
  	padding: 20px;
  	border-left: 5px solid #004080;
  	background: #f9fbfd;
  	border-radius: 8px;
  	transition: background 0.3s ease;
  }

  .feature-item:hover {
  	background: #e6f0ff;
  }

  .feature-title {
  	font-size: 1.2em;
  	font-weight: 600;
  	margin-bottom: 10px;
  	color: #004080;
  }

  @media (min-width: 768px) {
  	.feature {
  		display: grid;
  		grid-template-columns: 1fr 1fr;
  		gap: 30px;
  	}
  }

  @media (min-width: 992px) {
  	h1 {
  		font-size: 2.5em;
  	}
  }

b {
  font-weight: bold;
}


  /*product details style start*/ 


        .container_x {
            max-width: 1200px;
            margin: 40px auto;
            padding: 30px;
            background-color: #fff;
            border-radius: 8px;
            /*box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);*/
        }
        
        .company-header {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 30px;
        }
        
        .company-pro_img {
            flex: 1;
            min-width: 250px;
            /*display: flex;*/
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
            /*background-color: #f8f9fa;*/
            border-radius: 8px;
        }
        
        .pro_img {
            width: 180px;
            height: 180px;
            background-color: #1a5276;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 25px;
            text-transform: uppercase;
        }
        
        .btn {
            padding: 12px 24px;
            margin: 8px 0;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s ease;
            text-align: center;
            text-decoration: none;
            display: inline-block;
            width: 220px;
        }
        
        .btn-primary {
            background-color: #1a5276;
            color: white;
        }
        
        .btn-primary:hover {
            background-color: #0d2d44;
        }
        
        .btn-secondary {
            background-color: transparent;
            color: #1a5276;
            border: 2px solid #1a5276;
        }
        
        .btn-secondary:hover {
            background-color: #1a5276;
            color: white;
        }
        
        .company-info {
            flex: 2;
            min-width: 300px;
        }
        
        .company-name {
            font-size: 36px;
            font-weight: 700;
            color: #1a5276;
            margin-bottom: 20px;
            text-transform: uppercase;
        }
        
        .company-details {
            margin-bottom: 25px;
        }
        
        .company-details p {
            margin-bottom: 12px;
            font-size: 16px;
            line-height: 24px;
            text-align: justify;
        }
        
        .company-details strong {
            color: #1a5276;
            font-weight: 700;
        }
        
        .products-section {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 30px;
        }
        
        .product-column {
            flex: 1;
            min-width: 250px;
            background-color: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            border-top: 4px solid #1a5276;
        }
        
        .product-column h3 {
            font-size: 22px;
            color: #1a5276;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #1a5276;
            /*text-transform: uppercase;*/
        }
        
        .product-list {
            list-style-type: none;
        }
        
        .product-list li {
            padding: 10px 0;
            display: flex;
            align-items: center;
            border-bottom: 1px dashed #ddd;
        }
        
        .product-list li:last-child {
            border-bottom: none;
        }
        
        .product-list li i {
            color: #3BB4DE;
            margin-right: 15px;
            font-size: 18px;
        }
        
        @media (max-width: 768px) {
            .company-header {
                flex-direction: column;
            }
            
            .company-pro_img {
                order: 2;
            }
            
            .company-info {
                order: 1;
            }
            
            .products-section {
                flex-direction: column;
            }
        }

        .product_img {
    max-width: 100%;
    height: auto;
    transform: scale(1);
    vertical-align: middle;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    -ms-interpolation-mode: bicubic;
    border-radius: 8px ;
    border-bottom: 4px solid #1a5276;
    margin: 6px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}




  /*product details style end*/