

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
.company {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
  }
  
  .company-info {
	display: flex;
	flex-direction: column;
	justify-content: center;
  }
  
  .img {
	width: 100%;
	margin: 1rem 0rem 0rem 2rem;
  }
  
  .img img {
	width: 100%;
  }
  
  .company-info {
	width: 100%;
	margin-right: 4rem;
  }
  
  .company-info span {
	font-size: 2.5rem;
	font-weight: bold;
  }
  
  .company-info span .our {
	color: #f6790b;
  }
  
  .company-info p{
	font-size: 1.1rem;
  }
  .video-container {
    width: 90%; /* Adjust width as needed */
    position: relative;
    left: 0; /* Moves the section to the left */
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}
.service-slider {
	max-width: 1200px;
	margin: 50px auto;
	padding: 20px;
}
.single-service-area {
	text-align: center;
	background: white;
	padding: 15px;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease-in-out;
}
.single-service-area:hover {
	transform: translateY(-10px);
}
.blog-bg img {
	width: 100%;
	border-radius: 10px;
}
h5 {
	font-size: 18px;
	margin: 15px 0;
	color: #333;
}
.read-more {
	display: inline-block;
	margin-top: 10px;
	padding: 10px 15px;
	background: #ef7f1a;
	color: white;
	text-decoration: none;
	border-radius: 5px;
	transition: background 0.3s;
}
.read-more:hover {
	background: #0a0a0a;
}
/* General Styling */
.achievement-area1 {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.single-process-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border: 3px solid #ffa500; /* Orange border */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1s ease-in-out;
}

.single-process-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Heading Styling */
.text-orange {
    font-size: 22px;
    font-weight: bold;
    color: #ff7f00;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff7f00;
    display: inline-block;
}

/* List Icons */
.process-content .highlight i {
    font-size: 22px;
   
}

/* Process Content Paragraph */
.process-content-para {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

/* Responsive Layout */
@media (max-width: 992px) {
    .single-process-item {
        margin-bottom: 20px;
    }
}

/* Fade-in Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.product-img img {
	width: 100%;
	border-radius: 10px;
	border: 3px solid #070707;
	transition: transform 0.3s ease-in-out;
}
.product-img img:hover {
	transform: scale(1.05);
}
.product-details h2 {
	color: #333;
	font-weight: bold;
}
.product-details p {
	font-size: 18px;
	color: #666;
}
.btn-container {
	display: flex;
	gap: 10px;
	margin-top: 10px;
}
.btn-enquiry, .btn-whatsapp {
	flex: 1;
	padding: 12px;
	font-size: 16px;
	font-weight: bold;
	border-radius: 5px;
	transition: all 0.3s ease-in-out;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}
.btn-enquiry:hover {
	background-color: #0056b3;
	color: #fff;
}
.btn-whatsapp {
	background-color: #25D366;
	color: #fff;
}
.btn-whatsapp:hover {
	background-color: #1ebe57;
}
