.FNC1
{
  background-color:white; 
  margin:auto; 
  margin-top:10px; 
  margin-bottom:10px;
  border: 1px solid #e5e5e5;
  width:60%; 
  padding:20px;
  display:none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.body {
  font-family:red hat display,times; 
  
}
/* image zoom */
.image-zoom {
    overflow: hidden; /* Hide the overflow when the image scales */
    
  }
  
  .image-zoom img {
    transition: transform 0.3s ease; /* Add a smooth transition */
  }
  
  .image-zoom:hover img {
    transform: scale(1.2); /* Zoom in by 20% (adjust as needed) */
  }

  .navbar-nav .nav-link {
    transition: color 0.3s;
  }

  .navbar-nav .nav-link:hover {
    color: white; /* Set the desired hover color */
  }

 
  a {
    text-decoration: none;
    color: inherit;
}
  




  /* small screen */

  @media (max-width: 768px) {
   
    
   #CB1, #CH1, #CH2, #CH3, #CH4, #CH5, #CP1, #CP2, #VID1, #VID2, #HT1, #B1, #DS1, #SER1, #ACC1, #FISC1, #ADT1, #INSV1, #EVL1, #TZ1 {
       display: none;
      }
    
    }

  
/* configurator */

    hr.rounded {
      border-top: 3px solid #bbb;
      border-radius: 5px;
    }


/* slideshow */

/* Slideshow container */
.slideshow-container {
  max-width: 80%;
  position: relative;
  margin: auto;
  display: flex;
    justify-content: center;
    align-items: center;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: red;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}



/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}


/* gallery */
.gallery {
  position: relative;
}

.gallery-img {
  width:90%;
  height: auto;
  display: block;
  margin: 10px auto;
}

.lft,
.rght {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  cursor: pointer;
  
  font-size: 18px;
}

.lft {
  left: 30px;
}

.rght {
  right: 30px;
}
 /* Container max width to keep content aligned in the center */
 #dspr {
  max-width: 1000px; /* Set max width for better readability */
  margin: 0 auto; /* Center the content horizontally */
  padding: 20px; /* Add some padding */
  background-color: #f9f9f9; /* Optional: Add a background color */
}

/* Style for headings */
#dspr h1 {
  font-size: 2.5rem; /* Adjust heading size */
  margin-bottom: 20px;
}

/* Paragraph styles */
#dspr p {
  text-align: left; /* Align text to the left for better readability */
  line-height: 1.6; /* Increase line height */
  font-size: 1.1rem; /* Adjust font size for readability */
  margin-bottom: 20px; /* Space between paragraphs */
}

/* List styles */
#dspr ul {
  list-style-type: disc; /* Change list bullet style */
  padding-left: 20px; /* Add padding to the left */
  margin-bottom: 20px; /* Add space below the list */
}

#dspr ul li {
  margin-bottom: 10px; /* Space between list items */
  font-size: 1.1rem; /* Adjust font size for readability */
  line-height: 1.5; /* Increase line height for list items */
}

/* Additional button or call-to-action */
#dspr button {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 1.2rem;
}


.blog-card-container {
  display: flex;
  justify-content: center; /* Center horizontally */
  flex-wrap: wrap; /* Allow wrapping of cards */
  margin: 10px;
}

.blog-card {
  color: #555; /* Dark grey for the description */
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 100%; /* Make the card take full width */
  max-width: 400px; /* Set a maximum width */
  box-sizing: border-box; /* Include padding and border in the element's total width and height */
  height: 100%; /* Ensure equal height */
  display: flex; /* Use flexbox to manage content */
  flex-direction: column; /* Stack children vertically */
}

@media (max-width: 600px) {
  .blog-card {
      padding: 15px; /* Adjust padding for smaller screens */
      max-width: 100%; /* Full width on mobile */
  }
}

.blog-card:hover {
  transform: scale(1.05);
}

.blog-card h3 {
  color: black; /* Ensure the title is black */
  margin: 20 px;
}

.blog-card p {
  flex-grow: 1; /* Allow the paragraph to grow and fill space */
  margin-bottom: 20px; /* Add margin at the bottom */
}

 


.read-more {
  display: inline-block;
  background-color: #007bff; /* Customize this color */
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
}

.read-more:hover {
  background-color: #0056b3; /* Darker shade for hover effect */
}