/* slidder  section start */

.home-slider-container {
  position: relative;

  width: 100%;
  overflow: hidden;
  background: #f8f9fa;
}
.home-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.home-slide {
  min-width: 100%;
  height: 105vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 2em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.home-slide:nth-child(1) {
  background-image: url("/assets/images/slidder/slidder.jpg");
}

.home-slide:nth-child(2) {
  background-image: url("/assets/images/slidder/20250425_163944.jpg");
}
.home-slide:nth-child(3) {
  background-image: url("/assets/images/slidder/latest\ 1.png");
}
.home-slide:nth-child(4) {
  background-image: url("/assets/images/slidder/latest\ 2.jpg");
}
.home-slide:nth-child(5) {
  background-image: url("/assets/images/slidder/slidder\ 01.jpg");
}
.home-slide:nth-child(6) {
  background-image: url("/assets/images/slidder/final\ new.jpg");
}
.home-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 1.5em;
}
.home-slider-btn.prev {
  left: 10px;
  padding: 14px;
  border-radius: 50%;
  background-color: #003b7a;
}
.home-slider-btn.next {
  right: 10px;
  padding: 14px;
  border-radius: 50%;
  background-color: #003b7a;
}
.home-dots {
  text-align: center;
  margin-top: 10px;
}
.home-dot {
  height: 15px;
  width: 15px;
  background: #bbb;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
  cursor: pointer;
}
.home-dot.active {
  background: #ff6200;
}
@media (max-width: 768px) {
  .home-slide {
    height: 50vh;
  }
  .home-slider-btn {
    padding: 5px;
    font-size: 1em;
  }
}

/* slidder section end */

/* home about section start */
.home-about-section {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #ffffff;
}
.home-container-layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 80%;
  max-width: 1200px;
  margin: 20px auto;
}
.home-content-display {
  flex: 1 1 60%;
  padding: 20px;
}
.home-certificate-presentation {
  flex: 1 1 30%;
  padding: 20px;
  text-align: center;
}
.home-title-heading {
  color: #d61f26;
  font-size: 2.5em;
  margin-bottom: 10px;
}
.home-text-paragraph {
  font-size: 1em;
  line-height: 1.6;
  color: #333;
}
.home-certificate-presentation img {
  max-width: 100%;
  height: auto;
}
.home-read-more-button {
  background-color: #003b7a;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 1em;
}
.home-read-more-button:hover {
  background-color: #218838;
}
@media (max-width: 768px) {
  .home-container-layout {
    flex-direction: column;
    width: 90%;
  }
  .home-content-display,
  .home-certificate-presentation {
    flex: 1 1 100%;
  }
  .home-title-heading {
    font-size: 1.6em;
  }
}
/* 
home about section end  */

/* card section start */
.main-banner-section {
  background-color: #003b7a;
  color: #fff;
  padding: 40px 0;
  text-align: center;
}
.main-banner-main-title {
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  font-size: 2.5rem;
  font-weight: bold;
  text-transform: capitalize;
  letter-spacing: 2px;
}
.main-banner-sub-title {
  font-size: 1rem;
  color: #ccc;
  margin-top: 10px;
}
.main-card-section {
  padding: 50px 0px;
  background-color: #003b7a;
}
.main-custom-card {
  background-size: cover;
  background-position: center;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: #fff;
  text-align: center;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
}
.main-custom-card .main-card-content {
  position: absolute;
  bottom: 60px;
  width: 100%;
  padding: 0 20px;
  transition: none;
  z-index: 2;
}
.main-custom-card .main-card-arrow {
  font-size: 3rem;
  color: #fff;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 1;
  z-index: 1;
}
.main-custom-card:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
  transition: background 0.5s ease;
}
.main-custom-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}
.main-custom-card p {
  font-size: 1rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
.main-writing-card {
  background-color: #ff4d4d;
}
.main-notice-card {
  background-color: #6a0dad;
}
.main-chalk-card {
  background-color: #d4a017;
}
.main-marker-card {
  background-color: #007bff;
}
@media (max-width: 768px) {
  .main-banner-main-title {
    font-size: 1.8rem;
  }
  .main-banner-sub-title {
    font-size: 0.9rem;
  }
  .main-banner-section {
    padding: 15px 0;
  }
  .main-custom-card {
    height: 200px;
    margin-bottom: 20px;
  }
  .main-custom-card .main-card-arrow {
    font-size: 2rem;
  }
  .main-custom-card .main-card-content {
    bottom: 50px;
  }
}

/* card section end */

/* company value section start css */
.company-values-display-section {
  padding: 50px 0;
  background-color: #fff;
  text-align: center;
}
.company-values-info-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.company-values-item-wrapper {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
}
.company-values-icon-circle {
  width: 80px;
  height: 80px;
  background-color: #28a745;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
}
.company-values-icon-circle img {
  width: 40px;
  height: 40px;
}
.company-values-title-heading {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.company-values-description-text {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
}
.company-values-separator-line {
  width: 40px;
  height: 2px;
  background-color: #ccc;
  margin: 20px auto;
}
.company-values-readmore-button {
  background-color: #28a745;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 20px;
}
.company-values-readmore-button:hover {
  background-color: #218838;
}
@media (max-width: 768px) {
  .company-values-info-container {
    flex-direction: column;
    gap: 30px;
  }
  .company-values-item-wrapper {
    min-width: 100%;
  }
  .company-values-title-heading {
    font-size: 1.2rem;
  }
  .company-values-description-text {
    font-size: 0.9rem;
  }
}

/* company value section end */

/* our products section css start */

.products-section {
  font-family: Arial, sans-serif;
  padding: 40px 20px;
  background-color: #fff;
}

.products-section h2 {
  color: #003b7a;
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  position: relative;
  margin-bottom: 60px;
}

.products-section h2::after {
  content: "";
  width: 120px;
  height: 4px;
  background: #d61f26;
  display: block;
  margin: 10px auto 0;
  border-radius: 10px;
}

.product {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.product.even {
  flex-direction: row-reverse;
}

.product-image {
  flex: 0 0 40%;
  max-width: 600px;
}

.product-image img {
  width: 100%;
  height: 360px;
}

.product-info {
  flex: 0 0 50%;
  text-align: justify;
}

.product-title {
  color: #003b7a;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
}

.product-description {
  font-size: 18px;
  color: #000000;
  margin-bottom: 15px;
}

.product-button {
  background-color: #28a745;
  color: #fff;
  padding: 8px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.product-button:hover {
  background-color: #003b7a;
}

@media (max-width: 768px) {
  .product {
    flex-direction: column;
    text-align: center;
  }
  .product.even {
    flex-direction: column;
  }
  .product-info {
    flex: 100%;
    text-align: center;
  }
}
/* our products section end */

/* gallery section start */
.gallery-heading {
  font-family: Arial, sans-serif;
  text-align: center;
  margin: 40px 0 20px;
  font-size: 2.5rem;
  font-weight: bold;
  color: #003b7a;
}
.heading-border {
  width: 150px;
  height: 4px;
  background: linear-gradient(to right, #ff6b6b, #4ecdc4);
  margin: 0 auto 40px;
  border-radius: 2px;
}
.carousel-item img {
  object-fit: contain;
  height: 320px;
  width: 100%;
  border-radius: 10px;
  margin: 0 auto;
}
.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  background: rgba(232, 28, 13, 0.944);
  border-radius: 10px;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 100%, 100%;
}
@media (max-width: 768px) {
  .gallery-heading {
    font-size: 1.8rem;
  }
  .carousel-item img {
    height: 200px;
    width: 100%;
  }
  .carousel-control-prev,
  .carousel-control-next {
    width: 10%;
  }
}

/* gallery section end */

/* our clients section start */
.home-clients-section {
  font-family: Arial, sans-serif;
  background: url("/assets/images/bg\ clients.jpg") no-repeat center
    center/cover;
  padding: 60px 20px;
  text-align: center;

  overflow-x: hidden;
}

.home-clients-section h2 {
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 40px;
  position: relative;
}

.home-clients-section h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: white;
  display: block;
  margin: 10px auto 0;
}

.home-clients-carousel-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: auto;
}

.home-clients-carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.home-clients-carousel-item {
  flex: 0 0 20%;
  padding: 10px;
}

.home-clients-carousel-item img {
  width: 100%;
  height: 150px;
  background: #fff;
  border: 2px solid #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.home-clients-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: orange;
  color: white;
  border: none;
  font-size: 28px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 1;
}

.home-clients-arrow.left {
  left: 10px;
}

.home-clients-arrow.right {
  right: 10px;
}

/* Tablet - 3 logos */
@media (max-width: 991px) {
  .home-clients-carousel-item {
    flex: 0 0 33.33%;
  }
}

/* Mobile - 1 logo */
@media (max-width: 600px) {
  .home-clients-carousel-item {
    flex: 0 0 100%;
  }

  .home-clients-arrow {
    width: 30px;
    height: 30px;
    font-size: 20px;
  }
}
/* our clients section end */

.highlight {
  font-size: 44px;
  color: #003b7a;
  font-weight: bold;
  line-height: 1; /* Or try 1.1 or 44px */
}
