/* Main Image */
.main-image img {
  max-height: 300px;   /* bigger main image */
  width: 100%;
  object-fit: contain;
}

/* Thumbnails container */
.thumbnails {
  gap: 10px;
}

/* Each thumbnail box */
.thumbnail-wrapper {
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

/* Thumbnail image */
.thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.2s ease, border 0.2s ease;
}

.thumbnail-img:hover,
.thumbnail-img.active {
  transform: scale(1.05);
  border: 2px solid #00B4D8; /* highlight color */
}
body {
	font-family: 'Poppins', sans-serif;
	overflow-x: hidden;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
  }
  p {
	  margin-bottom: 0px;
	  font-size: 14px;
	  font-weight: 300;
	  color: #4a4a4a;
	  line-height: 24px;
  }
  a {
	  text-decoration: none!important;
  }
  ul {
	  padding: 0;
	  margin: 0;
	  list-style: none;
  }
  
  h1,h2,h3,h4,h5,h6 {
	  margin: 0px;
  }
  
  ul.social-icons li {
	  display: inline-block;
	  margin-right: 3px;
  }
  
  ul.social-icons li:last-child {
	  margin-right: 0px;
  }
  
  ul.social-icons li a {
	  width: 50px;
	  height: 50px;
	  display: inline-block;
	  line-height: 50px;
	  background-color: #eee;
	  color: #121212;
	  font-size: 18px;
	  text-align: center;
	  transition: all .3s;
  }
  
  ul.social-icons li a:hover {
	  background-color: #2e78c4;
	  color: #fff;
  }
  
  a.filled-button {
	  background-color: #2e78c4;
	  color: #fff;
	  font-size: 14px;
	  text-transform: capitalize;
	  font-weight: 300;
	  padding: 10px 20px;
	  border-radius: 5px;
	  display: inline-block;
	  transition: all 0.3s;
  }
  
  a.filled-button:hover {
	  background-color: #121212;
	  color: #fff;
  }
  
  .section-heading {
	  text-align: left;
	  margin-bottom: 60px;
	  border-bottom: 1px solid #eee;
  }
  
  .section-heading h2 {
	  font-size: 28px;
	  font-weight: 400;
	  color: #1e1e1e;
	  margin-bottom: 15px;
  }
  
  .products-heading {
	  background-image: url(../images/products-heading.jpg);
  }
  
  .about-heading {
	  background-image: url(../images/about-heading.jpg);
  }
  
  .contact-heading {
	  background-image: url(../images/contact-heading.jpg);
  }
  
  .page-heading {
	  padding: 210px 0px 130px 0px;
	  text-align: center;
	  background-position: center center;
	  background-repeat: no-repeat;
	  background-size: cover;
  }
  
  .page-heading .text-content h4 {
	  color: #F3C623;	  font-size: 42px;
	  text-transform: uppercase;
	  font-weight: 700;
	  margin-bottom: 15px;
  }
  
  .page-heading .text-content h2 {
	  color: #fff;
	  font-size: 62px;
	  text-transform: uppercase;
	  letter-spacing: 5px;
  }
  
  #preloader {
	overflow: hidden;
	background: #2e78c4;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	position: fixed;
	z-index: 9999999;
	color: #fff;
  }
  
  #preloader .jumper {
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	display: block;
	position: absolute;
	margin: auto;
	width: 50px;
	height: 50px;
  }
  
  #preloader .jumper > div {
	background-color: #fff;
	width: 10px;
	height: 10px;
	border-radius: 100%;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	position: absolute;
	opacity: 0;
	width: 50px;
	height: 50px;
	-webkit-animation: jumper 1s 0s linear infinite;
	animation: jumper 1s 0s linear infinite;
  }
  
  #preloader .jumper > div:nth-child(2) {
	-webkit-animation-delay: 0.33333s;
	animation-delay: 0.33333s;
  }
  
  #preloader .jumper > div:nth-child(3) {
	-webkit-animation-delay: 0.66666s;
	animation-delay: 0.66666s;
  }
  
  @-webkit-keyframes jumper {
	0% {
	  opacity: 0;
	  -webkit-transform: scale(0);
	  transform: scale(0);
	}
	5% {
	  opacity: 1;
	}
	100% {
	  -webkit-transform: scale(1);
	  transform: scale(1);
	  opacity: 0;
	}
  }
  
  @keyframes jumper {
	0% {
	  opacity: 0;
	  -webkit-transform: scale(0);
	  transform: scale(0);
	}
	5% {
	  opacity: 1;
	}
	100% {
	  opacity: 0;
	}
  }
  
  
  /* Header Style */
  header {
	  position: absolute;
	  z-index: 99999;
	  width: 100%;
	  height: 80px;
	  background-color: #ffffff;
	  -webkit-transition: all 0.3s ease-in-out 0s;
	  -moz-transition: all 0.3s ease-in-out 0s;
	  -o-transition: all 0.3s ease-in-out 0s;
	  transition: all 0.3s ease-in-out 0s;
  }
  header .navbar {
	  padding: 17px 0px;
  }
  .background-header .navbar {
	  padding: 17px 0px;
  }
  .background-header {
	  top: 0;
	  position: fixed;
	  background-color: #fff!important;
	  box-shadow: 0px 1px 10px rgba(0,0,0,0.1);
  }
  .background-header .navbar-brand h2 {
	  color: #121212!important;
  }
  .background-header .navbar-nav a.nav-link {
	  color: #1e1e1e!important;
  }
  .background-header .navbar-nav .nav-link:hover,
  .background-header .navbar-nav .active>.nav-link,
  .background-header .navbar-nav .nav-link.active,
  .background-header .navbar-nav .nav-link.show,
  .background-header .navbar-nav .show>.nav-link {
	  color: #2e78c4!important;
  }
  .navbar .navbar-brand {
	  float: 	left;
	  margin-top: -12px;
	  outline: none;
  }
  .navbar .navbar-brand h2 {
	  color: #000000;
	  text-transform: uppercase;
	  font-size: 24px;
	  font-weight: 700;
	  -webkit-transition: all .3s ease 0s;
	  -moz-transition: all .3s ease 0s;
	  -o-transition: all .3s ease 0s;
	  transition: all .3s ease 0s;
  }
  .navbar .navbar-brand h2 em {
	  font-style: normal;
	  color: #2e78c4;
  }
  #navbarResponsive {
	  z-index: 999;
  }
  .navbar-collapse {
	  text-align: center;
  }
  .navbar .navbar-nav .nav-item {
	  margin: 0px 15px;
  }


  .navbar .navbar-nav a.nav-link {
	  text-transform: capitalize;
	  font-size: 15px;
	  font-weight: 500;
	  letter-spacing: 0.5px;
	  
	  transition: all 0.5s;
	  margin-top: 5px;
  }
  .navbar .navbar-nav .nav-link:hover,
  .navbar .navbar-nav .active>.nav-link,
  .navbar .navbar-nav .nav-link.active,
  .navbar .navbar-nav .nav-link.show,
  .navbar .navbar-nav .show>.nav-link {
	  color: #2e78c4;
	  padding-bottom: 25px;
	  border-bottom: 3px solid #2e78c4;
  }
  .navbar .navbar-toggler-icon {
	  background-image: none;
  }
  .navbar .navbar-toggler {
	  border-color: #fff;
	  background-color: #fff;	
	  height: 36px;
	  outline: none;
	  border-radius: 0px;
	  position: absolute;
	  right: 30px;
	  top: 20px;
  }
  .navbar .navbar-toggler-icon:after {
	  content: '\f0c9';
	  color: #2e78c4;
	  font-size: 18px;
	  line-height: 26px;
	  font-family: 'FontAwesome';
  }
  
  
  
  /* Banner Style */
  .banner {
	  position: relative;
	  text-align: center;
	  padding-top: 80px;
  }
  
  .banner-item-01 {
	  padding: 300px 0px;
	  background-image: url(../images/company.jpg); 
	  background-size: cover;
	  background-repeat: no-repeat;
	  background-position: center center;
  }
    
  .banner-item-02 {
	  padding: 300px 0px;
	  background-image: url(../images/slide2.jpeg);
	  background-size: cover;
	  background-repeat: no-repeat;
	  background-position: center center;
  }
  
  .banner-item-03 {
	  padding: 300px 0px;
	  background-image: url(../images/slide_03.jpg);
	  background-size: cover;
	  background-repeat: no-repeat;
	  background-position: center center;
  }
  
  .banner .banner-item {
	  max-height: 600px;
  }
  
  .banner .text-content {
	  position: absolute;
	  top: 50%;
	  transform: translateY(-50%);
	  text-align: center;
	  width: 100%;
  }
  
  .banner .text-content h4 {
	  color: #FFFFFF;
	  font-size: 46px;
	  text-transform: uppercase;
	  font-weight: 700;
	  margin-bottom: 15px;
	  BACKGROUND-COLOR: royalblue;
  }
  
  .banner .text-content h2 {
	  color: #fff;
	  font-size: 62px;
	  text-transform: uppercase;
	  letter-spacing: 5px;
  }
  /* owl banner
  .owl-banner .owl-dots .owl-dot {
	border-radius: 3px;
  }
  .owl-banner .owl-dots {
	  display: -webkit-box;
	  display: -webkit-flex;
	  display: -ms-flexbox;
	  display: flex;
	  -ms-flex-pack: center;
	  -webkit-justify-content: center;
	  justify-content: center;
	  position: absolute;
	  left: 50%;
	  transform: translateX(-50%);
	  bottom: 60px;
  }
  .owl-banner .owl-dots .owl-dot {
	  width: 10px;
	  height: 10px;
	  border-radius: 50%;
	  margin: 0 10px;
	  background-color: #fff;
	  opacity: 0.5;
  }
  .owl-banner .owl-dots .owl-dot:focus {
	  outline: none
  }
  .owl-banner .owl-dots .owl-dot.active {
	  background-color: #fff;
	  opacity: 1;
  }
  
   */
  
  /* Latest Produtcs */
  
  .latest-products {
	  margin-top: 100px;
  }
  
  .latest-products .section-heading a {
	  float: right;
	  margin-top: -35px;
	  text-transform: uppercase;
	  font-size: 13px;
	  font-weight: 700;
	  color: #2e78c4;
  }
  /* Styling for the product item */
/* .product-item {
	border: 1px solid #eee;
	margin-bottom: 30px;
	transition: transform 0.3s ease, box-shadow 0.3s ease; /* Add transition for smooth hover effect */
  /* }  */
  
  /* .product-item:hover {
	cursor: pointer; /* Show pointer cursor on hover */
	/* transform: translateY(-10px); Lift the item on hover */
	/* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); Add shadow on hover */
  /* } */
   
  .product-item .down-content {
	padding: 30px;
	position: relative;
  }
  
  .product-item img {
	width: 100%;
	height: 200px; /* Maintain height */
	overflow: hidden;
	object-fit: cover; /* Ensure image is not stretched */
  }
  
  .product-item .down-content h4 {
	font-size: 17px;
	color: #1a6692;
	margin-bottom: 20px;
  }
  
  .product-item .down-content h6 {
	position: absolute;
	top: 30px;
	right: 30px;
	font-size: 18px;
	color: #121212;
  }
  
  .product-item .down-content p {
	margin-bottom: 20px;
  }
  
  .product-item .down-content ul li {
	display: inline-block;
  }
  
  .product-item .down-content ul li i {
	color: #2e78c4;
	font-size: 14px;
  }
  
  .product-item .down-content span {
	position: absolute;
	right: 30px;
	bottom: 30px;
	font-size: 13px;
	color: #2e78c4;
	font-weight: 500;
  }
  
  
  
  /* Best Features */
  
  .about-features {
	  margin-top: 100px!important;
  }
  
  .about-features p {
	  border-bottom: 1px solid #eee;
	  padding-bottom: 20px;
  }
  
  .about-features .container .row {
	  padding-bottom: 0px!important;
	  border-bottom: none!important;
  }
  
  .best-features {
	  margin-top: 50px;
  }
  
  .best-features .container .row {
	  border-bottom: 1px solid #eee;
	  padding-bottom: 60px;
  }
  
  .best-features img {
	  width: 100%;
	  overflow: hidden;
  }
  
  .best-features h4 {
	  font-size: 17px;
	  color: #1a6692;
	  margin-bottom: 20px;
  }
  
  .best-features ul.featured-list li {
	  display: block;
	  margin-bottom: 10px;
  }
  
  .best-features p {
	  margin-bottom: 25px;
  }
  
  .best-features ul.featured-list li a {
	  font-size: 14px;
	  color: #4a4a4a;
	  font-weight: 300;
	  transition: all .3s;
	  position: relative;
	  padding-left: 13px;
  }
  
  .best-features ul.featured-list li a:before {
	  content: '';
	  width: 5px;
	  height: 5px;
	  display: inline-block;
	  background-color: #4a4a4a;
	  position: absolute;
	  left: 0;
	  transition: all .3s;
	  top: 8px;
  }
  
  .best-features ul.featured-list li a:hover {
	  color: #2e78c4;
  }
  
  .best-features ul.featured-list li a:hover::before {
	  background-color: #2e78c4;
  }
  
  .best-features .filled-button {
	  margin-top: 20px;
  }
  
  
  
  
  
  /* Call To Action */
  
  .call-to-action .inner-content {
	  margin-top: 60px;
	  padding: 30px;
	  background-color: #f7f7f7;
	  border-radius: 5px;
  }
  
  .call-to-action .inner-content h4 {
	  font-size: 17px;
	  color: #1a6692;
	  margin-bottom: 15px;
  }
  
  .call-to-action .inner-content em {
	  font-style: normal;
	  font-weight: 700;
  }
  
  .call-to-action .inner-content .col-md-4 {
	  text-align: right;
  }
  
  .call-to-action .inner-content .filled-button {
	  margin-top: 12px;
  }
  
  
  
  
  
  /* Footer */
  
  footer {
	  text-align: center;
  }
  
  footer .inner-content {
	  border-top: 1px solid #eee;
	  margin-top: 60px;
	  padding: 60px 0px;
  }
  
  footer .inner-content p {
	  text-transform: uppercase;
	  color: #ffffff;
  }
  
  footer .inner-content p a {
	  color: #2e78c4;
	  margin-left: 3px;
  }
  /* === Footer Base === */
.main-footer {
  background-color: #1F4E79;
  color: white;
  padding: 60px 20px;
  font-size: 14px;
  margin-top: 30px;
}

.inner-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/* === Footer Columns === */
.footer-column {
  flex: 1 1 220px;
  padding: 0 19px;
  margin-bottom: 20px;
}

.footer-column:not(:first-child) {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

/* Headings */
.footer-column h4 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 16px;
}

.footer-column .highlighted {
  color: #ffffff;
}

/* Footer Links & List */
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
}
.footer-column ul li i {
  /* margin-right: 8px; */
  color: #ccc;
  width: 18px;
  text-align: center;
}
.footer-column ul li a:hover {
  text-decoration: underline;
  color: #ffffff;
}

/* === Footer Social Icons (Scoped) === */
.footer-social-icons {
  display: flex;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
  justify-content: center;
  
}

.footer-social-icons li a {
  width: 32px;
  height: 32px;
  line-height: 32px;

  color: #121212;
  font-size: 16px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  transition: all 0.3s;
}

.footer-social-icons li a:hover {
  background-color: #2e78c4;
  color: #fff;
}

/* === Footer Bottom === */
.footer-bottom {
  text-align: center;
  color: #ccc;
  font-size: 13px;
  margin-top: 40px;
}
  
  
  
  
/* Product Page */
.products {
  margin-top: 100px;
}

.products .filters {
  text-align: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 60px;
}

/* Make filter list wrap */
.products .filters ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

/* Each filter item */
.products .filters ul li {
  position: relative;           /* <-- needed for dropdown positioning */
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  color: #121212;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: all .3s;
  cursor: pointer;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
}

/* Active & hover styles */
.products .filters ul li.active,
.products .filters ul li:hover {
  background-color: #2e78c4;
  color: #fff;
}


/* Hide nested sub-lists by default */
.products .filters ul li ul {
  display: none;
  position: absolute;
  top: 100%;                  /* ← flush right below the parent */
  margin-top: 0;              /* ensure no extra space */
  /* keep the rest as-is */
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 0.5rem 0;
  border-radius: 5px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 1000;
  white-space: nowrap;
}

/* Show on hover */
.products .filters ul li:hover > ul {
  display: block;
}

/* Style dropdown items */
.products .filters ul li ul li {
  margin: 0;
  padding: 0;
}

/* Style dropdown links */
.products .filters ul li ul li a {
  display: block;
  padding: 0.4rem 1rem;
  font-size: 13px;
  font-weight: 500;
  color: #1F4E79;
  text-decoration: none;
  transition: background-color .2s, color .2s;
}

/* Hover effect on dropdown links */
.products .filters ul li ul li a:hover {
  background-color: #2e78c4;
  color: #fff;
}

/* Pagination (unchanged) */
.products ul.pages {
  margin-top: 30px;
  text-align: center;
}

.products ul.pages li {
  display: inline-block;
  margin: 0px 2px;
}

.products ul.pages li a {
  width: 44px;
  height: 44px;
  display: inline-block;
  line-height: 42px;
  border: 1px solid #eee;
  font-size: 15px;
  font-weight: 700;
  color: #121212;
  transition: all .3s;
}

.products ul.pages li a:hover,
.products ul.pages li.active a {
  background-color: #2e78c4;
  border-color: #2e78c4;
  color: #fff;
}
/* Highlight parents that have subcategories */
.products .filters ul li.has-sub {
  background-color: #f0f4ff;
}

/* Add a down-arrow indicator */
.products .filters ul li.has-sub > span::after {
  content: "▾";
  display: inline-block;
  margin-left: 0.3rem;
  font-size: 0.8rem;
  vertical-align: middle;
  transition: transform .2s;
}

/* Rotate arrow when open */
.products .filters ul li.has-sub:hover > span::after {
  transform: rotate(180deg);
}

/* (Optional) Slightly darker on hover to reinforce it's interactive */
.products .filters ul li.has-sub:hover {
  background-color: #9fb7fe;
}
  /* Team Members */
 .team-section {
  margin-top: 40px;
}

.team-card {
  background: #fff;
  padding: 25px;
  margin-bottom: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease-in-out;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.team-card h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #1F4E79; /* matches your Deep Blue theme */
}

.team-card .role {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #00B4D8; /* your cyan accent */
  margin-bottom: 15px;
}

.team-card .description {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.team-card .social-links a {
  display: inline-block;
  margin: 0 8px;
  color: #1F4E79;
  font-size: 18px;
  transition: color 0.3s;
}

.team-card .social-links a:hover {
  color: #00B4D8;
}

  
  
  
  
  /* Services */
  
  .services {
	  background-image: url(../images/services.jpg);
	  background-position: center center;
	  background-repeat: no-repeat;
	  background-size: cover;
	  background-attachment: fixed;
	  padding: 100px 0px;
  }
  
  .services .service-item {
	  text-align: center;
  }
  
  .services .service-item .icon {
	  background-color: #f7f7f7;
	  padding: 40px;
  }
  
  .services .service-item .icon i {
	  width: 100px;
	  height: 100px;
	  display: inline-block;
	  text-align: center;
	  line-height: 100px;
	  background-color: #2e78c4;
	  color: #fff;
	  font-size: 32px;
  }
  
  .services .service-item .down-content {
	  background-color: #fff;
	  padding: 40px 30px;
  }
  
  .services .service-item .down-content h4 {
	  font-size: 17px;
	  color: #1a6692;
	  margin-bottom: 20px;
  }
  
  .services .service-item .down-content p {
	  margin-bottom: 25px;
  }
  
  
  
  
  /* Clients */
  
  .happy-clients {
	  margin-top: 100px;
	  margin-bottom: 40px;
  }
  
  .happy-clients .client-item img {
	  max-width: 100%;
	  overflow: hidden;
	  transition: all .3s;
	  cursor: pointer;
  }
  
  .happy-clients .client-item img:hover {
	  opacity: 0.8;
  }
  
  
  
  
  /* Find Us */
  
  .find-us {
	  margin-top: 100px;
  }
  
  .find-us p {
	  border-bottom: 1px solid #eee;
	  padding-bottom: 30px;
	  margin-bottom: 30px;
  }
  
  .find-us h4 {
	  font-size: 17px;
	  color: #1a6692;
	  margin-bottom: 20px;
  }
  
  .find-us .left-content {
	  margin-left: 30px;
  }
  
  
  
  /* Send Message */
  
  .send-message {
	  margin-top: 100px;
  }
  
  .contact-form input {
	  font-size: 14px;
	  width: 100%;
	  height: 44px;
	  display: inline-block;
	  line-height: 42px;
	  border: 1px solid #eee;
	  border-radius: 0px;
	  margin-bottom: 30px;
  }
  
  .contact-form input:focus {
	  box-shadow: none;
	  border: 1px solid #eee;
  }
  
  .contact-form textarea {
	  font-size: 14px;
	  width: 100%;
	  min-width: 100%;
	  min-height: 120px;
	  height: 120px;
	  max-height: 180px;
	  border: 1px solid #eee;
	  border-radius: 0px;
	  margin-bottom: 30px;
  }
  
  .contact-form textarea:focus {
	  box-shadow: none;
	  border: 1px solid #eee;
  }
  
  .contact-form button.filled-button {
	  background-color: #2e78c4;
	  color: #fff;
	  font-size: 14px;
	  text-transform: capitalize;
	  font-weight: 300;
	  padding: 10px 20px;
	  border-radius: 5px;
	  display: inline-block;
	  transition: all 0.3s;
	  border: none;
	  outline: none;
	  cursor: pointer;
  }
  
  .contact-form button.filled-button:hover {
	  background-color: #121212;
	  color: #fff;
  }
  
  .accordion {
	  margin-left: 30px;
  }
  
  .accordion a {
	  cursor: pointer;
	  font-size: 17px;
	  color: #1a6692!important;
	  margin-bottom: 20px;
	  transition: all .3s;
  }
  
  .accordion a:hover {
	  color: #2e78c4!important;
  }
  
  .accordion a.active {
	color: #2e78c4!important;
  }
  
  .accordion li .content {
	display: none;
	margin-top: 10px;
  }
  
  .accordion li:first-child {
	  border-top: 1px solid #eee;
  }
  
  .accordion li {
	  border-bottom: 1px solid #eee;
	  padding: 15px 0px;
  }
  /* Highlights Section */
.highlight-area {
    text-align: center;
    padding: 60px 0;
    background-color: #f0f0f0; /* Match background style */
}

.highlight-area .tit {
    font-size: 28px;
    font-weight: bold;
    color: #1F4E79; /* Deep Blue from your palette */
    margin-bottom: 20px;
}

/* Highlight Boxes */
.highlight-area .box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.highlight-area .list {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 900px; /* Adjust width if necessary */
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.highlight-area .list:hover {
    transform: scale(1.02);
}

/* Alternate Layout */
.highlight-area .list:nth-child(even) {
    flex-direction: row-reverse;
}

/* Image Styling */
.highlight-area .imgCont {
    flex: 1;
    max-width: 300px; /* Adjust for uniform image size */
}

.highlight-area .imgCont img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Text Styling */
.highlight-area .txtCont {
    flex: 2;
    text-align: left;
    padding: 10px 20px;
}

.highlight-area .posTxt .subj {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.highlight-area .dotTxt {
    font-size: 16px;
    color: #666;
    margin-top: 8px;
}

.product-item {
	border: 1px solid #eee;
	margin-bottom: 30px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	opacity: 1; /* Ensure opacity is always 1 */
  }
  
  .product-item:hover {
	cursor: pointer;
	transform: translateY(-10px);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  /* Remove any scroll motion */
  .scrollMotion {
	opacity: 1; /* No animation */
	transform: translateY(0); /* Ensure no translateY applied */
  }

/* Center Scroll Effect */
html {
    scroll-behavior: smooth;
}

  /* Responsive Style */
  @media (max-width: 768px) {
	  .banner .text-content {
		  width: 90%;
		  margin-left: 5%;
	  }
	  .banner .text-content h4 {
		  font-size: 22px;
	  }
  
	  .banner .text-content h2 {
		  font-size: 36px;
		  letter-spacing: 0.5px;
	  }
	  .banner-item-01,
	  .banner-item-02,
	  .banner-item-03 {
		  padding: 180px 0px;
	  }
	  .page-heading .text-content h4 {
		  font-size: 22px;
	  }
  
	  .page-heading .text-content h2 {
		  font-size: 36px;
		  letter-spacing: 0.5px;
	  }
	  .latest-products .section-heading a {
		  float: none;
		  margin-top: 0px;
		  display: block;
		  margin-bottom: 20px;
	  }
	  .product-item .down-content h4 {
		  margin-bottom: 20px!important;
	  }
	  .product-item .down-content h6 {
		  position: absolute!important;
		  top: 30px!important;
		  right: 30px!important;
	  }
	  .product-item .down-content span {
		  position: absolute!important;
		  right: 30px!important;
		  bottom: 30px!important;
	  }
	  .best-features .left-content {
		  margin-bottom: 30px;
	  }
	  .call-to-action .inner-content {
		  text-align: center;
	  }
	  .call-to-action .inner-content .filled-button {
		  text-align: center;
		  width: 100%;
		  margin-top: 20px;
	  }
	  .about-features img {
		  margin-bottom: 30px;
	  }
	  .service-item {
		  margin-bottom: 30px;
	  }
	  .find-us #map {
		  margin-bottom: 30px;
	  }
	  .find-us .left-content {
		  margin-left: 0px;
	  }
	  .send-message .accordion {
		  margin-top: 30px;
		  margin-left: 0px;
	  }
  }
  
  @media (max-width: 992px) {
	  .navbar .navbar-brand {
		  position: absolute;
		  left: 30px;
		  top: 32px;
	  }
	  .navbar .navbar-brand {
		  width: auto;
	  }
	  .navbar:after {
		  display: none;
	  }
	  #navbarResponsive {
		  z-index: 99999;
		  position: absolute;
		  top: 80px;
		  left: 0;
		  width: 100%;
		  text-align: center;
		  background-color: #fff;
		  box-shadow: 0px 10px 10px rgba(0,0,0,0.1);
	  }
	  .navbar .navbar-nav .nav-item {
		  border-bottom: 1px solid #eee;
	  }
	  .navbar .navbar-nav .nav-item:last-child {
		  border-bottom: none;
	  }
	  .navbar .navbar-nav a.nav-link {
		  padding: 15px 0px;
		  color: #1e1e1e!important;
	  }
	  .navbar .navbar-nav .nav-link:hover,
	  .navbar .navbar-nav .active>.nav-link,
	  .navbar .navbar-nav .nav-link.active,
	  .navbar .navbar-nav .nav-link.show,
	  .navbar .navbar-nav .show>.nav-link {
		  color: #2e78c4!important;
		  border-bottom: none!important;
		  padding-bottom: 15px;
	  }
	  .product-item .down-content h4 {
		  margin-bottom: 10px;
	  }
	  .product-item .down-content h6 {
		  position: relative;
		  top: 0;
		  right: 0;
		  margin-bottom: 20px;
	  }
	  .product-item .down-content span {
		  position: relative;
		  right: 0;
		  bottom: 0;
	  }
  }
