body {margin:0;font-family:Arial}
@keyframes fadeSlideIn{0%{opacity:0;transform:translateY(30px)}100%{opacity:1;transform:translateY(0)}}.home_content>*{animation:fadeSlideIn 1s ease forwards;opacity:0}.home_content>*:nth-child(1){animation-delay:.2s}.home_content>*:nth-child(2){animation-delay:.4s}.home_content>*:nth-child(3){animation-delay:.6s}.home_content>*:nth-child(4){animation-delay:.8s}.home_content>*:nth-child(5){animation-delay:1s}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
/*sample open */
@keyframes fadeSlideIn {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

.home_content > * {
  animation: fadeSlideIn 5s ease forwards;
  opacity: 0;
}

.home_content > *:nth-child(1) { animation-delay: 0.2s; }
.home_content > *:nth-child(2) { animation-delay: 0.4s; }
.home_content > *:nth-child(3) { animation-delay: 0.6s; }
.home_content > *:nth-child(4) { animation-delay: 0.8s; }
.home_content > *:nth-child(5) { animation-delay: 1s; }

/*sample close */
.head {
  display: flex;
  align-items: center;
  background-color: #f8f9fa;
  padding: 10px 20px;
  border-bottom: 2px solid #ccc;
}
.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-container img {
  height: 100px;
}

.ad-container {
  overflow: hidden;
  white-space: nowrap;
  margin-left: 20px;
  flex-grow: 1;
  position: relative;
}

.ad-track {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-left 25s linear infinite;
  min-width: 200%; /* ensures room for looping */
}

.ad-item {
  display: inline-block;
  margin-right: 100px;
  font-size: 1rem;
}

.ad-item a {
  text-decoration: none;
  color: #007bff;
  font-weight: bold;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* top header nav*/
.topnav {
  overflow: hidden;
  background-color: #333;
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.active {
  background-color: #aa040400;
  color: white;
}

.topnav .icon {
  display: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 17px;    
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.topnav a:hover, .dropdown:hover .dropbtn {
  background-color: #555;
  color: white;
}

.dropdown-content a:hover {
  background-color: #ddd;
  color: black;
}

.dropdown:hover .dropdown-content {
  display: block;
}
.home{
  overflow: hidden;
  position: relative;
}
.slideshow-container {
  position: relative;
  max-width: 100%;
  margin: auto;
  overflow: hidden;
}

.banner {
  display: none;
  animation: fade 1s ease-in-out;
}

.banner img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes fade {
  from { opacity: 0.4; }
  to { opacity: 1; }
}

.dot-container {
  text-align: center;
  padding: 10px 0;
  background: transparent;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
  cursor: pointer;
}

.dot.active {
  background-color: #717171;
}

.home.content {
  display: flex;
  justify-content: center; /* Center content horizontally */
  align-items: center; /* Center content vertically */
  min-height: 200px; /* Ensure minimum height for the section */
  padding: 20px;
  box-sizing: border-box; /* Include padding in element's total width/height */
}

.home_content {
  text-align: center; /* Center heading and paragraph */
  max-width: 80%; /* Limit text width for better readability */
}

.home_content h2 {
  font-size: 2em; /* Large heading */
  margin-bottom: 1em; /* Space below heading */
  color: #333; /* Dark heading color */
}

.home_content p {
  font-size: 1.1em; /* Slightly larger paragraph text */
  line-height: 1.5; /* Improved line height for readability */
  color: #555; /* Darker paragraph color */
}

.bullets {
  max-width: 600px;
  margin: auto;
  font-family: Arial, sans-serif;
  font-size: 35px;
  line-height: 1.8;
  color: #333;
}
/* Media query for tablets and smaller screens */
@media screen and (max-width: 768px) {
  .home_content h2 {
    font-size: 1.75em; /* Smaller heading on tablets */
  }
  .home_content p {
    font-size: 1em; /* Smaller paragraph text on tablets */
    max-width: 95%;
  }
  .home.content{
    padding: 15px;
  }
}
/* Media query for smartphones */
@media screen and (max-width: 480px) {
  .home_content h2 {
    font-size: 1.5em; /* Smaller heading on smartphones */
  }
  .home_content p {
    font-size: 0.9em; /* Smaller paragraph text on smartphones */
     max-width: 100%;
  }
   .home.content {
    padding: 10px;
  }
}

.product-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 2rem;
}
.product-section.h2{
  align-items: center;
}
.product-section .product-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.product-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1d4ed8;
  margin-bottom: 10px;
}
.product-description {
  color: #4b5563;
  margin-bottom: 20px;
}
.product-button {
  background-color: #facc15;
  color: #1f2937;
  font-weight: bold;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.product-button:hover {
  background-color: #fbbf24;
}
.product-image {
width: 100%;
height: auto;
border-radius: 8px;
margin-bottom: 15px;
object-fit: cover;
}
/*sample open*/
.product-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  padding: 20px;
  width: 100%;
}

.carousel-container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  width: 80%;
  scrollbar-width: none; /* Firefox */
}

.carousel-container::-webkit-scrollbar {
  display: none; /* Chrome */
}

.product-card {
  flex: 0 0 auto;
  width: 300px;
  background-color: #fff;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.product-image {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: contain;
}

.carousel-arrow {
  background-color: #333;
  color: white;
  border: none;
  font-size: 30px;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}
/*sample close*/
/*1*/
/* Services Section */
.services {
  padding: 60px 0;
  background-color: #f9f9f9;
  font-family: Arial, sans-serif;
}

.services .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.services h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #333;
}

/* Carousel Wrapper */
.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Carousel Container */
.carousel-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 20px;
}

/* Individual Service Item */
.service-item {
  min-width: 300px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  flex-shrink: 0;
  text-align: left;
  transition: transform 0.3s;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-item h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #005288;
}

.service-item p {
  font-size: 16px;
  color: #666;
}

/* Carousel Arrows */
.slideshow-container .carousel-arrow {
  background-color: #005288;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  z-index: 1;
  transition: background-color 0.3s;
}

.carousel-arrow:hover {
  background-color: #003f63;
}

.carousel-arrow.left {
  position: absolute;
  left: 10px;
}

.carousel-arrow.right {
  position: absolute;
  right: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .carousel-container {
    gap: 10px;
  }

  .service-item {
    min-width: 250px;
  }

  .carousel-arrow {
    width: 35px;
    height: 35px;
    font-size: 20px;
  }
}

/*1 close*/
/* Media Queries */
@media (min-width: 768px) {
  .product-section {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .product-section {
    grid-template-columns: repeat(2, 1fr);
  }
}
/*service*/
/* SERVICES SECTION */
.services {
  background-color: #f8f9fa;
  padding: 80px 0;
  border-top: 1px solid #dee2e6;
  border-bottom: 1px solid #dee2e6;
  margin: 0px auto;
  max-width: 1200px;
}

.services h2 {
  margin-bottom: 30px;
  text-align: center;
}

/* MAIN CAROUSEL WRAPPER */
.container .carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #f8f9fa; /* match the section background or your desired color */
  padding: 20px 60px; /* adds space for arrows inside */
  box-sizing: border;
}

/* SCROLLABLE CONTAINER */
.carousel-container {
  display:flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  position: relative;
  gap: 20px;
  padding: 20px;
  scroll-snap-type: x mandatory;
  width: 100%;
  transition: transform 0.5s ease;
  scrollbar-width: none; /* Firefox */
}

.carousel-container::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

/* INDIVIDUAL ITEM */
.service-item {
  flex: 0 0 auto;
  width: 280px;
  padding: 30px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  scroll-snap-align: start;
  border: 1px solid #e0e0e0;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.service-item h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #2c3e50;
  font-weight: 600;
}

.service-item p {
  color: #666;
  line-height: 1.7;
}

/* ARROWS */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #333;
  color: #fff;
  border: none;
  font-size: 24px;
  padding: 10px 14px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 100;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.carousel-arrow:hover {
  opacity: 1;
}

.carousel-arrow.left {
  left: 20px;
}

.carousel-arrow.right {
  right: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .carousel-container {
    padding: 20px 10px;
    gap: 15px;
  }

  .service-item {
    width: 80%;
    margin: auto;
  }

  .carousel-arrow {
    font-size: 20px;
    padding: 8px 12px;
  }

  .carousel-arrow.left {
    left: 5px;
  }

  .carousel-arrow.right {
    right: 5px;
  }
}

 /* Vision CSS */
 .vision {
  background-color: #f9f9f9;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-top: 20px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.vision h1 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 15px;
  letter-spacing: 1px;
  border-bottom: 2px solid #007bff;
}

.vision p {
  font-size: 1rem;
  line-height: 1.5;
  color: #555;
  margin: 10px 0;
}

/* Media Query for Responsive Design */
@media screen and (max-width: 768px) {
  .vision {
      padding: 15px;
  }

  .vision h1 {
      font-size: 1.5rem;
  }

  .vision p {
      font-size: 0.9rem;
  }
}

/*footer style*/
footer {
  background-color: #615e5e;
  color: white;
  padding: 0px 0;
  font-family: Arial, sans-serif;
  bottom: 0%;
  position:inherit;
  text-align: center;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0%;
  padding: 10px;
}

.footer-section {
  flex: 1;
  padding: 10px;
  min-width: 200px;
}

.footer-section h2 {
  border-bottom: 2px solid orange;
  padding-bottom: 5px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 8px 0;
}

.footer-section ul li a {
  color: white;
  text-decoration: center;
}

.footer-section a img {
  width: 25px;
  margin: 5px;
}

.footer-bottom {
  text-align: center;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #777;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}

/* Media Query for Mobile Devices */
@media screen and (max-width: 480px) {
  .ban-img {
    font-size: 0.05rem;
    padding: 1rem;
  }
}
/* Styles for devices with a maximum width of 480px (mobile phones) */
@media screen and (max-width: 480px) {
  .banner {
    margin: 0;
    height: 50%;
  }

  .ban-img {
    font-size: 5px;
    padding: 5px;
  }

  .banner-image {
    width: 100%;
    height: 75%;
  }
}

@media only screen and (max-width: 600px) {
  .ban-img {
    font-size: 2px;
    bottom: 15px;
    left: 15px;
    padding: 8px;
  }

  .numbertext {
    font-size: 10px;
    top: 5px;
    left: 5px;
  }

  .dot {
    height: 10px;
    width: 10px;
  }
}
/* Mobile Devices */
@media screen and (max-width: 480px) {
  .logo-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  #img_001 {
    width: 70px;
    height: 70px;
  }

  #img_002 {
    width: 150px;
    height: 70px;
  }
}
/* Responsive for Screens Less Than 768px */
@media screen and (max-width: 768px) {
  .Product_details {
    flex-direction: column;
    padding: 10px;
    overflow:auto;
  }

  .sidebar {
    width: 100%;
    padding: 10px;
    height: 60%;
    order: 1;
    font-size: 14px;
  }

  .content {
    order: 2;
    overflow:visible;
  }

  .nav-item {
    font-size: 14px;
    padding: 12px;
  }

  img {
    width: 100%;
    height: auto;
  }

  .brand-text {
    font-size: 15px;
  }
}
/* Responsive behavior */
@media screen and (max-width: 768px) {
  .logo-container img {
    height: 40px;
  }

  .ad-item {
    font-size: 14px;
    padding: 0 20px;
  }
}

@media screen and (max-width: 480px) {
  .ad-item {
    font-size: 12px;
    padding: 0 10px;
  }

  .logo-container img {
    height: 30px;
  }
}
/* Mobile adjustments */
@media screen and (max-width: 600px) {
  .head {
    flex-direction: column;
    align-items: center;
  }

  .logo-container {
    margin-bottom: 5px;
  }

  .ad-item {
    font-size: 13px;
    padding: 0 12px;
  }

  .logo-container img {
    height: 24px;
  }
}
 /* Footer adjustments */
 .footer-container {
  flex-direction: row;
  padding: 10px 20px;
}

.footer-section h2 {
  font-size: 18px;
}

.footer-section ul li {
  font-size: 14px;
}