body {
  background-image: url('images/background.png'); /* Replace with your image path */
  background-size: cover; /* Ensures the image covers the entire background */
  background-repeat: no-repeat; /* Prevents the image from repeating */
  background-attachment: fixed; /* Keeps the background fixed during scrolling */
  background-position: center; /* Centers the image */
}
  
header, footer {
    background-color: #4CAF50;
    color: white;
    padding: 1rem;
    text-align: center;
}
  
nav {
    background-color: #333;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
  
nav a {
    color: white;
    padding: 14px 16px;
    text-decoration: none;
    display: block;
    text-align: center;
}
  
nav a:hover {
    background-color: #ddd;
    color: black;
}
  
main {
    padding: 2rem;
    max-width: 1000px;
    margin: auto;
}
  
section {
    margin-bottom: 2rem;
}
  
h1, h2, h3 {
    color: #333;
}
  
ul {
    padding-left: 1.5rem;
}
  
form {
    margin-top: 2rem;
    background-color: #fff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
  
input, textarea, select, button {
    display: block;
    margin-bottom: 1rem;
    width: 100%;
    padding: 0.5rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}
  
button {
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
  
button:hover {
    background-color: #45a049;
}
  
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}
  
table, th, td {
    border: 1px solid #ccc;
}
  
th, td {
    padding: 0.75rem;
    text-align: left;
}
  
  
@media (max-width: 768px) {
    nav {
      flex-direction: column;
    }
  
    main {
      padding: 1rem;
    }
  
    form, table {
      font-size: 0.95rem;
    }
}
  
@media (max-width: 480px) {
    header h1, nav a {
      font-size: 1.2rem;
    }
  
    form {
      padding: 0.75rem;
    }
  
    input, textarea, select, button {
      font-size: 0.95rem;
    }
}

.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}
  
.card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 1rem;
    width: 200px;
    text-align: center;
}
  
.card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}
  
.video-block {
    margin-top: 3rem;
    text-align: center;
    width: 100%;
}
.comparison-table {
    text-align: center;
    margin-bottom: 2rem;
    background-color: rgba(249, 249, 249, 0.5); /* Half transparent background color */
    border-radius: 8px; /* Rounded corners */
    padding: 1rem; /* Add padding around the table */
}

.comparison-table table {
    margin: auto;
    width: 90%;
    border: 2px solid #4CAF50; /* Change border color */
    color: #333; /* Change text color */
    font-family: 'Arial', sans-serif; /* Change font */
    font-size: 1rem; /* Adjust font size */
    font-weight: normal; /* Adjust font weight */
}

.comparison-table th {
    background-color: #4CAF50; /* Header background color */
    color: white; /* Header text color */
    padding: 0.75rem;
    font-weight: bold;
}

.comparison-table td {
    padding: 0.75rem;
    border: 1px solid #ccc; /* Cell border color */
    color: #555; /* Cell text color */
}

.dino-card {
    background-color: #fff;
    padding: 1rem;
    margin-bottom: 2rem;
    border: 2px solid #ccc;
    border-radius: 10px;
}
  
.dino-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
}
  
.dino-content .text {
    flex: 1 1 60%;
}
  
.dino-content .images {
    flex: 1 1 35%;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}
  
.dino-content .images img {
    width: 100px;
    height: auto;
    border-radius: 8px;
}

/* Custom styles for smaller rectangular cards */
.dino-card .row {
  align-items: center; /* Vertically align content and images */
  margin-bottom: 1rem; /* Reduce spacing between cards */
}

.dino-card .col-md-6.content {
  padding: 0.5rem; /* Reduce padding for the content */
}

.dino-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  max-height: 150px; /* Limit the height of the images */
}

.dino-card h3 {
  font-size: 1.25rem; /* Reduce the size of the section titles */
  margin-bottom: 0.5rem;
}

.dino-card p {
  font-size: 0.9rem; /* Reduce the font size of the text */
  margin-bottom: 0.5rem;
}

/* Move carousel arrows closer to the cards */
.cards-carousel .carousel-control-prev,
.cards-carousel .carousel-control-next {
  width: auto; /* Reduce the width of the control area */
}

.cards-carousel .carousel-control-prev {
  left: 5%; /* Move the left arrow closer to the cards */
}

.cards-carousel .carousel-control-next {
  right: 5%; /* Move the right arrow closer to the cards */
}

.cards-carousel .carousel-control-prev-icon,
.cards-carousel .carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.7); /* Add a semi-transparent background for better visibility */
  border-radius: 50%; /* Make the arrows circular */
  padding: 10px; /* Add padding for better visibility */
}

.cards-carousel .carousel-control-prev-icon:hover,
.cards-carousel .carousel-control-next-icon:hover {
  background-color: rgba(0, 0, 0, 1); /* Make the background fully opaque on hover */
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 10px; /* Add spacing between thumbnails */
  margin-top: 1rem; /* Add spacing above thumbnails */
}

.carousel-indicators a img {
  cursor: pointer; /* Change cursor to pointer for better UX */
  border: 2px solid transparent; /* Add a transparent border */
  transition: border-color 0.3s ease; /* Smooth transition for hover effect */
}

.carousel-indicators a img:hover {
  border-color: #4CAF50; /* Highlight border on hover */
}

/* Move carousel indicators (thumbnails) down */
.cards-carousel .carousel-indicators {
  position: static; /* Remove absolute positioning */
  margin-top: 1rem; /* Add spacing between the cards and thumbnails */
  display: flex;
  justify-content: center;
  gap: 10px; /* Add spacing between thumbnails */
}

.cards-carousel .carousel-indicators img {
  cursor: pointer; /* Change cursor to pointer for better UX */
  border: 2px solid transparent; /* Add a transparent border */
  transition: border-color 0.3s ease; /* Smooth transition for hover effect */
}

.cards-carousel .carousel-indicators img:hover {
  border-color: #4CAF50; /* Highlight border on hover */
}

/* Default style for external links */
a[target="_blank"] {
  text-decoration: underline; /* Add underline to external links */
  color: #007bff; /* Default blue color for external links */
  transition: color 0.3s ease; /* Smooth transition for color changes */
}

/* Hover effect for external links */
a[target="_blank"]:hover {
  color: #0056b3; /* Darker blue on hover */
  text-decoration: underline; /* Keep underline on hover */
}

/* Reset visited style for external links */
a[target="_blank"]:visited {
  color: #007bff; /* Same as default link color */
  text-decoration: underline; /* Keep underline for visited links */
}

/* Visited style for external links */
a[target="_blank"]:visited {
  color: #d7e20f; /* High-contrast green for visited external links */
  text-decoration: underline; /* Keep underline for visited links */
}


