   /* Carousel Styles */
.abs-hero-carousel-container {
    margin-top: 80px; /* Adjust based on your navbar height */
  }
  
  .abs-main-carousel {
    width: 100%;
    overflow: hidden;
  }
  
  .abs-carousel-inner {
    border-radius: 0;
  }
  
  .abs-carousel-item {
    height: 500px;
  }
  
  .abs-carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  
  .abs-carousel-caption {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 5px;
    bottom: 100px;
  }
  
  .abs-carousel-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  }
  
  .abs-carousel-text {
    font-size: 1.2rem;
  }
  
  .abs-carousel-control {
    width: 5%;
  }
  
  .abs-carousel-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
  
  .abs-carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 8px;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .abs-carousel-item {
      height: 400px;
    }
    
    .abs-carousel-title {
      font-size: 1.8rem;
    }
    
    .abs-carousel-text {
      font-size: 1rem;
    }
  }
  
  @media (max-width: 576px) {
    .abs-carousel-item {
      height: 300px;
    }
    
    .abs-carousel-caption {
      bottom: 50px;
      padding: 10px;
    }
    
    .abs-carousel-title {
      font-size: 1.5rem;
    }
  }

 

/*-- About us Section */
.abs-about-modern {
  background-color: #ffffff;
 
  color: var(--accent);
  padding: 60px 20px;
}

.abs-about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.abs-about-header {
  text-align: center;
  margin-bottom: 40px;
}

.abs-modern-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}

.abs-modern-subtitle {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.abs-about-content {
  display: flex;
  flex-wrap: wrap;
  color: black;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.abs-about-text {
  flex: 1 1 300px;
}

.abs-about-text h4 {
  color: #005b96;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.abs-about-text p {
  font-size: 1rem;
  line-height: 1.8;
}

.abs-about-image {
  flex: 1 1 300px;
  text-align: center;
}

.abs-about-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.abs-about-image img:hover {
  transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .abs-about-content {
    flex-direction: column;
    text-align: center;
  }

  .abs-about-text,
  .abs-about-image {
    flex: 1 1 100%;
  }
}

/*-- Feature Section */
  .abs-featured-products {
    background:#e9e9e9;
    position: relative;
    overflow: hidden;
  }
  
  .abs-section-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--accent);
    position: relative;
    display: inline-block;
    margin-bottom : 15px;
  }
  
  .abs-section-title:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--accent);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .abs-section-subtitle {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
  }
  
  /* Product Card */
  .abs-product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
   
    transform: translateY(0);
    height: 100%; /* Ensure all cards have the same height */
  }
  
  .abs-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  }
  
  .abs-product-img-container {
    position: relative;
    overflow: hidden;
    height: 220px; /* Fixed height for uniformity */
  }
  
  .abs-product-img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Change to 'contain' to prevent cropping */
    transition: transform 0.5s ease;
  }
  
  .abs-product-card:hover .abs-product-img {
    transform: scale(1.05); /* Slightly reduce the scale on hover */
  }
  
  .abs-product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:rgba(13, 81, 132, 0.5) ;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .abs-product-card:hover .abs-product-overlay {
    opacity: 1;
  }
  
  .abs-product-btn {
    color: #fff;
    background: transparent;
    border: 2px solid #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
  }
  
  .abs-product-card:hover .abs-product-btn {
    transform: translateY(0);
    opacity: 1;
  }
  
  .abs-product-btn:hover {
    background: rgba(13, 81, 132, 0.5); /* Changed hover color to a yellow shade */
    color: #101010;
  }
  
  .abs-product-info {
    padding: 20px;
    text-align: center;
  }
  
  .abs-product-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    transition: color 0.3s ease;
  }
  
  .abs-product-card:hover .abs-product-title {
    color: var(--accent);
  }
  
  .abs-product-category {
    font-size: 0.9rem;
    color: #666;
  }
  
  /* Owl Carousel Customization */
  .abs-product-carousel .owl-stage {
    padding: 20px 0;
  }
  
  .abs-product-carousel .owl-nav {
    position: relative;
    top: auto;
    right: auto;
    text-align: center;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .abs-section-title {
      font-size: 2rem;
    }
    
    .abs-section-subtitle {
      font-size: 1rem;
    }
    
    .abs-product-img-container {
      height: 180px;
    }
    
    .abs-product-info {
      padding: 15px;
    }
    
    .abs-product-title {
      font-size: 1.1rem;
    }

    .abs-product-carousel .owl-nav {
        position: relative;
        top: auto;
        right: auto;
        margin-top: 10px;
        text-align: center;
      }   
  }
  
 /* industries Section */
        .industries-section{
			margin-top : 15px;
		}
		
		.industries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(110px, 100%), 1fr));
            gap: clamp(11px, 2vw, 16px);
            justify-items: center;
        }
        
        .industry-card {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: var(--transition);
            position: relative;
            z-index: 1;
            width: 100%;
            max-width: 160px;
            min-height: 100px;
            display: flex;
            flex-direction: column;
        }
        
        .industry-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--card-shadow-hover);
        }
        
        .industry-card:active {
            transform: translateY(-5px);
        }
        
        .industry-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, 	#cccccc, #999999);
            opacity: 0;
            z-index: -1;
            transition: var(--transition);
        }
        
        .industry-card:hover::before {
            opacity: 1;
        }
        
        .card-icon {
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--primary-light);
            transition: var(--transition);
            padding: 20px;
        }
        
        .industry-card:hover .card-icon {
            background-color: transparent;
        }
        
        .card-icon img {
            font-size: clamp(2.5rem, 8vw, 3.5rem);
            color: var(--primary);
            transition: var(--transition);
        }
        
        .industry-card:hover .card-icon img {
            color: var(--white);
            transform: scale(1.1);
        }
        
        .card-content {
            padding: clamp(10px, 2vw, 15px);
            text-align: center;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .card-content h3 {
            font-size: clamp(1.0rem, 1vw, 1.0rem);
            margin-bottom: 10px;
            color: var(--dark);
            transition: var(--transition);
            font-weight: 500;
        }
        
        .industry-card:hover .card-content h3 {
            color: var(--white);
        }
        
        /* Touch device adaptations */
        @media (hover: none) {
            .industry-card:hover {
                transform: none;
                box-shadow: var(--card-shadow);
            }
            
            .industry-card:active {
                transform: scale(0.98);
            }
            
            .industry-card:hover::before,
            .industry-card:hover .card-icon,
            .industry-card:hover .card-icon img,
            .industry-card:hover .card-content h3::after {
                all: initial;
            }
            
            .industry-card:active::before {
                opacity: 1;
            }
            
            .industry-card:active .card-icon {
                background-color: transparent;
            }
            
            .industry-card:active .card-icon img {
                color: var(--white);
                transform: scale(1.1);
            }
            
            .industry-card:active .card-content h3 {
                color: var(--white);
            }
                       
        }
        
        /* Very small mobile devices */
        @media (max-width: 400px) {
            .industries-grid {
                grid-template-columns: 1fr;
            }
            
            .industry-card {
                max-width: 100%;
                min-height: auto;
            }
        }
        
        /* Print styles */
        @media print {
            .industries-section {
                page-break-inside: avoid;
            }
            
            .industries-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
            
            .industry-card {
                box-shadow: none;
                border: 1px solid #ddd;
                min-height: auto;
                page-break-inside: avoid;
            }
        }
		
		
/* Why Choose Us Section */
.ved-why-choose-us {
    padding: 15px 0;
    background-color: #e9e9e9;
    position: relative;
}

/* Custom 5-column layout */
.five-cards-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
	margin-bottom :20px;
}

/* Column Style */
.col-five {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 0 12px;
    box-sizing: border-box;
}

/* Card Style */
.expertise-modern-card {
    background: white;
    border: 1px solid var(--medium-gray);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
    height: 100%;
    display: flex;
    flex-direction: column;
    color: var(--text);
}

/* Animation Delay per Card */
.expertise-modern-card:nth-child(1) { animation-delay: 0s; }
.expertise-modern-card:nth-child(2) { animation-delay: 0.2s; }
.expertise-modern-card:nth-child(3) { animation-delay: 0.4s; }
.expertise-modern-card:nth-child(4) { animation-delay: 0.6s; }
.expertise-modern-card:nth-child(5) { animation-delay: 0.8s; }

/* Card Content */
.expertise-modern-card .card-content {
    flex-grow: 1;
}

/* Icon Style */
.expertise-modern-card .icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

/* Title */
.expertise-modern-card h4 {
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 10px;
}

/* Description Text */
.expertise-modern-card p {
    color: var(--text);
    font-size: 0.85rem;
    margin-bottom: 5px;
    flex-grow: 1;
}

/* Hover Effect */
.expertise-modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Fade In Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Breakpoints */
@media (max-width: 1199.98px) {
    .col-five {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
}

@media (max-width: 767.98px) {
    .col-five {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 575.98px) {
    .col-five {
        flex: 0 0 100%;
        max-width: 100%;
    }
}


/* Clients Section Styling */
        .clients-section {
            padding: 1rem 0;
            background-color: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .section-title h2 {
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 1rem;
            font-size: 2.3rem;
        }
        
        .section-title .divider {
            height: 3px;
            width: 70px;
            background: var(--secondary-color);
            margin: 0 auto 0.3rem;
        }
        
        .section-title p {
            color: #6c757d;
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.1rem;
        }
        
        /* Client Logo Grid */
        .client-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 120px;
            padding: 1.5rem;
            margin: 0.5rem;
            border-radius: 8px;
            background: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .client-logo:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            border-color: rgba(0, 0, 0, 0.1);
        }
        
        .client-logo img {
            max-width: 100%;
            max-height: 60px;
            width: auto;
            filter: grayscale(0%);
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        
        .client-logo:hover img {
            filter: grayscale(100%);
            opacity: 1;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 1199.98px) {
            .client-logo {
                height: 110px;
                padding: 1.25rem;
            }
        }
        
        @media (max-width: 991.98px) {
            .clients-section {
                padding: 4rem 0;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .client-logo {
                height: 100px;
                padding: 1rem;
            }
        }
        
        @media (max-width: 767.98px) {
            .clients-section {
                padding: 3rem 0;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .section-title p {
                font-size: 1rem;
            }
            
            .client-logo {
                height: 90px;
                padding: 0.75rem;
            }
        }
        
        @media (max-width: 575.98px) {
            .clients-section {
                padding: 2.5rem 0;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .client-logo {
                height: 80px;
                padding: 0.5rem;
            }
        }
        
        /* Touch Device Optimization */
        @media (hover: none) {
            .client-logo:hover {
                transform: none;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            }
            
            .client-logo:active {
                transform: scale(0.98);
            }
        }




	
/* Testimonial Section */
.testimonial.section {
  background: #e9e9e9;
}

/* Heading */
.section-head {
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--accent);
  position: relative;
}


/* Testimonial box styling */
.testimonial-box {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease-in-out;
}
.testimonial-box:hover {
  transform: translateY(-5px);
}

/* Testimonial text */
.testimonial-text {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

/* Author name */
.testimonial-author {
  font-weight: 600;
  color: var(--accent);
}

/* Carousel controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--accent);
  border-radius: 50%;
  padding: 10px;
}

@media (max-width: 768px) {
  .testimonial-text {
    font-size: 1rem;
  }
  .section-head {
    font-size: 2rem;
  }
}
