

/* Medium Layout: 1280px. */
@media only screen and (min-width: 992px) and (max-width: 1200px) { 
      /* Make carousel image fully responsive */
  .carousel-inner > .item > img {
    display: block;
    margin: 0 auto;
    /*width: 100%;*/
    height: auto;           /* Default fallback */
   min-height: 500px;      /* Ensures enough height on mobile */
   object-fit: cover;      /* Optional: crop to fit */
}
    .carousel-caption {
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
    width: 100%;
    padding: 10px;
  }
       .thumb-rollover {
    display: none !important;
  }
}
/* Tablet Layout: 768px. */
@media only screen and (min-width: 768px) and (max-width: 991px) { 
 .featured-list #grid .thumb {
    width: 50%;
  }
    /* Make carousel image fully responsive */
  .carousel-inner > .item > img {
    display: block;
    margin: 0 auto;
    /*width: 100%;*/
    height: auto;           /* Default fallback */
   min-height: 500px;      /* Ensures enough height on mobile */
   object-fit: cover;      /* Optional: crop to fit */
}
	  .carousel-caption {
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
    width: 100%;
    padding: 10px;
  }
	.carousel-caption h1 {
	  font-size: 15px;
	  text-transform: uppercase;
	  line-height:auto !important;
	}
      .thumb-rollover {
    display: none !important;
  }
      .footer-logo img{
    max-height: 40px !important;   /* or adjust to your preferred size */
    width: auto;         /* maintains aspect ratio */
  }
}
/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) { 
  .customer_logo {
    max-width: 80%;  /* Scale down */
    height: auto;    /* Maintain aspect ratio */
    display: block;
    margin: 0 auto;  /* Center align */
  }
  .carousel-inner > .item > img {
    display: block;
    margin: 0 auto;
    /*width: 100%;*/
    height: auto;           /* Default fallback */
   min-height: 300px;      /* Ensures enough height on mobile */
   object-fit: cover;      /* Optional: crop to fit */
}
  .navbar-logo {
    max-height: 40px !important;   /* or adjust to your preferred size */
    width: auto;         /* maintains aspect ratio */
  }
  #customers .col-sm-2 {
    width: 50%;        /* 2 logos per row on mobile */
    float: left;
    text-align: center;
    margin-bottom: 20px;
  }
  .carousel-caption {
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
    width: 100%;
    padding: 10px;
  }
  .carousel-caption h1 {
    font-size: 15px;
    text-transform: uppercase;
    line-height: normal;
  }

  .btn.btn-learn {
    font-size: 10px;
    font-weight: 500;
    padding: 5px 7px;
    text-align: center;
    text-transform: uppercase;
  }

    .featured-list #grid .thumb {
    width: 50%;
  }

  /* Optional: Reset alignment inside each thumb */
  .featured-list #grid .thumb img {
    width: 100%;
    height: auto;
  }

  .prod_category {
    font-size: 12px;
    text-align: center;
  }

      .about-image-career {
    max-width: 100px; /* or adjust as needed */
    height: auto;
    display: block;
    margin: 0 auto; /* center horizontally if needed */
  }

    .customer_logo {
    max-width: 100px; /* or adjust as needed */
    height: auto;
    display: block;
    margin: 0 auto; /* center horizontally if needed */
  }

    .thumb-rollover {
    display: none !important;
  }
      .footer-logo img{
    max-height: 40px !important;   /* or adjust to your preferred size */
    width: auto;         /* maintains aspect ratio */
  }
  /* other existing styles... */
}

@media only screen and (min-width: 480px) and (max-width: 767px) { 
  .carousel-caption {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
    width: 100%;
    padding: 10px;
  }
    .thumb-rollover {
    display: none !important;
  }

    .navbar-logo {
    max-height: 40px !important;   /* or adjust to your preferred size */
    width: auto;         /* maintains aspect ratio */
  }
      .footer-logo img{
    max-height: 40px !important;   /* or adjust to your preferred size */
    width: auto;         /* maintains aspect ratio */
  }
    .carousel-inner > .item > img {
    display: block;
    margin: 0 auto;
    /*width: 100%;*/
    height: auto;           /* Default fallback */
   min-height: 300px;      /* Ensures enough height on mobile */
   object-fit: cover;      /* Optional: crop to fit */
}
  /* ...rest remains same */
}


