/* Global Styles */
html,
body {
  width: 100%;
  height: 100%;
  min-height: 100vh; /* Ensures full height for content */
  font-family: 'Roboto', sans-serif;
}

/* Navbar Styles */
.navbar {
  background-color: #333;
}
.logo img {
  max-height: 50px; /* Set the max height for the logo image */
  margin-right: 10px; /* Space between image and text */
  transition: transform 1s ease; /* Smooth transition on hover with a slower time */
}

.navbar .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.navbar .logo-text {
  font-size: 2rem; /* Increase size */
  font-weight: bold; /* Make it bold */
  color: white; /* Text color */
  transition: color 0.3s, transform 0.3s; /* Smooth transitions */
}

.navbar .logo-text:hover {
  color: #f0ad4e; /* Change color on hover */
  transform: scale(1.1); /* Slightly enlarge on hover */
}

/* Button Styles */
.btn-primary {
  background-color: #0056b3;
}

.btn-primary:focus {
  box-shadow: 0 0 5px rgba(0, 86, 179, 0.8);
}

.btn-success {
  transition: background-color 0.3s, transform 0.3s; /* Smooth transitions */
}

.btn-success:hover {
  background-color: #28a745; /* Darker shade on hover */
  transform: scale(1.05); /* Slightly enlarge on hover */
}

/* Card Styles */
.card {
  transition: transform 0.3s; /* Smooth transformation */
}

.card:hover {
  transform: scale(1.05); /* Scale up on hover */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* Shadow effect on hover */
}

.card img {
  transition: transform 0.2s; /* Smooth transition for images */
}

.card:hover img {
  transform: scale(1.1); /* Scale up on hover */
}

/* Fade-In Animation */
.fadeIn {
  animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* Background and Hero Section */
.bg-hero {
  position: relative;
  width: 100%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?ixlib=rb-1.2.1&ixid=MXwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHw%3D&auto=format&fit=crop&w=2550&q=80") center center no-repeat;
  background-size: cover;
  z-index: 1;
}

.bg-hero:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to bottom right, #000, #000);
  opacity: 0.6;
  z-index: -1;
}

/* Social Icons Styles */
.social-icons {
  margin-top: 20px;
}

.social-icons a {
  margin: 0 15px; /* Spacing between icons */
  font-size: 2rem; /* Icon size */
  color: #555; /* Default icon color */
  transition: color 0.3s, transform 0.3s; /* Smooth transitions */
}

.social-icons a:hover {
  color: #007bff; /* Change color on hover */
  transform: translateY(-5px); /* Lift effect on hover */
}

/* Content Styles */
h1 {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); /* Text shadow for h1 */
}

p.lead {
  font-size: 1.2rem; /* Lead paragraph size */
  line-height: 1.5; /* Line height for readability */
}

hr {
  border-top: 2px solid #007bff; /* Custom color for horizontal rule */
}

hr.my-4 {
  border-top: 2px solid #007bff; /* Custom color for horizontal rule */
  margin: 20px 0; /* Spacing around the line */
}

/* List Styles */
ul.list-unstyled {
  list-style: none; /* Remove bullet points */
  padding: 0; /* Remove padding */
}

ul.list-unstyled li {
  font-size: 1.1rem; /* Font size for list items */
  color: #555; /* Color for list items */
  margin: 10px 0; /* Spacing between items */
}

ul.list-unstyled li i {
  color: #28a745; /* Green color for icons */
  margin-right: 10px; /* Spacing between icon and text */
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
  .mobile-block {
    width: 100%;
    display: block;
  }

  .navbar {
    font-size: 1rem; /* Reduce font size on small screens */
  }
}

/* Footer Styles */
footer {
  background-color: #333;
  color: white;
  padding: 20px 0;
  text-align: center;
}

footer a {
  color: white;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Specific Page Styles */
.bg-light {
  background-color: #f8f9fa !important; /* Light background */
}

h1.display-6 {
  font-size: 2.5rem; /* Larger font size */
  margin-bottom: 20px; /* Spacing below */
  color: #333; /* Darker color for contrast */
}

h2 {
  font-size: 2rem; /* Size for secondary headings */
  color: #007bff; /* Primary color for emphasis */
}

/* Badge Styles */
.custom-badge {
  background-color: #007bff; /* Primary color */
  color: white; /* Text color */
  padding: 10px 15px; /* Padding for a better look */
  border-radius: 20px; /* Rounded edges */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Subtle shadow */
  transition: transform 0.3s, box-shadow 0.3s; /* Animation for hover effect */
  font-size: 0.9rem; /* Font size */
  margin: 0 5px; /* Spacing between badges */
}

.custom-badge:hover {
  transform: scale(1.05); /* Slightly enlarge on hover */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Stronger shadow on hover */
}
